OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/frontend/doc
luz paz 1830420679 Fix various typos 3 years ago
..
PLUGINS.md Fix singleton services being initialized per module 5 years ago
README.md Rename shrinkwrap to package-lock and fix version (#9471) 3 years ago
STYLING.md Fix various typos 3 years ago
TESTING.md Remove accessible-by-keyboard a11y component (#9331) 3 years ago

README.md

Developing OpenProject Frontend

The OpenProject frontend is split into two parts:

  • The legacy webpack bundle is located at frontend/legacy and contains AngularJS from the previous frontend that cannot be converted to Angular. (Mainly because they're used in Rails partials with content within)
  • The Angular frontend is located at frontend/src and uses the Angular CLI to compile and serve locally.

Angular frontend

When developing, npm run serve will open a proxy server (webpack-dev-server) that will serve assets from memory. That server is running on http://localhost:4200 by default and will forward all requests it cannot handle to the Rails server which it expects to run at http://localhost:3000.

You can always access the Rails server with http://localhost:3000 and it will forward the requests to the CLI Proxy unless an empty ENV variable OPENPROJECT_CLI_PROXY=''' is passed to it.

Then, Rails will try to locate the asset on disk (e.g., as output from the rake assets:precompile task). This is also what happens in production mode.

To learn more about how this behavior works in detail, see the asset helper at app/helpers/frontend_asset_helper.rb.

The proxy definition can be found at frontend/cli_to_rails_proxy.js.

Ahead-of-Time compilation (AOT)

In development, by default AOT is disabled. You can force it in by running npm run serve --aot. For production builds with ng build --prod, --aot is enabled by default as per the frontend/angular.json configuration.

Production builds

Production builds can be triggered either through the rake assets:precompile rake task (which will compile legacy and angular frontend) or by running npm build --prod manually.

Tests

Tests are run with karma-jasmine through the Angular CLI ng test. To watch the test output, use ng test --watch. Only files ending with .spec.ts will be matched and compiled.

For more information, see TESTING.

Plugins

OpenProject Community Edition has some plugins that contain a frontend, e.g., Costs or My Project Page.

For developing these plugins, they need to be linked so either the Legacy or Angular frontend can see and process them. For more information on that part, see PLUGINS

Living Style Guide

The style guide is available as part of the Rails development server at: http://localhost:3000/styleguide.

For more information on styling the application, see STYLING.

Changing or updating Dependencies

We use a package-lock to lock down runtime (but not development) dependencies. When adding or removing dependencies, please use npm install to also update the lockfile. Please commit package-lock.json along with any changes to package.json.

If you want to install the packages from the lockfile without updating it, please use the following command:

npm ci

Topics

The individual topics for the documentation for the frontend are

  1. TESTING.md - documentation of our approach to integration and unit testing
  2. STYLING.md - notes on styling and the Sass-Pipeline
  3. API.md - notes on dealing with the several APIs provided by OpenProject
  4. LEGACY.md - contains additional information on how to use the legacy bundle
  5. PLUGINS.md - contains additional information on how to link plugins with a frontend during development.