refactor(devtools): add cookies signal demo (#62749)

add a new component that includes a small signal graph and explicitly calls .set on a signal.

PR Close #62749
This commit is contained in:
Milo 2025-05-07 19:13:41 +00:00 committed by Jessica Janiuk
parent 14888a73f6
commit ffd4407a41
4 changed files with 48 additions and 1 deletions

View file

@ -39,6 +39,7 @@ sass_binary(
ng_project(
name = "demo-app",
srcs = [
"cookies.component.ts",
"demo-app.component.ts",
"demo-app.routes.ts",
"heavy.component.ts",

View file

@ -0,0 +1,38 @@
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import {Component, signal, computed} from '@angular/core';
@Component({
selector: 'app-cookies',
template: `
<h2>Cookie recipe</h2>
<label>
# of cookies:
<input type="range" min="10" max="100" step="10" [value]="count()" (input)="update($event)" />
{{ count() }}
</label>
<p>Butter: {{ butter() }} cup(s)</p>
<p>Sugar: {{ sugar() }} cup(s)</p>
<p>Flour: {{ flour() }} cup(s)</p>
`,
})
export class CookieRecipe {
count = signal(10, {debugName: 'count'});
butter = computed(() => this.count() * 0.1, {debugName: 'butter'});
sugar = computed(() => this.count() * 0.05, {debugName: 'sugar'});
flour = computed(() => this.count() * 0.2, {debugName: 'flour'});
update(event: Event) {
const input = event.target as HTMLInputElement;
this.count.set(parseInt(input.value));
}
}

View file

@ -4,3 +4,4 @@
<div #elementReference>HTMLElement</div>
<div *appStructural>Test Structural Directive</div>
<app-sample-properties></app-sample-properties>
<app-cookies />

View file

@ -26,6 +26,7 @@ import {ZippyComponent} from './zippy.component';
import {HeavyComponent} from './heavy.component';
import {SamplePropertiesComponent} from './sample-properties.component';
import {RouterOutlet} from '@angular/router';
import {CookieRecipe} from './cookies.component';
// structual directive example
@Directive({
@ -50,7 +51,13 @@ export class StructuralDirective {
styleUrls: ['./demo-app.component.scss'],
encapsulation: ViewEncapsulation.None,
schemas: [CUSTOM_ELEMENTS_SCHEMA],
imports: [StructuralDirective, HeavyComponent, SamplePropertiesComponent, RouterOutlet],
imports: [
StructuralDirective,
HeavyComponent,
SamplePropertiesComponent,
RouterOutlet,
CookieRecipe,
],
})
export class DemoAppComponent {
readonly zippy = viewChild(ZippyComponent);