mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
feat(challenge34): default vs onpush perfoamnce serie
This commit is contained in:
@@ -50,6 +50,11 @@ If you would like to propose a challenge, this project is open source, so feel f
|
|||||||
<a href="./apps/bug-cd/README.md"><img src="https://img.shields.io/badge/32-bug CD-orange" alt="bug CD"/></a>
|
<a href="./apps/bug-cd/README.md"><img src="https://img.shields.io/badge/32-bug CD-orange" alt="bug CD"/></a>
|
||||||
<a href="./apps/decoupling/README.md"><img src="https://img.shields.io/badge/33-decoupling-orange" alt="decoupling"/></a>
|
<a href="./apps/decoupling/README.md"><img src="https://img.shields.io/badge/33-decoupling-orange" alt="decoupling"/></a>
|
||||||
|
|
||||||
|
</br>
|
||||||
|
<img src="https://img.shields.io/badge/Angular performance--gray?logo=angular" alt="Angular performance"/>
|
||||||
|
|
||||||
|
<a href="./apps/performance/default-onpush/README.md"><img src="https://img.shields.io/badge/34-Default vs OnPush-green" alt="default onPush"/></a>
|
||||||
|
|
||||||
</br>
|
</br>
|
||||||
<img src="https://img.shields.io/badge/Typescript--gray?logo=typescript" alt="Typescript"/>
|
<img src="https://img.shields.io/badge/Typescript--gray?logo=typescript" alt="Typescript"/>
|
||||||
|
|
||||||
@@ -96,7 +101,7 @@ If you would like to propose a challenge, this project is open source, so feel f
|
|||||||
<table>
|
<table>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" valign="top" width="14.28%"><a href="https://medium.com/@thomas.laforge"><img src="https://avatars.githubusercontent.com/u/30832608?s…00&u=6f0ad9676792f29fd7fe6e113df06213d384a813&v=4" width="100px;" alt="Thomas Laforge"/><br /><sub><b>Thomas Laforge</b></sub></a><br />33 🧩</a></td>
|
<td align="center" valign="top" width="14.28%"><a href="https://medium.com/@thomas.laforge"><img src="https://avatars.githubusercontent.com/u/30832608?s…00&u=6f0ad9676792f29fd7fe6e113df06213d384a813&v=4" width="100px;" alt="Thomas Laforge"/><br /><sub><b>Thomas Laforge</b></sub></a><br />34 🧩</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
36
apps/performance/default-onpush/.eslintrc.json
Normal file
36
apps/performance/default-onpush/.eslintrc.json
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
"extends": ["../../../.eslintrc.json"],
|
||||||
|
"ignorePatterns": ["!**/*"],
|
||||||
|
"overrides": [
|
||||||
|
{
|
||||||
|
"files": ["*.ts"],
|
||||||
|
"rules": {
|
||||||
|
"@angular-eslint/directive-selector": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"type": "attribute",
|
||||||
|
"prefix": "app",
|
||||||
|
"style": "camelCase"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"@angular-eslint/component-selector": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"type": "element",
|
||||||
|
"prefix": "app",
|
||||||
|
"style": "kebab-case"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"extends": [
|
||||||
|
"plugin:@nx/angular",
|
||||||
|
"plugin:@angular-eslint/template/process-inline-templates"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"files": ["*.html"],
|
||||||
|
"extends": ["plugin:@nx/angular-template"],
|
||||||
|
"rules": {}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
58
apps/performance/default-onpush/README.md
Normal file
58
apps/performance/default-onpush/README.md
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<h1>OnPush to optimize Change Detection</h1>
|
||||||
|
|
||||||
|
> Author: Thomas Laforge
|
||||||
|
|
||||||
|
### Information
|
||||||
|
|
||||||
|
In this series of challenges, you will learn how to optimize and enhance the performance of your Angular Application.
|
||||||
|
|
||||||
|
The first step is to download the [Angular DevTools Chrome extention](https://chrome.google.com/webstore/detail/angular-devtools/ienfalfjdbdpebioblfackkekamfmbnh) if you haven't already done so. This extension allows you to profile your application and detect performance issues.
|
||||||
|
|
||||||
|
In this challenge, we will explore the differences and impacts of using `ChangeDetectionStrategy.Default` versus `ChangeDetectionStrategy.OnPush`. To provide a clearer demonstration, I have added counters to each component and each row in our application. However, in real-world scenarios, you may not have such counters. This is where the Angular DevTool profiler comes to the rescue.
|
||||||
|
|
||||||
|
Start by serving this application by running: `npx nx serve performance-default-onpush` inside your terminal. Then open Chrome DevTool by pressing **F12** and switch to the Angular Tab. From there you can select the Profiler tab as shown below.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Start profiling your application and type some letters inside the input field. You will notice that each number is increasing and the profiler will show you a lot of change detection cycle.
|
||||||
|
|
||||||
|
If you click on one of the bars (indicated by the yellow arrow on the picture below), you can see that `PersonListComponent`, `RandomComponent` and all the `MatListItem` are impacted by the change detection cycle, even when we only interact with the input field.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### Statement
|
||||||
|
|
||||||
|
The goal of this challenge is to improve the clustering of change detection within the application.
|
||||||
|
|
||||||
|
### Hints:
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Hint 1</summary>
|
||||||
|
|
||||||
|
Use `ChangeDetectionStrategy.OnPush` but this will not be enough.
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Hint 2</summary>
|
||||||
|
|
||||||
|
Create smaller components to better separate the input field from the list.
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
### Submitting your work
|
||||||
|
|
||||||
|
1. Fork the project
|
||||||
|
2. clone it
|
||||||
|
3. npm ci
|
||||||
|
4. `npx nx serve performance-default-onpush`
|
||||||
|
5. _...work on it_
|
||||||
|
6. Commit your work
|
||||||
|
7. Submit a PR with a title beginning with **Answer:34** that I will review and other dev can review.
|
||||||
|
|
||||||
|
<a href="https://github.com/tomalaforge/angular-challenges/pulls?q=label%3A34+label%3Aanswer"><img src="https://img.shields.io/badge/-Solutions-green" alt="performance-default-onpush"/></a>
|
||||||
|
<a href='https://github.com/tomalaforge/angular-challenges/pulls?q=label%3A34+label%3A"answer+author"'><img src="https://img.shields.io/badge/-Author solution-important" alt="performance-default-onpush solution author"/></a>
|
||||||
|
|
||||||
|
<!-- <a href="{Blog post url}" target="_blank" rel="noopener noreferrer"><img src="https://img.shields.io/badge/-Blog post explanation-blue" alt="performance-default-onpush blog article"/></a> -->
|
||||||
|
|
||||||
|
_You can ask any question on_ <a href="https://twitter.com/laforge_toma" target="_blank" rel="noopener noreferrer"><img src="./../../../logo/twitter.svg" height=20px alt="twitter"/></a>
|
||||||
BIN
apps/performance/default-onpush/img/profiler-record.png
Normal file
BIN
apps/performance/default-onpush/img/profiler-record.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 129 KiB |
BIN
apps/performance/default-onpush/img/profiler-tab.png
Normal file
BIN
apps/performance/default-onpush/img/profiler-tab.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 54 KiB |
84
apps/performance/default-onpush/project.json
Normal file
84
apps/performance/default-onpush/project.json
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
{
|
||||||
|
"name": "performance-default-onpush",
|
||||||
|
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
||||||
|
"projectType": "application",
|
||||||
|
"prefix": "app",
|
||||||
|
"sourceRoot": "apps/performance/default-onpush/src",
|
||||||
|
"tags": [],
|
||||||
|
"targets": {
|
||||||
|
"build": {
|
||||||
|
"executor": "@angular-devkit/build-angular:browser",
|
||||||
|
"outputs": ["{options.outputPath}"],
|
||||||
|
"options": {
|
||||||
|
"outputPath": "dist/apps/performance/default-onpush",
|
||||||
|
"index": "apps/performance/default-onpush/src/index.html",
|
||||||
|
"main": "apps/performance/default-onpush/src/main.ts",
|
||||||
|
"polyfills": ["zone.js"],
|
||||||
|
"tsConfig": "apps/performance/default-onpush/tsconfig.app.json",
|
||||||
|
"assets": [
|
||||||
|
"apps/performance/default-onpush/src/favicon.ico",
|
||||||
|
"apps/performance/default-onpush/src/assets"
|
||||||
|
],
|
||||||
|
"styles": [
|
||||||
|
"apps/performance/default-onpush/src/styles.scss",
|
||||||
|
"./node_modules/@angular/material/prebuilt-themes/indigo-pink.css"
|
||||||
|
],
|
||||||
|
"scripts": []
|
||||||
|
},
|
||||||
|
"configurations": {
|
||||||
|
"production": {
|
||||||
|
"budgets": [
|
||||||
|
{
|
||||||
|
"type": "initial",
|
||||||
|
"maximumWarning": "500kb",
|
||||||
|
"maximumError": "1mb"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "anyComponentStyle",
|
||||||
|
"maximumWarning": "2kb",
|
||||||
|
"maximumError": "4kb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"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": "performance-default-onpush:build:production"
|
||||||
|
},
|
||||||
|
"development": {
|
||||||
|
"browserTarget": "performance-default-onpush:build:development"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"defaultConfiguration": "development"
|
||||||
|
},
|
||||||
|
"extract-i18n": {
|
||||||
|
"executor": "@angular-devkit/build-angular:extract-i18n",
|
||||||
|
"options": {
|
||||||
|
"browserTarget": "performance-default-onpush:build"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lint": {
|
||||||
|
"executor": "@nx/linter:eslint",
|
||||||
|
"outputs": ["{options.outputFile}"],
|
||||||
|
"options": {
|
||||||
|
"lintFilePatterns": [
|
||||||
|
"apps/performance/default-onpush/**/*.ts",
|
||||||
|
"apps/performance/default-onpush/**/*.html"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
22
apps/performance/default-onpush/src/app/app.component.ts
Normal file
22
apps/performance/default-onpush/src/app/app.component.ts
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
import { Component } from '@angular/core';
|
||||||
|
import { PersonListComponent } from './person-list.component';
|
||||||
|
import { Persons } from './persons';
|
||||||
|
import { RandomComponent } from './random.component';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
standalone: true,
|
||||||
|
imports: [PersonListComponent, RandomComponent],
|
||||||
|
selector: 'app-root',
|
||||||
|
template: `
|
||||||
|
<app-random />
|
||||||
|
|
||||||
|
<div class="flex">
|
||||||
|
<app-person-list [data]="personList" title="List 1" />
|
||||||
|
<app-person-list [data]="person2List" title="List 2" />
|
||||||
|
</div>
|
||||||
|
`,
|
||||||
|
})
|
||||||
|
export class AppComponent {
|
||||||
|
personList = [...Persons];
|
||||||
|
person2List = [...Persons];
|
||||||
|
}
|
||||||
6
apps/performance/default-onpush/src/app/app.config.ts
Normal file
6
apps/performance/default-onpush/src/app/app.config.ts
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
import { ApplicationConfig } from '@angular/core';
|
||||||
|
import { provideAnimations } from '@angular/platform-browser/animations';
|
||||||
|
|
||||||
|
export const appConfig: ApplicationConfig = {
|
||||||
|
providers: [provideAnimations()],
|
||||||
|
};
|
||||||
@@ -0,0 +1,72 @@
|
|||||||
|
import { Component, Input } from '@angular/core';
|
||||||
|
|
||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
import { FormsModule } from '@angular/forms';
|
||||||
|
import { MatChipsModule } from '@angular/material/chips';
|
||||||
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
||||||
|
import { MatInputModule } from '@angular/material/input';
|
||||||
|
import { MatListModule } from '@angular/material/list';
|
||||||
|
import { Person } from './person';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-person-list',
|
||||||
|
standalone: true,
|
||||||
|
imports: [
|
||||||
|
CommonModule,
|
||||||
|
FormsModule,
|
||||||
|
MatListModule,
|
||||||
|
MatFormFieldModule,
|
||||||
|
MatInputModule,
|
||||||
|
MatChipsModule,
|
||||||
|
],
|
||||||
|
template: `
|
||||||
|
<h1 class="font-semibold text-center" title="Title">
|
||||||
|
{{ title }}
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<mat-form-field class="w-4/5">
|
||||||
|
<input
|
||||||
|
placeholder="Add one member to the list"
|
||||||
|
matInput
|
||||||
|
type="text"
|
||||||
|
[(ngModel)]="label"
|
||||||
|
(keydown)="handleKey($event)" />
|
||||||
|
</mat-form-field>
|
||||||
|
|
||||||
|
<mat-list class="flex w-full">
|
||||||
|
<div *ngIf="data?.length === 0" class="empty-list-label">Empty list</div>
|
||||||
|
<mat-list-item *ngFor="let item of data">
|
||||||
|
<div MatListItemLine class="flex justify-between">
|
||||||
|
<h3 title="Name">
|
||||||
|
{{ item.label }}
|
||||||
|
</h3>
|
||||||
|
<div class="px-4 py-2 rounded-3xl bg-gray-400">
|
||||||
|
{{ count(item) }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</mat-list-item>
|
||||||
|
<mat-divider *ngIf="data?.length !== 0"></mat-divider>
|
||||||
|
</mat-list>
|
||||||
|
`,
|
||||||
|
host: {
|
||||||
|
class: 'w-full flex flex-col items-center',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
export class PersonListComponent {
|
||||||
|
@Input() data: Person[] | null = null;
|
||||||
|
@Input() title = '';
|
||||||
|
|
||||||
|
label = '';
|
||||||
|
|
||||||
|
handleKey(event: any) {
|
||||||
|
if (event.keyCode === 13) {
|
||||||
|
this.data?.unshift({ label: this.label, num: 0 });
|
||||||
|
this.label = '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
count(person: Person) {
|
||||||
|
person.num++;
|
||||||
|
return person.num;
|
||||||
|
}
|
||||||
|
}
|
||||||
4
apps/performance/default-onpush/src/app/person.ts
Normal file
4
apps/performance/default-onpush/src/app/person.ts
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
export interface Person {
|
||||||
|
label: string;
|
||||||
|
num: number;
|
||||||
|
}
|
||||||
284
apps/performance/default-onpush/src/app/persons.ts
Normal file
284
apps/performance/default-onpush/src/app/persons.ts
Normal file
@@ -0,0 +1,284 @@
|
|||||||
|
import { Person } from './person';
|
||||||
|
|
||||||
|
export const Persons: Person[] = [
|
||||||
|
{
|
||||||
|
label: 'Nettle',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Rosalie',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Rhona',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Talyah',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Fancie',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Kari',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Caresa',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Gerta',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Modestine',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Emogene',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Henryetta',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Darelle',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Clementine',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Arabella',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Constance',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Josey',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Talia',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Loleta',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Tedda',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Francine',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Kittie',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Merry',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Lexi',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Dorie',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Daron',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Bella',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Ashien',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Hyacinthia',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Beatrix',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Tamiko',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Gusty',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Talyah',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Cynthy',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Trudy',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Katharine',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Kelci',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Allyce',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Dorthea',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Patty',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Fernandina',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Fanya',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Lauralee',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Nanice',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Maureen',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Wilmette',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Ellie',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Maybelle',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Angelina',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Dawn',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Arlene',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Maryanne',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Alyda',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Alisun',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Liana',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Alejandrina',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Costanza',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Wendie',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Rosalinda',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Annabela',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Kelsi',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Morgana',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Gabriel',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Cherianne',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Belia',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Jillayne',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Deerdre',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Tedra',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Reine',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Anett',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Donielle',
|
||||||
|
num: 0,
|
||||||
|
},
|
||||||
|
];
|
||||||
13
apps/performance/default-onpush/src/app/random.component.ts
Normal file
13
apps/performance/default-onpush/src/app/random.component.ts
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
import { Component } from '@angular/core';
|
||||||
|
@Component({
|
||||||
|
selector: 'app-random',
|
||||||
|
standalone: true,
|
||||||
|
template: `I do nothing but I'm here: {{ count() }}`,
|
||||||
|
})
|
||||||
|
export class RandomComponent {
|
||||||
|
counter = 0;
|
||||||
|
|
||||||
|
count() {
|
||||||
|
return this.counter++;
|
||||||
|
}
|
||||||
|
}
|
||||||
0
apps/performance/default-onpush/src/assets/.gitkeep
Normal file
0
apps/performance/default-onpush/src/assets/.gitkeep
Normal file
BIN
apps/performance/default-onpush/src/favicon.ico
Normal file
BIN
apps/performance/default-onpush/src/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
13
apps/performance/default-onpush/src/index.html
Normal file
13
apps/performance/default-onpush/src/index.html
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>service-worker</title>
|
||||||
|
<base href="/" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<app-root></app-root>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
7
apps/performance/default-onpush/src/main.ts
Normal file
7
apps/performance/default-onpush/src/main.ts
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
import { bootstrapApplication } from '@angular/platform-browser';
|
||||||
|
import { appConfig } from './app/app.config';
|
||||||
|
import { AppComponent } from './app/app.component';
|
||||||
|
|
||||||
|
bootstrapApplication(AppComponent, appConfig).catch((err) =>
|
||||||
|
console.error(err)
|
||||||
|
);
|
||||||
5
apps/performance/default-onpush/src/styles.scss
Normal file
5
apps/performance/default-onpush/src/styles.scss
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
@tailwind base;
|
||||||
|
@tailwind components;
|
||||||
|
@tailwind utilities;
|
||||||
|
|
||||||
|
/* You can add global styles to this file, and also import other style files */
|
||||||
14
apps/performance/default-onpush/tailwind.config.js
Normal file
14
apps/performance/default-onpush/tailwind.config.js
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
const { createGlobPatternsForDependencies } = require('@nx/angular/tailwind');
|
||||||
|
const { join } = require('path');
|
||||||
|
|
||||||
|
/** @type {import('tailwindcss').Config} */
|
||||||
|
module.exports = {
|
||||||
|
content: [
|
||||||
|
join(__dirname, 'src/**/!(*.stories|*.spec).{ts,html}'),
|
||||||
|
...createGlobPatternsForDependencies(__dirname),
|
||||||
|
],
|
||||||
|
theme: {
|
||||||
|
extend: {},
|
||||||
|
},
|
||||||
|
plugins: [],
|
||||||
|
};
|
||||||
10
apps/performance/default-onpush/tsconfig.app.json
Normal file
10
apps/performance/default-onpush/tsconfig.app.json
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"extends": "./tsconfig.json",
|
||||||
|
"compilerOptions": {
|
||||||
|
"outDir": "../../../dist/out-tsc",
|
||||||
|
"types": []
|
||||||
|
},
|
||||||
|
"files": ["src/main.ts"],
|
||||||
|
"include": ["src/**/*.d.ts"],
|
||||||
|
"exclude": ["jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.ts"]
|
||||||
|
}
|
||||||
7
apps/performance/default-onpush/tsconfig.editor.json
Normal file
7
apps/performance/default-onpush/tsconfig.editor.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"extends": "./tsconfig.json",
|
||||||
|
"include": ["src/**/*.ts"],
|
||||||
|
"compilerOptions": {
|
||||||
|
"types": []
|
||||||
|
}
|
||||||
|
}
|
||||||
29
apps/performance/default-onpush/tsconfig.json
Normal file
29
apps/performance/default-onpush/tsconfig.json
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "es2022",
|
||||||
|
"useDefineForClassFields": false,
|
||||||
|
"forceConsistentCasingInFileNames": true,
|
||||||
|
"strict": true,
|
||||||
|
"noImplicitOverride": true,
|
||||||
|
"noPropertyAccessFromIndexSignature": true,
|
||||||
|
"noImplicitReturns": true,
|
||||||
|
"noFallthroughCasesInSwitch": true
|
||||||
|
},
|
||||||
|
"files": [],
|
||||||
|
"include": [],
|
||||||
|
"references": [
|
||||||
|
{
|
||||||
|
"path": "./tsconfig.app.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "./tsconfig.editor.json"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"extends": "../../../tsconfig.base.json",
|
||||||
|
"angularCompilerOptions": {
|
||||||
|
"enableI18nLegacyMessageIdFormat": false,
|
||||||
|
"strictInjectionParameters": true,
|
||||||
|
"strictInputAccessModifiers": true,
|
||||||
|
"strictTemplates": true
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user