forked from tomalaforge/angular-challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.component.ts
More file actions
72 lines (69 loc) · 1.56 KB
/
app.component.ts
File metadata and controls
72 lines (69 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import {
ChangeDetectionStrategy,
Component,
computed,
effect,
linkedSignal,
model,
} from '@angular/core';
import { FormsModule } from '@angular/forms';
@Component({
imports: [FormsModule],
selector: 'app-root',
template: `
<section class="flex gap-5">
<p>MacBook</p>
<p>1999,99 €</p>
</section>
<section>
<p>Extras:</p>
<div>
<input type="checkbox" [(ngModel)]="drive" />
+500 GB drive-space
</div>
<div>
<input type="checkbox" [(ngModel)]="ram" />
+4 GB RAM
</div>
<div>
<input type="checkbox" [(ngModel)]="gpu" />
Better GPU
</div>
</section>
`,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class AppComponent {
drive = model(false);
ram = model(false);
gpu = model(false);
// How many active checkboxes we currently have
countActive = computed<number>(() => {
let count = 0;
if (this.drive()) {
count += 1;
}
if (this.ram()) {
count += 1;
}
if (this.gpu()) {
count += 1;
}
return count;
});
// If we have more checkboxes than before we should show the alert
showAlert = linkedSignal<number, boolean>({
source: this.countActive,
computation: (sourceValue, previous) => {
return this.countActive() > (previous?.source || 0);
},
});
constructor() {
effect(() => {
// on each countActive change we check if showAlert is true
if (this.countActive() > 0 && this.showAlert()) {
alert('Price increased!');
}
});
}
}