1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend
2022-02-25 14:41:54 +01:00
..
.github/workflows refactor: fix flaky Cypress tests (#746) 2022-02-25 10:21:28 +01:00
cypress refactor: fix flaky Cypress tests (#746) 2022-02-25 10:21:28 +01:00
public
src style: fix unformatted file 2022-02-25 14:41:54 +01:00
.editorconfig
.env refactor: port login auth to TS/SWR (#680) 2022-02-10 17:04:10 +01:00
.gitignore Ignore .env.local 2021-10-11 14:50:48 +02:00
.nvmrc
.prettierignore
.prettierrc
CHANGELOG.md Chore/update frontend 4.2.13 (#503) 2021-11-12 13:24:41 +01:00
craco.config.js
cypress.json refactor: fix flaky Cypress tests (#746) 2022-02-25 10:21:28 +01:00
index.js
LICENSE
package.json chore(deps): pin dependency @testing-library/dom to 8.11.3 2022-02-25 11:24:09 +00:00
README.md
renovate.json
tsconfig.json
typings.json
vercel.json
yarn.lock chore(deps): bump url-parse from 1.5.3 to 1.5.10 (#735) 2022-02-25 13:33:59 +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!