├── .babelrc ├── .eslintrc ├── .gitignore ├── Challenge_Editor_Mockup.png ├── Layout.png ├── README.md ├── app.js ├── bin └── www ├── config.js ├── index.html ├── package.json ├── public ├── editorLayout.json └── headerConfig.json ├── src ├── App.js ├── Components │ ├── Editor.js │ ├── FileExplorer.js │ ├── GrandCentralStation.js │ ├── Menu.js │ └── SelectChallenge.js ├── actions │ └── editorActions.js ├── index.js ├── reducers │ └── reducer.js ├── store │ └── store.js └── style.css ├── tests ├── .eslintrc └── reducers.spec.js ├── views ├── error.jade ├── index.jade └── layout.jade └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "react"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_Store 4 | dist 5 | .idea 6 | .env -------------------------------------------------------------------------------- /Challenge_Editor_Mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/Challenge_Editor_Mockup.png -------------------------------------------------------------------------------- /Layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/Layout.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/app.js -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/bin/www -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/package.json -------------------------------------------------------------------------------- /public/editorLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/public/editorLayout.json -------------------------------------------------------------------------------- /public/headerConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/public/headerConfig.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Components/Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/src/Components/Editor.js -------------------------------------------------------------------------------- /src/Components/FileExplorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/src/Components/FileExplorer.js -------------------------------------------------------------------------------- /src/Components/GrandCentralStation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/src/Components/GrandCentralStation.js -------------------------------------------------------------------------------- /src/Components/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/src/Components/Menu.js -------------------------------------------------------------------------------- /src/Components/SelectChallenge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/src/Components/SelectChallenge.js -------------------------------------------------------------------------------- /src/actions/editorActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/src/actions/editorActions.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/src/reducers/reducer.js -------------------------------------------------------------------------------- /src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/src/store/store.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/src/style.css -------------------------------------------------------------------------------- /tests/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/tests/.eslintrc -------------------------------------------------------------------------------- /tests/reducers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/tests/reducers.spec.js -------------------------------------------------------------------------------- /views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/views/error.jade -------------------------------------------------------------------------------- /views/index.jade: -------------------------------------------------------------------------------- 1 | extends layout -------------------------------------------------------------------------------- /views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/views/layout.jade -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/COM1000/HEAD/webpack.config.js --------------------------------------------------------------------------------