Go to file
2019-07-01 15:28:45 +03:00
.vsc-templates FE-864: Claim details timeline (#46) 2019-06-25 18:53:23 +03:00
.vscode FE-857: User menu, FE-858: Last claims (#40) 2019-06-18 17:04:23 +03:00
build_utils@ea4aa042f4 FE-827: Add Swagger Codegen (#15) 2019-04-25 14:56:34 +03:00
e2e FE-708: Init (#1) 2018-11-30 16:26:03 +03:00
schemes/swag FE-827: Add Swagger Codegen (#15) 2019-04-25 14:56:34 +03:00
src Extract action item component. Removed button animation. Adjust button color. Removed dsh-gray color. (#49) 2019-07-01 15:28:45 +03:00
.gitignore Add sections module (#17) 2019-05-08 14:32:38 +03:00
.gitmodules FE-827: Add Swagger Codegen (#15) 2019-04-25 14:56:34 +03:00
.prettierignore FE-857: User menu, FE-858: Last claims (#40) 2019-06-18 17:04:23 +03:00
.prettierrc FE-716: Layout modules (#3) 2018-12-13 16:22:47 +03:00
angular.json FE-869: Bump Angular@8.x.x (#47) 2019-06-26 16:12:03 +03:00
containerpilot.json FE-708: Init (#1) 2018-11-30 16:26:03 +03:00
Dockerfile.sh FE-708: Init (#1) 2018-11-30 16:26:03 +03:00
Jenkinsfile FE-827: Add Swagger Codegen (#15) 2019-04-25 14:56:34 +03:00
Makefile FE-869: Bump Angular@8.x.x (#47) 2019-06-26 16:12:03 +03:00
nginx.conf FE-708: Init (#1) 2018-11-30 16:26:03 +03:00
package-lock.json FE-856: Lazy load modules (#48) 2019-07-01 14:07:20 +03:00
package.json FE-856: Lazy load modules (#48) 2019-07-01 14:07:20 +03:00
README.md Added typography config. Refactor layout module. (#29) 2019-05-29 18:49:07 +03:00
tsconfig.json FE-869: Bump Angular@8.x.x (#47) 2019-06-26 16:12:03 +03:00
tslint.json FE-869: Bump Angular@8.x.x (#47) 2019-06-26 16:12:03 +03:00
webpack.extra.js Form control UI kit (#2) 2018-12-04 20:38:16 +03:00

Dashboard

Libraries

  • Angular CLI
    • Run ng generate component component-name to generate a new component (you can also use ng generate directive|pipe|service|class|guard|interface|enum|module).
    • To get more help use ng help or go check out the Angular CLI README.
  • Angular Material
  • Prettier

Initialization

# Install packages

npm ci

# Generate swagger

make wc_shell
make compile

Development server

  1. Run npm start
  2. Navigate to http://localhost:8000/

Production build

  1. Run npm run build
  2. The build artifacts will be stored in the dist/ directory.

Tests

  • Run npm run test to execute the unit tests via Karma.
  • Run npm run e2e to execute the end-to-end tests via Protractor.

Utils

Analyze bundle size

npm run build -- --prod --stats-json --extraWebpackConfig webpack.extra.js
npx webpack-bundle-analyzer dist/stats.json

Guides