1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend
2022-03-01 09:35:46 +01:00
..
.github/workflows chore(deps): update actions/checkout action to v2 (#589) 2022-02-28 09:28:01 +01:00
cypress refactor: fix flaky Cypress tests (#746) 2022-02-25 10:21:28 +01:00
public
src Merge branch 'main' into feat/search-toggles-project 2022-03-01 09:35:46 +01:00
.editorconfig
.env refactor: port login auth to TS/SWR (#680) 2022-02-10 17:04:10 +01:00
.gitignore
.nvmrc
.prettierignore
.prettierrc refactor: format files (#719) 2022-02-18 09:51:10 +01:00
CHANGELOG.md
craco.config.js
cypress.json refactor: fix flaky Cypress tests (#746) 2022-02-25 10:21:28 +01:00
index.js
LICENSE
package.json refactor: use the MUI OutsideClickHandler (#756) 2022-03-01 08:21:04 +01:00
README.md
renovate.json
tsconfig.json feat: add baseUrl to tsconfig and update imports 2022-02-20 21:08:02 +01:00
typings.json
vercel.json
yarn.lock refactor: use the MUI OutsideClickHandler (#756) 2022-03-01 08:21:04 +01:00

Developing

Why did you render

This application is set up with WDYR and craco in order to find, debug and remove uneccesary re-renders. This configuration can be found in /src/wdyr.ts.

In order to turn it on, change the configuration accordingly:

if (process.env.NODE_ENV === 'development') {
    const whyDidYouRender = require('@welldone-software/why-did-you-render');
    whyDidYouRender(React, {
        trackAllPureComponents: true,
    });
}

Now you should be able to review rendering information in the console. If you do utilise this functionality, please remember to set the configuration back to spare other developers the noise in the console.

Run with a local instance of the unleash-api:

You need to first start the unleash-api on port 4242 before you can start working on unleash-frontend. Start webpack-dev-server with hot-reload:

cd ~/unleash-frontend
yarn install
yarn run start

Run with a heroku-hosted unleash-api:

cd ~/unleash-frontend
yarn install
yarn run start:heroku

UI Framework

We are using material-ui.

Happy coding!