React based frontend for the elmaonline site. The backend is found in the elmaonline-site repo.
-
test.elma.online New features will be tested here first, this site uses a secondary copy of the database, so you can mess up as much as you want here, and nothing you do here will be saved on the real site.
-
elma.online This site will be using the live database.
-
storybook.elma.online UI library of the components that exists in the code
- dev
- The primary branch to use while developing. Make all changes to this branch, preferably as pull requests. Test server uses this branch.
- master
- This branch reflects the version currently deployed on elma.online, only people actually deploying will be pulling code to this.
- Install if needed nodejs and yarn
- Clone this repo
- Run
yarn
in terminal to install depedencies - Run
yarn start
in terminal to start development server
-
You can connect to the test server backend or run elmaonline-site locally, use config.js to change this.
-
Run
yarn build
in terminal to make a production build. -
Run
yarn storybook
in terminal to run the storybook site
- React 17 using vitejs
- Styling with styled-components and Material-UI
- Navigation using @reach-router
- Simplified redux using easy-peasy
- API calls using apisauce built on axios
- Forms powered by formal-web
- Basic helper tools such as lodash, date-fns, nanoid
- Page and component generation from templates using plop (
yarn g
)
If you don't know react it's worth checking out the official tutorial. Rest of the stack should be pretty easy to learn. If you are new to any of them, check out these quick introductions to the most important ones: easy-peasy, styled-components, reach-router and formal-web.
.
βββ / # Various configuration files
βββ /public # The .html file and favicons
βββ /src # This is where your code will be
βββ /components # Smaller reusable components
βββ /constants # Constants used in components
βββ /features # Bigger reusable components with stores
βββ /images # Images files
βββ /pages # Top level pages
βββ /stories # Style guide for components
βββ /utils # Pure js reusable functions
βββ /api.js # API endpoints
βββ /app.js # Where code is wrapped with router/store etc.
βββ /config.js # Environment variables
βββ /easypeasy.js # Store, update when adding new store.js files
βββ /globalStyle.js # Global css
βββ /index.js # Entry point
βββ /theme.js # Theme objects
βββ /router.js # Add new pages here
βββ /templates # Templates for generating new files
Use the generator to add new pages, features and components
Run yarn g
in terminal and follow the prompts
- Most styling should happen in components which should be mostly style and as little state as possible, no easypeasy, at most some react useState. For padding, margin and colors make sure you use variables from the theme and not static values.
- Features will be built up of components to create the UI and maintain some state in easy-peasy and/or call the api. Optimally you should be able to use layout components like Grid, Row, Column, Paper, Header etc. to built up basic layouts and not rely on creating new css when making a feature.
- Pages will be built mostly of features and some layout components to comprise a full screen.
Use yarn commit
or follow guidelines when committing code to maintain consistent commit messages.
- Run
yarn g page
in terminal - Type name of page in CamelCase
- Add import in src/router.js
- Add the component inside
<Router>
in src/router.js with a path param - Add store import at the top of src/easypeasy.js
- Add store inside
export default {
in src/easypeasy.js
- Run
yarn g feature
in terminal - Type name of component in CamelCase
- Import in relevant pages
- Add store import at the top of src/easypeasy.js
- Add store inside
export default {
in src/easypeasy.js
- Run
yarn g component
in terminal - Type name of component in CamelCase
- Import in relevant screens/features
The project is configured to use eslint and prettier to ensure good coding practices. Make sure you install relevant plugins for your editor.
Visual Studio Code:
The config is set up to use a test database. Bear in mind the following:
- Test database is a copy of live from end june 2020
- time, battle and allfinished tables only have a subset of live (last year or two) to keep size down
- Passwords, emails and private comments have been stripped
Feel free to create issues/discussions here on github in order to discuss things related to the project. Unless it's specifically related to only frontend, issues and discussions should be made in the elmaonline-site repo. You can also join the elma discord #developers channel to chat.
When working on a feature make sure you assign yourself to the related issue so we avoid multiple people doing the same work.
For major chances on big ticket features such as replays, battles, profile, levels (and code architecture) make sure you join the discussion first, there most likely is one already, and reach some kind of consensus. Of course some experimentation to aid the discussion is fine.