HedgeDoc - Ideas grow better together
Find a file
Erik Michelson eab189c3c6
Refactor login components and adjust login API routes (#1678)
* Refactor login components and adjust API routes

Signed-off-by: Erik Michelson <github@erik.michelson.eu>

* Adjust API /me response and redux state

Signed-off-by: Erik Michelson <github@erik.michelson.eu>

* Fix moved function

Signed-off-by: Erik Michelson <github@erik.michelson.eu>

* Update cypress tests

Signed-off-by: Erik Michelson <github@erik.michelson.eu>

* Adjust mock response

Signed-off-by: Erik Michelson <github@erik.michelson.eu>

* Integrate new common fields and hook into profile page

Signed-off-by: Erik Michelson <github@erik.michelson.eu>

* Remove openid

Signed-off-by: Erik Michelson <github@erik.michelson.eu>

* Fix config mock

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>

Co-authored-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2021-12-11 01:32:38 +01:00
.github Update actions/cache action to v2.1.7 2021-11-27 01:59:57 +01:00
.idea
.reuse Replace i18next-http-backend with i18next-resources-to-backend (#1466) 2021-08-31 20:40:33 +00:00
cypress Refactor login components and adjust login API routes (#1678) 2021-12-11 01:32:38 +01:00
LICENSES
locales Refactor login components and adjust login API routes (#1678) 2021-12-11 01:32:38 +01:00
public Refactor login components and adjust login API routes (#1678) 2021-12-11 01:32:38 +01:00
src Refactor login components and adjust login API routes (#1678) 2021-12-11 01:32:38 +01:00
.editorconfig
.env.production
.env.production.license
.gitignore
.mailmap
.mailmap.license
.nvmrc
.nvmrc.license
.prettierignore
.prettierignore.license
AUTHORS.md
CHANGELOG.md Iframe capsule (#1663) 2021-12-02 23:35:31 +01:00
check-build-env-vars.js
CONTRIBUTING.md Improve Logging (#1519) 2021-09-28 22:06:35 +02:00
craco.config.js
cypress.json
cypress.json.license
developer-certificate-of-origin.txt
developer-certificate-of-origin.txt.license
LICENSE
package.json Update dependency prettier to v2.5.1 2021-12-04 18:14:44 +01:00
package.json.license
README.md Add LGTM badges to README.md (#1534) 2021-10-07 21:19:07 +02:00
renovate.json Use renovate to update cypress image 2021-10-16 17:08:35 +02:00
renovate.json.license
tsconfig.json
tsconfig.json.license
yarn.lock Lock file maintenance 2021-12-06 22:16:26 +01:00
yarn.lock.license

HedgeDoc - React Client

test, build e2e lint lint Language grade: JavaScript Total alerts

This is the new, improved and better looking frontend for HedgeDoc 2.0. Our goal is to recreate the current frontend in react and to improve it.

Preparation

You need at least Node 12 (we recommend Node 16) and yarn.

Development mode

  1. Clone this repo (e.g. git clone https://github.com/hedgedoc/react-client.git hedgedoc-react-client)
  2. Go inside the repo (e.g. cd hedgedoc-react-client)
  3. Run yarn install
  4. Either run

This should run the app in the development mode and open http://localhost:3001 in your browser.

The page will reload if you make edits. You will also see any lint errors in the console.

Tests

Unit

Unit testing is done via jest.

  1. Run yarn test

End2End

We use cypress for e2e tests.

  1. Start the frontend with yarn start:test in dev test mode or build a test build with yarn build:test which you can serve with yarn serve:build Don't use the regular start/build command, or the tests will fail!
  2. Run yarn cy:open to open the cypress test loader
  3. Choose your browser and test
  4. Let the tests run

Bundle analysis

You can inspect the generated production-bundle files to look for optimization issues.

  1. Run yarn analyze
  2. Open the generated build/report.html in your favourite browser

Production mode

  1. Clone this repo (e.g. git clone https://github.com/hedgedoc/react-client.git hedgedoc-react-client)
  2. Go inside the repo (e.g. cd hedgedoc-react-client)
  3. Run yarn install
  4. Run yarn build:production

This will build the app in production mode and save it into the build folder. The production build is optimized for best performance, minimized and the filenames include a hash value of the content. Don't edit them by hand!