[TOB-218] feat: Add department selection to workflow data form

 * Add SelectGroupComponent and a common control class
 * Reorganize shared modules
 * Add a collapsible container component
 * Add back end calls for workflow data
 * Add typed builder for form groups
 * Add debug site for edit page
 * Add component for workflow data
 * Add workflow form to edit page portal
 * Add translations

[TOB-190] fix: Use proper lazy loading

 * Use more direct import paths
 * Preload all modules on application start

[TOB-134, TOB-195] feat: Add process diagram and history to details

 * Install bpmn.js
 * Add component to display bpmn diagram
 * Add a component to display process history table
 * Add global styling to mat-table
 * Add back end calls for process information
 * Integrate process information into store
 * Integrate process information into details view

[TOB-28] feat: Add comments to workflow data form

 * Add UI component to display and write comments
 * Add back end calls for comments
 * Integrate comments into store
 * Add output to collapsible component
 * Integrate comments into main pages
 * Use constant for displayed time format
 * Add translations

[TOB-163] test: Increase test coverage

 * Adjust util functions for better testing
 * Reorganize store structure for better testing
 * Reorganize effects in statements store
 * Send proper body when submitting workflow form
 * Add tests for statement reducers
 * Add tests for statement selectors
 * Add tests for CommentEffect
 * Add tests for SubmitWorkflowFormEffect

Signed-off-by: Christopher Keim <keim@develop-group.de>
236 files changed
tree: fcf6b44b729ea9ae855a5321822f487c19c76dfc
  1. .storybook/
  2. scripts/
  3. src/
  4. .editorconfig
  5. .gitignore
  6. .huskyrc.json
  7. .stylelintrc.json
  8. angular.json
  9. browserslist
  10. karma.conf.js
  11. LICENSE.md
  12. NOTICE.md
  13. package-lock.json
  14. package.json
  15. proxy.conf.json
  16. README.md
  17. sonar-project.properties
  18. tsconfig.app.json
  19. tsconfig.json
  20. tsconfig.spec.json
  21. tslint.json
README.md

Eclipse openK User Modules - Statement Public Affairs Frontend

This application represents a user module for the Eclipse openK User Modules project.

Prerequisites

With npm in the path variable, run first npm install to download and install all dependencies of this module. After that, all npm scripts for deploying, developing and testing are available.

Additionally, archiving the build as WAR file requires also the Java Archiver command line tool in the path variable.

Configuration

The whole application can be configured via certain properties in the ./package.json. The following options are available:

  • routes.spaFrontend: Route on which the website is served
  • routes.spaBackend: Route on which the website's backend is served
  • routes.portal: Route on which the main portal is served

Changes to these properties take only effect after rebuilding the application.

Build

Building the application is done via the Angular CLI or by the provided scripts in the ./package.json (which also provide all necessary configuration steps):

  • npm run build Build the application via the Angular CLI to the ./dist/statement-public-affairs folder
  • npm run archive Archive the build as WAR file to ./dist/statement-public-affairs-frontend.war

Note that the archiving script requires the Java Archiver (jar) command line tool in the path variable.

Development

Run npm run start for setting up a local dev server which is served on http://localhost:4200/. The local dev server is also a proxy which can be configured by the file ./proxy.conf.json. It redirects all calls to the back end to a specific location.

Run npm run test to execute all tests via Karma and Jasmine. This also sets up a local dev server with live reload.

Run npm run test:report instead to generate a coverage report at the folder ./coverage/statement-public-affairs.

Run npm run lint for linting all source files, both typescript and (s)css code.

Run npm run lint:report to generate instead linting report files at ./lint.ts.report.json and ./lint.styles.report.json.

Run npm run sonar to upload the test and linting reports to a sonarqube instance via the sonar-scanner. This can be configured either by the ./sonar-projects.properties file or by arguments on the command line. For example, uploading the reports to a different port can be done via:

npm run sonar -- -Dsonar.host.url=http://localhost:9001

Storybook

Run start:storybook for setting up a local storybook server.

Run build:storybook instead for building the storybook webpage for later use.

Miscellaneous Scripts

Run npm run list-licenses to generate a listing of all packages and their licenses used for production. A file is created at ./licenses.txt. The content of this file is required in the ./NOTICE.md file.

Run npm run check-legal-headers to check if all source files have a specific legal header.

Git Hooks

Run npm run pre-commit to check if a commit passes the pre-commit script. This script concatenates npm run lint and npm run check-legal-headers.