├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .tool-versions ├── .travis.yml ├── LICENSE ├── README.md ├── core ├── director.js ├── flight.js └── velocity-composer.js ├── dist ├── .gitkeep ├── foobanzle.js ├── foobanzle.min.js ├── react-flight.js └── react-flight.min.js ├── dom ├── controls.js ├── index.js └── ui.js ├── examples ├── compos-redux │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── actions │ │ │ ├── action-types.js │ │ │ └── people-actions.js │ │ ├── components │ │ │ ├── PeopleContainer.js │ │ │ ├── PeopleList.js │ │ │ ├── Person.js │ │ │ └── PersonInput.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reducers │ │ │ ├── index.js │ │ │ └── people-reducer.js │ │ ├── registerServiceWorker.js │ │ └── store │ │ │ └── configure-store.js │ └── yarn.lock └── compos │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json │ ├── src │ ├── App.css │ ├── App.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ └── registerServiceWorker.js │ └── yarn.lock ├── media └── flight.png ├── package.json ├── src ├── __tests__ │ ├── __snapshots__ │ │ └── index.spec.js.snap │ └── index.spec.js ├── core │ ├── director.js │ ├── flight.js │ └── velocity-composer.js └── dom │ ├── controls.js │ ├── index.js │ └── ui.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/.npmignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 7.7.2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/README.md -------------------------------------------------------------------------------- /core/director.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/core/director.js -------------------------------------------------------------------------------- /core/flight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/core/flight.js -------------------------------------------------------------------------------- /core/velocity-composer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/core/velocity-composer.js -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/foobanzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/dist/foobanzle.js -------------------------------------------------------------------------------- /dist/foobanzle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/dist/foobanzle.min.js -------------------------------------------------------------------------------- /dist/react-flight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/dist/react-flight.js -------------------------------------------------------------------------------- /dist/react-flight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/dist/react-flight.min.js -------------------------------------------------------------------------------- /dom/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/dom/controls.js -------------------------------------------------------------------------------- /dom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/dom/index.js -------------------------------------------------------------------------------- /dom/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/dom/ui.js -------------------------------------------------------------------------------- /examples/compos-redux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/.gitignore -------------------------------------------------------------------------------- /examples/compos-redux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/README.md -------------------------------------------------------------------------------- /examples/compos-redux/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/package.json -------------------------------------------------------------------------------- /examples/compos-redux/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/public/favicon.ico -------------------------------------------------------------------------------- /examples/compos-redux/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/public/index.html -------------------------------------------------------------------------------- /examples/compos-redux/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/public/manifest.json -------------------------------------------------------------------------------- /examples/compos-redux/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/App.css -------------------------------------------------------------------------------- /examples/compos-redux/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/App.js -------------------------------------------------------------------------------- /examples/compos-redux/src/actions/action-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/actions/action-types.js -------------------------------------------------------------------------------- /examples/compos-redux/src/actions/people-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/actions/people-actions.js -------------------------------------------------------------------------------- /examples/compos-redux/src/components/PeopleContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/components/PeopleContainer.js -------------------------------------------------------------------------------- /examples/compos-redux/src/components/PeopleList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/components/PeopleList.js -------------------------------------------------------------------------------- /examples/compos-redux/src/components/Person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/components/Person.js -------------------------------------------------------------------------------- /examples/compos-redux/src/components/PersonInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/components/PersonInput.js -------------------------------------------------------------------------------- /examples/compos-redux/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/index.css -------------------------------------------------------------------------------- /examples/compos-redux/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/index.js -------------------------------------------------------------------------------- /examples/compos-redux/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/logo.svg -------------------------------------------------------------------------------- /examples/compos-redux/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/reducers/index.js -------------------------------------------------------------------------------- /examples/compos-redux/src/reducers/people-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/reducers/people-reducer.js -------------------------------------------------------------------------------- /examples/compos-redux/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/registerServiceWorker.js -------------------------------------------------------------------------------- /examples/compos-redux/src/store/configure-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/src/store/configure-store.js -------------------------------------------------------------------------------- /examples/compos-redux/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos-redux/yarn.lock -------------------------------------------------------------------------------- /examples/compos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos/.gitignore -------------------------------------------------------------------------------- /examples/compos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos/README.md -------------------------------------------------------------------------------- /examples/compos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos/package.json -------------------------------------------------------------------------------- /examples/compos/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos/public/favicon.ico -------------------------------------------------------------------------------- /examples/compos/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos/public/index.html -------------------------------------------------------------------------------- /examples/compos/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos/public/manifest.json -------------------------------------------------------------------------------- /examples/compos/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos/src/App.css -------------------------------------------------------------------------------- /examples/compos/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos/src/App.js -------------------------------------------------------------------------------- /examples/compos/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos/src/index.css -------------------------------------------------------------------------------- /examples/compos/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos/src/index.js -------------------------------------------------------------------------------- /examples/compos/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos/src/logo.svg -------------------------------------------------------------------------------- /examples/compos/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos/src/registerServiceWorker.js -------------------------------------------------------------------------------- /examples/compos/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/examples/compos/yarn.lock -------------------------------------------------------------------------------- /media/flight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/media/flight.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/src/__tests__/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /src/__tests__/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/src/__tests__/index.spec.js -------------------------------------------------------------------------------- /src/core/director.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/src/core/director.js -------------------------------------------------------------------------------- /src/core/flight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/src/core/flight.js -------------------------------------------------------------------------------- /src/core/velocity-composer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/src/core/velocity-composer.js -------------------------------------------------------------------------------- /src/dom/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/src/dom/controls.js -------------------------------------------------------------------------------- /src/dom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/src/dom/index.js -------------------------------------------------------------------------------- /src/dom/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/src/dom/ui.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/react-flight/HEAD/yarn.lock --------------------------------------------------------------------------------