joyent-portal/frontend
Sérgio Ramos af4d26b5a5 update dependencies 2016-12-22 11:36:41 +00:00
..
etc containerpilot: updating names of services 2016-11-01 16:17:49 +00:00
locales fix locale json 2016-12-20 11:30:36 +00:00
scripts lint frontend 2016-10-24 14:11:50 +01:00
server backend: Moving backend into frontend 2016-10-24 16:31:05 +01:00
src Fixing missing avatar and adding toggled style to dropdown arrow in profile header 2016-12-21 14:49:41 +00:00
static upgrade frontend to styled-components 2016-12-12 10:56:48 +00:00
test link individual Project (fixes #120) 2016-12-20 19:06:02 +00:00
webpack local node_modules as first resolve path 2016-12-19 12:24:00 +00:00
.babelrc update dependencies 2016-12-19 12:23:27 +00:00
.eslintignore lint frontend 2016-10-24 14:11:50 +01:00
.eslintrc wip rm css 2016-12-12 10:28:47 +00:00
.tern-project bootstrap frontend 2016-10-20 10:58:19 +01:00
Dockerfile backend: Moving backend into frontend 2016-10-24 16:31:05 +01:00
Makefile add example tests for each type 2016-12-20 11:29:54 +00:00
README.md docs: adding container badge for frontend 2016-11-04 12:19:15 +00:00
package.json update dependencies 2016-12-22 11:36:41 +00:00
yarn.lock update dependencies 2016-12-22 11:36:41 +00:00

README.md

Docker Repository on Quay

Joyent Dashboard Frontend

start

npm run start

test

npm run test

structure

.
├── src
│   ├── containers
│   ├── index.js
│   ├── root.js
│   └── state
│       ├── actions.js
│       ├── reducers
│       ├── store.js
│       └── thunks
├── static
├── locales
├── scripts
├── test
├── webpack
├── .babelrc
└── .eslintrc
  • src/index.js: Renders src/root.js and bootstraps hot module reloading.
  • src/root.js: The main component that wraps react-redux, react-router and react-hot-loader.
  • src/state/store.js: Exports a function that creates a redux store instance with all the middlewares and reducers configured.
  • src/state/actions.js: Not only exports all the actions available (declared in the file), but also goes through all the thunks and exports them.
  • src/state/thunks: Directory to place thunks so that actions or reducers don't get too confusing.
  • src/state/reducers: Each file here represents a reducer scope. So, state.app will be controlled in reducers/app.js.
  • locales: Translation definitions for each locale supported.
  • scripts: Utility scripts (e.g. building localizations).
  • test: Self explanatory.
  • webpack: Webpack configuration for multiple enviroments. Development configuration includes a dev-server and hot module replacement support.
  • .babelrc: This babel configuration outputs ES2015 code, so it will produce code only for modern browsers. Also, async/await is supported.
  • .eslintrc:ESLint configuration. It's basically semistandard with space-before-function-paren probited;