├── README.md ├── finished ├── .babelrc ├── .gitignore ├── app │ ├── components │ │ ├── CourseControl.jsx │ │ ├── EditableElement.jsx │ │ ├── Game.jsx │ │ ├── HelmControl.jsx │ │ ├── NavigationDashboard.jsx │ │ ├── ShipInfo.jsx │ │ ├── StarChart.jsx │ │ ├── Stars.jsx │ │ ├── StarshipRenderer.jsx │ │ └── WarpDriveControls.jsx │ ├── data │ │ ├── Ship.js │ │ └── StarData.js │ ├── fonts │ │ └── roddenberry │ │ │ ├── Font License.txt │ │ │ ├── Roddenberry Bold Italic.otf │ │ │ ├── Roddenberry Bold.otf │ │ │ ├── Roddenberry Italic.otf │ │ │ └── Roddenberry.ttf │ ├── images │ │ └── starship.png │ ├── index.jsx │ ├── main.css │ ├── mixins │ │ └── SetIntervalMixin.jsx │ └── utilities │ │ ├── starshipImage.js │ │ └── starshipNavigation.js ├── package.json └── webpack.config.js └── unfinished ├── .babelrc ├── .gitignore ├── app ├── data │ └── StarData.js ├── fonts │ └── roddenberry │ │ ├── Font License.txt │ │ ├── Roddenberry Bold Italic.otf │ │ ├── Roddenberry Bold.otf │ │ ├── Roddenberry Italic.otf │ │ └── Roddenberry.ttf ├── images │ └── starship.png ├── index.jsx ├── main.css └── utilities │ ├── starshipImage.js │ └── starshipNavigation.js ├── package.json └── webpack.config.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/README.md -------------------------------------------------------------------------------- /finished/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "stage": 1 3 | } 4 | -------------------------------------------------------------------------------- /finished/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_STORE 4 | 5 | -------------------------------------------------------------------------------- /finished/app/components/CourseControl.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/components/CourseControl.jsx -------------------------------------------------------------------------------- /finished/app/components/EditableElement.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/components/EditableElement.jsx -------------------------------------------------------------------------------- /finished/app/components/Game.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/components/Game.jsx -------------------------------------------------------------------------------- /finished/app/components/HelmControl.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/components/HelmControl.jsx -------------------------------------------------------------------------------- /finished/app/components/NavigationDashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/components/NavigationDashboard.jsx -------------------------------------------------------------------------------- /finished/app/components/ShipInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/components/ShipInfo.jsx -------------------------------------------------------------------------------- /finished/app/components/StarChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/components/StarChart.jsx -------------------------------------------------------------------------------- /finished/app/components/Stars.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/components/Stars.jsx -------------------------------------------------------------------------------- /finished/app/components/StarshipRenderer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/components/StarshipRenderer.jsx -------------------------------------------------------------------------------- /finished/app/components/WarpDriveControls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/components/WarpDriveControls.jsx -------------------------------------------------------------------------------- /finished/app/data/Ship.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/data/Ship.js -------------------------------------------------------------------------------- /finished/app/data/StarData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/data/StarData.js -------------------------------------------------------------------------------- /finished/app/fonts/roddenberry/Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/fonts/roddenberry/Font License.txt -------------------------------------------------------------------------------- /finished/app/fonts/roddenberry/Roddenberry Bold Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/fonts/roddenberry/Roddenberry Bold Italic.otf -------------------------------------------------------------------------------- /finished/app/fonts/roddenberry/Roddenberry Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/fonts/roddenberry/Roddenberry Bold.otf -------------------------------------------------------------------------------- /finished/app/fonts/roddenberry/Roddenberry Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/fonts/roddenberry/Roddenberry Italic.otf -------------------------------------------------------------------------------- /finished/app/fonts/roddenberry/Roddenberry.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/fonts/roddenberry/Roddenberry.ttf -------------------------------------------------------------------------------- /finished/app/images/starship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/images/starship.png -------------------------------------------------------------------------------- /finished/app/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/index.jsx -------------------------------------------------------------------------------- /finished/app/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/main.css -------------------------------------------------------------------------------- /finished/app/mixins/SetIntervalMixin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/mixins/SetIntervalMixin.jsx -------------------------------------------------------------------------------- /finished/app/utilities/starshipImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/utilities/starshipImage.js -------------------------------------------------------------------------------- /finished/app/utilities/starshipNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/app/utilities/starshipNavigation.js -------------------------------------------------------------------------------- /finished/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/package.json -------------------------------------------------------------------------------- /finished/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/finished/webpack.config.js -------------------------------------------------------------------------------- /unfinished/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "stage": 1 3 | } 4 | -------------------------------------------------------------------------------- /unfinished/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_STORE 4 | 5 | -------------------------------------------------------------------------------- /unfinished/app/data/StarData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/unfinished/app/data/StarData.js -------------------------------------------------------------------------------- /unfinished/app/fonts/roddenberry/Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/unfinished/app/fonts/roddenberry/Font License.txt -------------------------------------------------------------------------------- /unfinished/app/fonts/roddenberry/Roddenberry Bold Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/unfinished/app/fonts/roddenberry/Roddenberry Bold Italic.otf -------------------------------------------------------------------------------- /unfinished/app/fonts/roddenberry/Roddenberry Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/unfinished/app/fonts/roddenberry/Roddenberry Bold.otf -------------------------------------------------------------------------------- /unfinished/app/fonts/roddenberry/Roddenberry Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/unfinished/app/fonts/roddenberry/Roddenberry Italic.otf -------------------------------------------------------------------------------- /unfinished/app/fonts/roddenberry/Roddenberry.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/unfinished/app/fonts/roddenberry/Roddenberry.ttf -------------------------------------------------------------------------------- /unfinished/app/images/starship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/unfinished/app/images/starship.png -------------------------------------------------------------------------------- /unfinished/app/index.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unfinished/app/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/unfinished/app/main.css -------------------------------------------------------------------------------- /unfinished/app/utilities/starshipImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/unfinished/app/utilities/starshipImage.js -------------------------------------------------------------------------------- /unfinished/app/utilities/starshipNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/unfinished/app/utilities/starshipNavigation.js -------------------------------------------------------------------------------- /unfinished/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/unfinished/package.json -------------------------------------------------------------------------------- /unfinished/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddyrangel/react-under-the-hood-first-edition/HEAD/unfinished/webpack.config.js --------------------------------------------------------------------------------