This project is a Single Page Application (SPA) that displays test results of trainees.
- State Preservation: Filters and selections should persist when navigating between pages (without refreshing).
- Functionality: Filters, clicks, and other interactions must work properly.
- Filter Behavior:
- Empty filters should display all results.
- Filters are only active when a value is entered.
- Bonus Points:
- Using Angular is preferred.
- Adding unit tests (2-3 examples) will earn extra points.
- Documentation is highly appreciated.
- UI/UX: Any design framework is acceptable, but Angular Material is recommended.
+----------------------------+
| Main Menu |
|----------------------------|
| ▶ Data |
| ▶ Analysis |
| ▶ Monitor |
+----------------------------+
| |
| +----------------------+ |
| | | |
| | Content Area | |
| | (Page changes) | |
| | | |
| +----------------------+ |
| |
+----------------------------+
+--------------------------------------+
| Filter: [____________________] 🔍 |
+--------------------------------------+
| ID | Name | Grade | Date |
|------|----------|-------|------------|
| 101 | Alice | 92 | 2024-03-10 |
| 102 | Bob | 85 | 2024-03-09 |
| 103 | Charlie | 78 | 2024-03-08 |
| ... | ... | ... | ... |
+--------------------------------------+
| [⬅ Prev] Page 1/3 [Next ➡] |
+--------------------------------------+
+------------------------------------------------+
| Select IDs: [101, 102, 103] |
| Select Subjects: [Math, Science, History] |
+------------------------------------------------+
| Performance Graph |
| +--------------------------+ |
| A | * | Subject 1 |
| B | * * | Subject 2 |
| C | * * * | Subject 3 |
| +--------------------------+ |
+------------------------------------------------+
+-------------------------------------------+
| Filter by Status: [✅ Passed] [❌ Failed] |
+-------------------------------------------+
| Name | Average | Status |
|-----------|----------|--------------------|
| Alice | 88.5 | ✅ Passed |
| Bob | 64.2 | ❌ Failed |
| Charlie | 71.3 | ✅ Passed |
+-------------------------------------------+
<app-name>
refers to an app or library (app/lib names can be found inworkspace.json
)
npm i
npm config delete proxy
npm config delete https-proxy
npm run clean
npm run clean:npm
- Open the Extensions tab
- Type
@recommended
- Install all results
VSC workspace recommended extensions docs
- After installing all recommended extensions in the last section Install VSC Extensions
- Press Control + Shift + P
- Start typing
Dev Containers: Reopen in Container
and select it (this will reopen the folder in Docker with terminal access) - Run any Nx workspace command, such as Nx workspace command
npx nx run main-app:serve
npx nx run api:serve
Refer to Nx command docs
npx nx serve
npx nx run <app-name>:serve
npx nx test
npx nx run <app-name>:test
npx nx run <app-name>:test --watch
npx nx lint
npx nx run <app-name>:lint
npx nx build
npx nx run <app-name>:build
npx nx run <app-name>:storybook
npx nx run <app-name>:build-storybook
npx nx graph
npx nx migrate latest
Jenkins
|-- Jenkinsfile
|-- jenkins.dio
Makefile
README.md
apps
|-- main-app
| |-- Dockerfile
| |-- Jenkins
libs
|-- api-interfaces
|-- front
| |-- dynamic-forms
| |-- dynamic-table
| |-- base-client
| |-- ui-standalone-components
nx.json
package.json
10-minute video showing all Nx features
Nx Cloud enables faster builds and tests by caching computations.