4e36469baa
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> |
||
---|---|---|
.. | ||
.github | ||
.netlify | ||
.reuse | ||
cypress | ||
dev-reverse-proxy | ||
global-styles | ||
LICENSES | ||
locales | ||
netlify | ||
public | ||
src | ||
.dockerignore | ||
.dockerignore.license | ||
.editorconfig | ||
.env.development | ||
.env.development.license | ||
.env.production | ||
.env.production.license | ||
.env.test | ||
.env.test.license | ||
.eslintrc.json | ||
.eslintrc.json.license | ||
.gitattributes | ||
.gitignore | ||
.mailmap | ||
.mailmap.license | ||
.nvmrc | ||
.nvmrc.license | ||
.prettierignore | ||
.prettierignore.license | ||
.prettierrc.json | ||
.prettierrc.json.license | ||
.yarnrc.yml | ||
AUTHORS.md | ||
CHANGELOG.md | ||
CODE_OF_CONDUCT.md | ||
CONTRIBUTING.md | ||
cypress.config.ts | ||
developer-certificate-of-origin.txt | ||
developer-certificate-of-origin.txt.license | ||
Dockerfile | ||
jest.config.ts | ||
LICENSE | ||
netlify.toml | ||
next-env.d.ts | ||
next-env.d.ts.license | ||
next.config.js | ||
package.json | ||
package.json.license | ||
README.md | ||
renovate.json | ||
renovate.json.license | ||
tsconfig.json | ||
tsconfig.json.license | ||
yarn.lock | ||
yarn.lock.license |
HedgeDoc - React Client
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.
UI Test
Curious about the new look and feel? We provide a demo of the new UI on hedgedoc.dev. This version uses mocked data and has no data persistence.
The UI test is hosted by netlify. Please check their privacy policy as well as ours.
Preparation
You need at least Node 14 (we recommend Node 18) and yarn. You MUST use yarn! There is no support for npm.
- Clone this repo (e.g.
git clone https://github.com/hedgedoc/react-client.git hedgedoc-react-client
) - Go inside the repo (e.g.
cd hedgedoc-react-client
) - Run
yarn install
Development mode
To start the development mode run yarn run dev
. If not configured otherwise the development mode will run in mock-mode which
emulates a hedgedoc backend.
If you want to use the development with a real hedgedoc backend then run yarn run dev:for-real-backend
instead.
The app should run now and be available under http://localhost:3001 in your browser.
In development mode the app will autoload changes you make to the code.
Production mode
Use yarn build
to build the app in production mode and save it into the .next
folder. The production build is minimized
and optimized for best performance. Don't edit them by hand!
You can run the production build using the built-in server with yarn start
.
You MUST provide the environment variable HD_EDITOR_BASE_URL
with protocol, domain and (if needed) path (
e.g. http://127.0.0.1:3001/
) so the app knows under which URL it is available in the browser.
Optionally you can also provide HD_RENDERER_BASE_URL
if the renderer should use another domain than the editor. This is
recommended for security reasons but not mandatory.
Production mock build
It is also possible to create a production build that uses the emulated backend by using yarn build:mock
.
Using to backend and frontend together
To use backend and frontend together you'll need a reverse proxy that combines both services under one URL origin.
We provide a configuration for caddy in the directory dev-reverse-proxy
.
- Make sure that the backend is running on port
3000
(which is the default), and thatHD_DOMAIN
is set tohttp://localhost:8080
. - Start the frontend by using either running
yarn dev:for-real-backend
or by running a production build withHD_EDITOR_BASE_URL
set tohttp://localhost:8080/
. - Start the reverse proxy. You can use the script
run-caddy.sh
in thedev-reverse-proxy
directory or download a caddy binary from caddy and start it usingcaddy run
.
Running Tests
Unit
Unit testing is done via jest.
- Run
yarn test
End2End
We use cypress for e2e tests.
- Start the frontend with
yarn dev:test
(or use a test build usingyarn build:test
which you can start usingyarn start
). The usage of:test
is mandatory! - Run
yarn cy:open
to open the cypress test loader - Choose your browser and start a test suite
To run all tests in a headless browser use yarn cy:run:chrome
or yarn cy:run:firefox
Bundle analysis
You can inspect the generated production-bundle files to look for optimization issues.
- run
yarn analyze
. This will overwrite any existing builds! - Open the generated
.next/server/analyze/server.html
in your favourite browser