mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
challenge 5: http
This commit is contained in:
16
README.md
16
README.md
@@ -13,16 +13,22 @@ This goal of this project is to help you get better at Angular and NgRx buy reso
|
||||
## Challenges
|
||||
|
||||
> Click the following badges to join your next challenge.
|
||||
> <img src="https://img.shields.io/badge/Easy--green" alt="Easy challenge"/>
|
||||
> <img src="https://img.shields.io/badge/Intermediate--orange" alt="Easy challenge"/>
|
||||
> <img src="https://img.shields.io/badge/Advanced--red" alt="Easy challenge"/>
|
||||
|
||||
<img src="https://img.shields.io/badge/Angular--red?logo=angular" alt="Angular"/>
|
||||
</br>
|
||||
<img src="https://img.shields.io/badge/Angular--gray?logo=angular" alt="Angular"/>
|
||||
|
||||
<a href="./apps/projection/README.md"><img src="https://img.shields.io/badge/1-Projection-red" alt="Projection"/></a>
|
||||
<a href="./apps/ngfor-enhancement/README.md"><img src="https://img.shields.io/badge/3-Directive enhancement-red" alt="Directive enhancement"/></a>
|
||||
<a href="./apps/context-outlet-type/README.md"><img src="https://img.shields.io/badge/4-ContextOutlet Typed-red" alt="Directive enhancemen"/></a>
|
||||
<a href="./apps/ngfor-enhancement/README.md"><img src="https://img.shields.io/badge/3-Directive enhancement-orange" alt="Directive enhancement"/></a>
|
||||
<a href="./apps/context-outlet-type/README.md"><img src="https://img.shields.io/badge/4-ContextOutlet Typed-red" alt="Directive enhancement"/></a>
|
||||
<a href="./apps/http/README.md"><img src="https://img.shields.io/badge/5-Http-green" alt="http"/></a>
|
||||
|
||||
<img src="https://img.shields.io/badge/NgRx--blueviolet" alt="NgRx"/>
|
||||
</br>
|
||||
<img src="https://img.shields.io/badge/NgRx--gray" alt="NgRx"/>
|
||||
|
||||
<a href="./apps/ngrx-1/README.md"><img src="https://img.shields.io/badge/2-Effect vs Selector-blueviolet" alt="Effect vs Selector"/></a>
|
||||
<a href="./apps/ngrx-1/README.md"><img src="https://img.shields.io/badge/2-Effect vs Selector-orange" alt="Effect vs Selector"/></a>
|
||||
|
||||
## License
|
||||
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<h1>NgTemplateOutlet Strongly Typed</h1>
|
||||
|
||||
> Author: Thomas Laforge
|
||||
|
||||
## Information
|
||||
|
||||
Angular offer the static function **ngTemplateContextGuard** to strongly type structural directive.
|
||||
|
||||
@@ -7,7 +7,9 @@
|
||||
"targets": {
|
||||
"build": {
|
||||
"executor": "@angular-devkit/build-angular:browser",
|
||||
"outputs": ["{options.outputPath}"],
|
||||
"outputs": [
|
||||
"{options.outputPath}"
|
||||
],
|
||||
"options": {
|
||||
"outputPath": "dist/apps/context-outlet-type",
|
||||
"index": "apps/context-outlet-type/src/index.html",
|
||||
@@ -19,7 +21,9 @@
|
||||
"apps/context-outlet-type/src/favicon.ico",
|
||||
"apps/context-outlet-type/src/assets"
|
||||
],
|
||||
"styles": ["apps/context-outlet-type/src/styles.scss"],
|
||||
"styles": [
|
||||
"apps/context-outlet-type/src/styles.scss"
|
||||
],
|
||||
"scripts": []
|
||||
},
|
||||
"configurations": {
|
||||
|
||||
16
apps/http/.browserslistrc
Normal file
16
apps/http/.browserslistrc
Normal file
@@ -0,0 +1,16 @@
|
||||
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
|
||||
# For additional information regarding the format and rule options, please see:
|
||||
# https://github.com/browserslist/browserslist#queries
|
||||
|
||||
# For the full list of supported browsers by the Angular framework, please see:
|
||||
# https://angular.io/guide/browser-support
|
||||
|
||||
# You can see what browsers were selected by your queries by running:
|
||||
# npx browserslist
|
||||
|
||||
last 1 Chrome version
|
||||
last 1 Firefox version
|
||||
last 2 Edge major versions
|
||||
last 2 Safari major versions
|
||||
last 2 iOS major versions
|
||||
Firefox ESR
|
||||
36
apps/http/.eslintrc.json
Normal file
36
apps/http/.eslintrc.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"extends": ["../../.eslintrc.json"],
|
||||
"ignorePatterns": ["!**/*"],
|
||||
"overrides": [
|
||||
{
|
||||
"files": ["*.ts"],
|
||||
"extends": [
|
||||
"plugin:@nrwl/nx/angular",
|
||||
"plugin:@angular-eslint/template/process-inline-templates"
|
||||
],
|
||||
"rules": {
|
||||
"@angular-eslint/directive-selector": [
|
||||
"error",
|
||||
{
|
||||
"type": "attribute",
|
||||
"prefix": "app",
|
||||
"style": "camelCase"
|
||||
}
|
||||
],
|
||||
"@angular-eslint/component-selector": [
|
||||
"error",
|
||||
{
|
||||
"type": "element",
|
||||
"prefix": "app",
|
||||
"style": "kebab-case"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"files": ["*.html"],
|
||||
"extends": ["plugin:@nrwl/nx/angular-template"],
|
||||
"rules": {}
|
||||
}
|
||||
]
|
||||
}
|
||||
64
apps/http/README.md
Normal file
64
apps/http/README.md
Normal file
@@ -0,0 +1,64 @@
|
||||
<h1>HttpClient</h1>
|
||||
|
||||
> Author: Thomas Laforge
|
||||
|
||||
## Information
|
||||
|
||||
Http request is the heart of any application. You will need to master those following best practises to build strong and reliable Angular Application.
|
||||
|
||||
## Statement
|
||||
|
||||
In this exercice, you have a small CRUD application, which get a list of TODOS, update and delete some todo.
|
||||
|
||||
Currently we have a working exemple but filled with lots of bad practices.
|
||||
|
||||
### Step 1: refactor with best practices
|
||||
|
||||
What you will need to do:
|
||||
|
||||
- Avoid **any** as a type. Using Interface to leverage Typescript type system prevent errors
|
||||
- Use a **separate service** for all your http calls and use a **BehaviourSubject** for your todoList
|
||||
- Use **AsyncPipe** to suscribe to your todo list. _(Let you handle subscription, unsuscription and refresh of the page when data has changed)_, avoir manual subscribe when it's not needed
|
||||
- Don't **mutate** data
|
||||
|
||||
```typescript
|
||||
// Avoid this
|
||||
this.todos[todoUpdated.id - 1] = todoUpdated;
|
||||
|
||||
// Prefer something like this, but need to be improved because we still want the same order
|
||||
this.todos = [
|
||||
...this.todos.filter((t) => t.id !== todoUpdated.id),
|
||||
todoUpdated,
|
||||
];
|
||||
```
|
||||
|
||||
- Use **ChangeDectection.OnPush**
|
||||
|
||||
### Step 2: Improve
|
||||
|
||||
- Add a **Delete** button: _<a href="https://jsonplaceholder.typicode.com/" target="_blank">Doc of fake API</a>_
|
||||
- Handle **errors** correctly. _(Globaly)_
|
||||
- Add a Global **loading** indicator. _You can use MatProgressSpinnerModule_
|
||||
|
||||
### Step 3: Maintainability!! add some test
|
||||
|
||||
- Add 2/3 tests
|
||||
|
||||
### Step 4: Awesomeness!!! master your state.
|
||||
|
||||
- Use the **component store of ngrx** as a local state of your component. _(or any other 3rd Party lib)_
|
||||
- Have a **localize** Loading/Error indicator, e.g. only on the Todo being processed and **disable** all buttons of the processed Todo. _(Hint: you will need to create an ItemComponent)_
|
||||
|
||||
## Submitting your work
|
||||
|
||||
1. Fork the project
|
||||
2. clone it
|
||||
3. npm install
|
||||
4. **nx serve http**
|
||||
5. _...work On it_
|
||||
6. Commit your work
|
||||
7. Submit a PR with a title beginning with **Answer:3** that I will review and other dev can review.
|
||||
|
||||
<a href="https://github.com/tomalaforge/angular-challenges/pulls?q=label%3A5+label%3Aanswer" target="_blank"><img src="https://img.shields.io/badge/-Solutions-green" alt="Http"/></a>
|
||||
|
||||
_You can ask any question on_ <a href="https://twitter.com/laforge_toma" target="_blank"><img src="./../../logo/twitter.svg" height=20px alt="Twitter"/></a>
|
||||
95
apps/http/project.json
Normal file
95
apps/http/project.json
Normal file
@@ -0,0 +1,95 @@
|
||||
{
|
||||
"name": "http",
|
||||
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||||
"projectType": "application",
|
||||
"sourceRoot": "apps/http/src",
|
||||
"prefix": "app",
|
||||
"targets": {
|
||||
"build": {
|
||||
"executor": "@angular-devkit/build-angular:browser",
|
||||
"outputs": [
|
||||
"{options.outputPath}"
|
||||
],
|
||||
"options": {
|
||||
"outputPath": "dist/apps/http",
|
||||
"index": "apps/http/src/index.html",
|
||||
"main": "apps/http/src/main.ts",
|
||||
"polyfills": "apps/http/src/polyfills.ts",
|
||||
"tsConfig": "apps/http/tsconfig.app.json",
|
||||
"inlineStyleLanguage": "scss",
|
||||
"assets": [
|
||||
"apps/http/src/favicon.ico",
|
||||
"apps/http/src/assets"
|
||||
],
|
||||
"styles": [
|
||||
"./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
|
||||
"apps/http/src/styles.scss"
|
||||
],
|
||||
"scripts": [],
|
||||
"allowedCommonJsDependencies": [
|
||||
"seedrandom"
|
||||
]
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"budgets": [
|
||||
{
|
||||
"type": "initial",
|
||||
"maximumWarning": "500kb",
|
||||
"maximumError": "1mb"
|
||||
},
|
||||
{
|
||||
"type": "anyComponentStyle",
|
||||
"maximumWarning": "2kb",
|
||||
"maximumError": "4kb"
|
||||
}
|
||||
],
|
||||
"fileReplacements": [
|
||||
{
|
||||
"replace": "apps/http/src/environments/environment.ts",
|
||||
"with": "apps/http/src/environments/environment.prod.ts"
|
||||
}
|
||||
],
|
||||
"outputHashing": "all"
|
||||
},
|
||||
"development": {
|
||||
"buildOptimizer": false,
|
||||
"optimization": false,
|
||||
"vendorChunk": true,
|
||||
"extractLicenses": false,
|
||||
"sourceMap": true,
|
||||
"namedChunks": true
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": "production"
|
||||
},
|
||||
"serve": {
|
||||
"executor": "@angular-devkit/build-angular:dev-server",
|
||||
"configurations": {
|
||||
"production": {
|
||||
"browserTarget": "http:build:production"
|
||||
},
|
||||
"development": {
|
||||
"browserTarget": "http:build:development"
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": "development"
|
||||
},
|
||||
"extract-i18n": {
|
||||
"executor": "@angular-devkit/build-angular:extract-i18n",
|
||||
"options": {
|
||||
"browserTarget": "http:build"
|
||||
}
|
||||
},
|
||||
"lint": {
|
||||
"executor": "@nrwl/linter:eslint",
|
||||
"options": {
|
||||
"lintFilePatterns": [
|
||||
"apps/http/**/*.ts",
|
||||
"apps/http/**/*.html"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": []
|
||||
}
|
||||
52
apps/http/src/app/app.component.ts
Normal file
52
apps/http/src/app/app.component.ts
Normal file
@@ -0,0 +1,52 @@
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { HttpClient } from '@angular/common/http';
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { randText } from '@ngneat/falso';
|
||||
|
||||
@Component({
|
||||
standalone: true,
|
||||
imports: [CommonModule],
|
||||
selector: 'app-root',
|
||||
template: `
|
||||
<div *ngFor="let todo of todos">
|
||||
{{ todo.title }}
|
||||
<button (click)="update(todo)">Update</button>
|
||||
</div>
|
||||
`,
|
||||
styles: [],
|
||||
})
|
||||
export class AppComponent implements OnInit {
|
||||
todos!: any[];
|
||||
|
||||
constructor(private http: HttpClient) {}
|
||||
|
||||
ngOnInit(): void {
|
||||
this.http
|
||||
.get<any[]>('https://jsonplaceholder.typicode.com/todos')
|
||||
.subscribe((todos) => {
|
||||
console.log('return', todos);
|
||||
this.todos = todos;
|
||||
});
|
||||
}
|
||||
|
||||
update(todo: any) {
|
||||
this.http
|
||||
.put<any>(
|
||||
`https://jsonplaceholder.typicode.com/todos/${todo.id}`,
|
||||
JSON.stringify({
|
||||
todo: todo.id,
|
||||
title: randText(),
|
||||
body: todo.body,
|
||||
userId: todo.userId,
|
||||
}),
|
||||
{
|
||||
headers: {
|
||||
'Content-type': 'application/json; charset=UTF-8',
|
||||
},
|
||||
}
|
||||
)
|
||||
.subscribe((todoUpdated: any) => {
|
||||
this.todos[todoUpdated.id - 1] = todoUpdated;
|
||||
});
|
||||
}
|
||||
}
|
||||
0
apps/http/src/assets/.gitkeep
Normal file
0
apps/http/src/assets/.gitkeep
Normal file
3
apps/http/src/environments/environment.prod.ts
Normal file
3
apps/http/src/environments/environment.prod.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export const environment = {
|
||||
production: true,
|
||||
};
|
||||
16
apps/http/src/environments/environment.ts
Normal file
16
apps/http/src/environments/environment.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
// This file can be replaced during build by using the `fileReplacements` array.
|
||||
// `ng build` replaces `environment.ts` with `environment.prod.ts`.
|
||||
// The list of file replacements can be found in `angular.json`.
|
||||
|
||||
export const environment = {
|
||||
production: false,
|
||||
};
|
||||
|
||||
/*
|
||||
* For easier debugging in development mode, you can import the following file
|
||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
||||
*
|
||||
* This import should be commented out in production mode because it will have a negative impact
|
||||
* on performance if an error is thrown.
|
||||
*/
|
||||
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
||||
BIN
apps/http/src/favicon.ico
Normal file
BIN
apps/http/src/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
16
apps/http/src/index.html
Normal file
16
apps/http/src/index.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Http</title>
|
||||
<base href="/" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<app-root></app-root>
|
||||
</body>
|
||||
</html>
|
||||
13
apps/http/src/main.ts
Normal file
13
apps/http/src/main.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { HttpClientModule } from '@angular/common/http';
|
||||
import { enableProdMode, importProvidersFrom } from '@angular/core';
|
||||
import { bootstrapApplication } from '@angular/platform-browser';
|
||||
import { AppComponent } from './app/app.component';
|
||||
import { environment } from './environments/environment';
|
||||
|
||||
if (environment.production) {
|
||||
enableProdMode();
|
||||
}
|
||||
|
||||
bootstrapApplication(AppComponent, {
|
||||
providers: [importProvidersFrom(HttpClientModule)],
|
||||
}).catch((err) => console.error(err));
|
||||
52
apps/http/src/polyfills.ts
Normal file
52
apps/http/src/polyfills.ts
Normal file
@@ -0,0 +1,52 @@
|
||||
/**
|
||||
* This file includes polyfills needed by Angular and is loaded before the app.
|
||||
* You can add your own extra polyfills to this file.
|
||||
*
|
||||
* This file is divided into 2 sections:
|
||||
* 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
|
||||
* 2. Application imports. Files imported after ZoneJS that should be loaded before your main
|
||||
* file.
|
||||
*
|
||||
* The current setup is for so-called "evergreen" browsers; the last versions of browsers that
|
||||
* automatically update themselves. This includes recent versions of Safari, Chrome (including
|
||||
* Opera), Edge on the desktop, and iOS and Chrome on mobile.
|
||||
*
|
||||
* Learn more in https://angular.io/guide/browser-support
|
||||
*/
|
||||
|
||||
/***************************************************************************************************
|
||||
* BROWSER POLYFILLS
|
||||
*/
|
||||
|
||||
/**
|
||||
* By default, zone.js will patch all possible macroTask and DomEvents
|
||||
* user can disable parts of macroTask/DomEvents patch by setting following flags
|
||||
* because those flags need to be set before `zone.js` being loaded, and webpack
|
||||
* will put import in the top of bundle, so user need to create a separate file
|
||||
* in this directory (for example: zone-flags.ts), and put the following flags
|
||||
* into that file, and then add the following code before importing zone.js.
|
||||
* import './zone-flags';
|
||||
*
|
||||
* The flags allowed in zone-flags.ts are listed here.
|
||||
*
|
||||
* The following flags will work for all browsers.
|
||||
*
|
||||
* (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
|
||||
* (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
|
||||
* (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
|
||||
*
|
||||
* in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
|
||||
* with the following flag, it will bypass `zone.js` patch for IE/Edge
|
||||
*
|
||||
* (window as any).__Zone_enable_cross_context_check = true;
|
||||
*
|
||||
*/
|
||||
|
||||
/***************************************************************************************************
|
||||
* Zone JS is required by default for Angular itself.
|
||||
*/
|
||||
import 'zone.js'; // Included with Angular CLI.
|
||||
|
||||
/***************************************************************************************************
|
||||
* APPLICATION IMPORTS
|
||||
*/
|
||||
10
apps/http/src/styles.scss
Normal file
10
apps/http/src/styles.scss
Normal file
@@ -0,0 +1,10 @@
|
||||
/* You can add global styles to this file, and also import other style files */
|
||||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Roboto, "Helvetica Neue", sans-serif;
|
||||
}
|
||||
10
apps/http/tsconfig.app.json
Normal file
10
apps/http/tsconfig.app.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../dist/out-tsc",
|
||||
"types": []
|
||||
},
|
||||
"files": ["src/main.ts", "src/polyfills.ts"],
|
||||
"include": ["src/**/*.d.ts"],
|
||||
"exclude": ["jest.config.ts", "**/*.test.ts", "**/*.spec.ts"]
|
||||
}
|
||||
7
apps/http/tsconfig.editor.json
Normal file
7
apps/http/tsconfig.editor.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"include": ["**/*.ts"],
|
||||
"compilerOptions": {
|
||||
"types": []
|
||||
}
|
||||
}
|
||||
28
apps/http/tsconfig.json
Normal file
28
apps/http/tsconfig.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"files": [],
|
||||
"include": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.app.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.editor.json"
|
||||
}
|
||||
],
|
||||
"compilerOptions": {
|
||||
"target": "es2020",
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"strict": true,
|
||||
"noImplicitOverride": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"noImplicitReturns": true,
|
||||
"noFallthroughCasesInSwitch": true
|
||||
},
|
||||
"angularCompilerOptions": {
|
||||
"enableI18nLegacyMessageIdFormat": false,
|
||||
"strictInjectionParameters": true,
|
||||
"strictInputAccessModifiers": true,
|
||||
"strictTemplates": true
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,7 @@
|
||||
<h1>Directive enhancement</h1>
|
||||
|
||||
> Author: Thomas Laforge
|
||||
|
||||
## Information
|
||||
|
||||
Directive is a very powerful tool only offered by the Angular framework. You can apply the DRY principal by having shared logic inside a directive and applying it to any component you want.
|
||||
|
||||
@@ -7,7 +7,9 @@
|
||||
"targets": {
|
||||
"build": {
|
||||
"executor": "@angular-devkit/build-angular:browser",
|
||||
"outputs": ["{options.outputPath}"],
|
||||
"outputs": [
|
||||
"{options.outputPath}"
|
||||
],
|
||||
"options": {
|
||||
"outputPath": "dist/apps/ngfor-enhancement",
|
||||
"index": "apps/ngfor-enhancement/src/index.html",
|
||||
@@ -19,7 +21,9 @@
|
||||
"apps/ngfor-enhancement/src/favicon.ico",
|
||||
"apps/ngfor-enhancement/src/assets"
|
||||
],
|
||||
"styles": ["apps/ngfor-enhancement/src/styles.scss"],
|
||||
"styles": [
|
||||
"apps/ngfor-enhancement/src/styles.scss"
|
||||
],
|
||||
"scripts": []
|
||||
},
|
||||
"configurations": {
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<h1>NgRx Effect vs Selector</h1>
|
||||
|
||||
> Author: Thomas Laforge
|
||||
|
||||
For this exercice, you will have a dashboard of activities displaying the name, the main teacher and a list of subtitutes.
|
||||
|
||||
## Information
|
||||
|
||||
@@ -7,7 +7,9 @@
|
||||
"targets": {
|
||||
"build": {
|
||||
"executor": "@angular-devkit/build-angular:browser",
|
||||
"outputs": ["{options.outputPath}"],
|
||||
"outputs": [
|
||||
"{options.outputPath}"
|
||||
],
|
||||
"options": {
|
||||
"outputPath": "dist/apps/ngrx-1",
|
||||
"index": "apps/ngrx-1/src/index.html",
|
||||
@@ -15,10 +17,17 @@
|
||||
"polyfills": "apps/ngrx-1/src/polyfills.ts",
|
||||
"tsConfig": "apps/ngrx-1/tsconfig.app.json",
|
||||
"inlineStyleLanguage": "scss",
|
||||
"assets": ["apps/ngrx-1/src/favicon.ico", "apps/ngrx-1/src/assets"],
|
||||
"styles": ["apps/ngrx-1/src/styles.scss"],
|
||||
"assets": [
|
||||
"apps/ngrx-1/src/favicon.ico",
|
||||
"apps/ngrx-1/src/assets"
|
||||
],
|
||||
"styles": [
|
||||
"apps/ngrx-1/src/styles.scss"
|
||||
],
|
||||
"scripts": [],
|
||||
"allowedCommonJsDependencies": ["seedrandom"]
|
||||
"allowedCommonJsDependencies": [
|
||||
"seedrandom"
|
||||
]
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
@@ -74,12 +83,17 @@
|
||||
"lint": {
|
||||
"executor": "@nrwl/linter:eslint",
|
||||
"options": {
|
||||
"lintFilePatterns": ["apps/ngrx-1/**/*.ts", "apps/ngrx-1/**/*.html"]
|
||||
"lintFilePatterns": [
|
||||
"apps/ngrx-1/**/*.ts",
|
||||
"apps/ngrx-1/**/*.html"
|
||||
]
|
||||
}
|
||||
},
|
||||
"test": {
|
||||
"executor": "@nrwl/jest:jest",
|
||||
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
||||
"outputs": [
|
||||
"{workspaceRoot}/coverage/{projectRoot}"
|
||||
],
|
||||
"options": {
|
||||
"jestConfig": "apps/ngrx-1/jest.config.ts",
|
||||
"passWithNoTests": true
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<h1>Projection</h1>
|
||||
|
||||
> Author: Thomas Laforge
|
||||
|
||||
### Statement
|
||||
|
||||
Refactor this working exemple of a dasboard containing multiple cards (teachers, students, ...)
|
||||
|
||||
@@ -7,7 +7,9 @@
|
||||
"targets": {
|
||||
"build": {
|
||||
"executor": "@angular-devkit/build-angular:browser",
|
||||
"outputs": ["{options.outputPath}"],
|
||||
"outputs": [
|
||||
"{options.outputPath}"
|
||||
],
|
||||
"options": {
|
||||
"outputPath": "dist/apps/projection",
|
||||
"index": "apps/projection/src/index.html",
|
||||
@@ -19,9 +21,13 @@
|
||||
"apps/projection/src/favicon.ico",
|
||||
"apps/projection/src/assets"
|
||||
],
|
||||
"styles": ["apps/projection/src/styles.scss"],
|
||||
"styles": [
|
||||
"apps/projection/src/styles.scss"
|
||||
],
|
||||
"scripts": [],
|
||||
"allowedCommonJsDependencies": ["seedrandom"]
|
||||
"allowedCommonJsDependencies": [
|
||||
"seedrandom"
|
||||
]
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
@@ -85,7 +91,9 @@
|
||||
},
|
||||
"test": {
|
||||
"executor": "@nrwl/jest:jest",
|
||||
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
||||
"outputs": [
|
||||
"{workspaceRoot}/coverage/{projectRoot}"
|
||||
],
|
||||
"options": {
|
||||
"jestConfig": "apps/projection/jest.config.ts",
|
||||
"passWithNoTests": true
|
||||
|
||||
37
nx.json
37
nx.json
@@ -5,27 +5,50 @@
|
||||
"default": {
|
||||
"runner": "nx/tasks-runners/default",
|
||||
"options": {
|
||||
"cacheableOperations": ["build", "lint", "test", "e2e"]
|
||||
"cacheableOperations": [
|
||||
"build",
|
||||
"lint",
|
||||
"test",
|
||||
"e2e"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"targetDefaults": {
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"inputs": ["production", "^production"]
|
||||
"dependsOn": [
|
||||
"^build"
|
||||
],
|
||||
"inputs": [
|
||||
"production",
|
||||
"^production"
|
||||
]
|
||||
},
|
||||
"test": {
|
||||
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"]
|
||||
"inputs": [
|
||||
"default",
|
||||
"^production",
|
||||
"{workspaceRoot}/jest.preset.js"
|
||||
]
|
||||
},
|
||||
"e2e": {
|
||||
"inputs": ["default", "^production"]
|
||||
"inputs": [
|
||||
"default",
|
||||
"^production"
|
||||
]
|
||||
},
|
||||
"lint": {
|
||||
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
|
||||
"inputs": [
|
||||
"default",
|
||||
"{workspaceRoot}/.eslintrc.json"
|
||||
]
|
||||
}
|
||||
},
|
||||
"namedInputs": {
|
||||
"default": ["{projectRoot}/**/*", "sharedGlobals"],
|
||||
"default": [
|
||||
"{projectRoot}/**/*",
|
||||
"sharedGlobals"
|
||||
],
|
||||
"production": [
|
||||
"default",
|
||||
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
|
||||
|
||||
103
package-lock.json
generated
103
package-lock.json
generated
@@ -11,14 +11,18 @@
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@angular/animations": "~14.2.0",
|
||||
"@angular/cdk": "^14.2.7",
|
||||
"@angular/common": "~14.2.0",
|
||||
"@angular/compiler": "~14.2.0",
|
||||
"@angular/core": "~14.2.0",
|
||||
"@angular/forms": "~14.2.0",
|
||||
"@angular/material": "^14.2.7",
|
||||
"@angular/platform-browser": "~14.2.0",
|
||||
"@angular/platform-browser-dynamic": "~14.2.0",
|
||||
"@angular/router": "~14.2.0",
|
||||
"@hirez_io/observer-spy": "^2.2.0",
|
||||
"@ngneat/falso": "^6.1.0",
|
||||
"@ngrx/component-store": "^14.3.2",
|
||||
"@ngrx/effects": "^14.3.2",
|
||||
"@ngrx/router-store": "^14.3.2",
|
||||
"@ngrx/store": "^14.3.2",
|
||||
@@ -1356,6 +1360,28 @@
|
||||
"@angular/core": "14.2.8"
|
||||
}
|
||||
},
|
||||
"node_modules/@angular/cdk": {
|
||||
"version": "14.2.7",
|
||||
"resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-14.2.7.tgz",
|
||||
"integrity": "sha512-/tEsYaUbDSnfEmKVvAMramIptmhI67O+9STjOV0i+74XR2NospeK0fkbywIANu1n3w6AHGMotvRWJrjmbCElFg==",
|
||||
"dependencies": {
|
||||
"tslib": "^2.3.0"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"parse5": "^5.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@angular/common": "^14.0.0 || ^15.0.0",
|
||||
"@angular/core": "^14.0.0 || ^15.0.0",
|
||||
"rxjs": "^6.5.3 || ^7.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@angular/cdk/node_modules/parse5": {
|
||||
"version": "5.1.1",
|
||||
"resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz",
|
||||
"integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==",
|
||||
"optional": true
|
||||
},
|
||||
"node_modules/@angular/cli": {
|
||||
"version": "14.2.8",
|
||||
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-14.2.8.tgz",
|
||||
@@ -1497,6 +1523,23 @@
|
||||
"node": "^14.15.0 || >=16.10.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@angular/material": {
|
||||
"version": "14.2.7",
|
||||
"resolved": "https://registry.npmjs.org/@angular/material/-/material-14.2.7.tgz",
|
||||
"integrity": "sha512-WXHh8pEStpgkXZJmYOg2cI8BSHkV82ET4XTJCNPdveumaCn1UYnaNzsXD13kw5z+zmy8CufhFEzdXTrv/yt7KQ==",
|
||||
"dependencies": {
|
||||
"tslib": "^2.3.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@angular/animations": "^14.0.0 || ^15.0.0",
|
||||
"@angular/cdk": "14.2.7",
|
||||
"@angular/common": "^14.0.0 || ^15.0.0",
|
||||
"@angular/core": "^14.0.0 || ^15.0.0",
|
||||
"@angular/forms": "^14.0.0 || ^15.0.0",
|
||||
"@angular/platform-browser": "^14.0.0 || ^15.0.0",
|
||||
"rxjs": "^6.5.3 || ^7.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@angular/platform-browser": {
|
||||
"version": "14.2.8",
|
||||
"resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-14.2.8.tgz",
|
||||
@@ -3732,6 +3775,15 @@
|
||||
"integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@hirez_io/observer-spy": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/@hirez_io/observer-spy/-/observer-spy-2.2.0.tgz",
|
||||
"integrity": "sha512-G9nv87vjRILgB/X1AtKBv1DZX7yXSYAOCXon/f+QULKoXVhVehYUF5Lv0SQ97ebf1sA48Z2CyQ9h2v4Pz6DgaQ==",
|
||||
"peerDependencies": {
|
||||
"rxjs": ">=6.0.0",
|
||||
"typescript": ">=2.8.1"
|
||||
}
|
||||
},
|
||||
"node_modules/@humanwhocodes/config-array": {
|
||||
"version": "0.9.5",
|
||||
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz",
|
||||
@@ -4322,6 +4374,18 @@
|
||||
"uuid": "8.3.2"
|
||||
}
|
||||
},
|
||||
"node_modules/@ngrx/component-store": {
|
||||
"version": "14.3.2",
|
||||
"resolved": "https://registry.npmjs.org/@ngrx/component-store/-/component-store-14.3.2.tgz",
|
||||
"integrity": "sha512-qdh0COdMU6LmrycoIIZg678DbsNXWR05Y6pVz+t7/LszGC4+UGuXoS6CR8gSNGGMWwLVw5yh+5MXsjuqTvp3ww==",
|
||||
"dependencies": {
|
||||
"tslib": "^2.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@angular/core": "^14.0.0",
|
||||
"rxjs": "^6.5.3 || ^7.5.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@ngrx/effects": {
|
||||
"version": "14.3.2",
|
||||
"resolved": "https://registry.npmjs.org/@ngrx/effects/-/effects-14.3.2.tgz",
|
||||
@@ -19508,6 +19572,23 @@
|
||||
"tslib": "^2.3.0"
|
||||
}
|
||||
},
|
||||
"@angular/cdk": {
|
||||
"version": "14.2.7",
|
||||
"resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-14.2.7.tgz",
|
||||
"integrity": "sha512-/tEsYaUbDSnfEmKVvAMramIptmhI67O+9STjOV0i+74XR2NospeK0fkbywIANu1n3w6AHGMotvRWJrjmbCElFg==",
|
||||
"requires": {
|
||||
"parse5": "^5.0.0",
|
||||
"tslib": "^2.3.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"parse5": {
|
||||
"version": "5.1.1",
|
||||
"resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz",
|
||||
"integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==",
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"@angular/cli": {
|
||||
"version": "14.2.8",
|
||||
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-14.2.8.tgz",
|
||||
@@ -19592,6 +19673,14 @@
|
||||
"integrity": "sha512-XvLmZB2RbawDjJSwU41XoZvmkHGnKTZ4gM6LyNnER2rSaEQVHmADh39UF/hAHeEosHVeau/PKAvwIcxyPW6YxA==",
|
||||
"dev": true
|
||||
},
|
||||
"@angular/material": {
|
||||
"version": "14.2.7",
|
||||
"resolved": "https://registry.npmjs.org/@angular/material/-/material-14.2.7.tgz",
|
||||
"integrity": "sha512-WXHh8pEStpgkXZJmYOg2cI8BSHkV82ET4XTJCNPdveumaCn1UYnaNzsXD13kw5z+zmy8CufhFEzdXTrv/yt7KQ==",
|
||||
"requires": {
|
||||
"tslib": "^2.3.0"
|
||||
}
|
||||
},
|
||||
"@angular/platform-browser": {
|
||||
"version": "14.2.8",
|
||||
"resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-14.2.8.tgz",
|
||||
@@ -21080,6 +21169,12 @@
|
||||
"integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==",
|
||||
"dev": true
|
||||
},
|
||||
"@hirez_io/observer-spy": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/@hirez_io/observer-spy/-/observer-spy-2.2.0.tgz",
|
||||
"integrity": "sha512-G9nv87vjRILgB/X1AtKBv1DZX7yXSYAOCXon/f+QULKoXVhVehYUF5Lv0SQ97ebf1sA48Z2CyQ9h2v4Pz6DgaQ==",
|
||||
"requires": {}
|
||||
},
|
||||
"@humanwhocodes/config-array": {
|
||||
"version": "0.9.5",
|
||||
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz",
|
||||
@@ -21556,6 +21651,14 @@
|
||||
"uuid": "8.3.2"
|
||||
}
|
||||
},
|
||||
"@ngrx/component-store": {
|
||||
"version": "14.3.2",
|
||||
"resolved": "https://registry.npmjs.org/@ngrx/component-store/-/component-store-14.3.2.tgz",
|
||||
"integrity": "sha512-qdh0COdMU6LmrycoIIZg678DbsNXWR05Y6pVz+t7/LszGC4+UGuXoS6CR8gSNGGMWwLVw5yh+5MXsjuqTvp3ww==",
|
||||
"requires": {
|
||||
"tslib": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"@ngrx/effects": {
|
||||
"version": "14.3.2",
|
||||
"resolved": "https://registry.npmjs.org/@ngrx/effects/-/effects-14.3.2.tgz",
|
||||
|
||||
@@ -12,14 +12,18 @@
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "~14.2.0",
|
||||
"@angular/cdk": "^14.2.7",
|
||||
"@angular/common": "~14.2.0",
|
||||
"@angular/compiler": "~14.2.0",
|
||||
"@angular/core": "~14.2.0",
|
||||
"@angular/forms": "~14.2.0",
|
||||
"@angular/material": "^14.2.7",
|
||||
"@angular/platform-browser": "~14.2.0",
|
||||
"@angular/platform-browser-dynamic": "~14.2.0",
|
||||
"@angular/router": "~14.2.0",
|
||||
"@hirez_io/observer-spy": "^2.2.0",
|
||||
"@ngneat/falso": "^6.1.0",
|
||||
"@ngrx/component-store": "^14.3.2",
|
||||
"@ngrx/effects": "^14.3.2",
|
||||
"@ngrx/router-store": "^14.3.2",
|
||||
"@ngrx/store": "^14.3.2",
|
||||
|
||||
Reference in New Issue
Block a user