mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
58 lines
1.2 KiB
TypeScript
58 lines
1.2 KiB
TypeScript
import { Component, forwardRef } from '@angular/core';
|
|
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
|
|
const NOOP = () => {};
|
|
|
|
@Component({
|
|
selector: 'storybook-custom-cva-component',
|
|
template: `
|
|
<div>{{ value }}</div>
|
|
<input type="text" [(ngModel)]="value" />
|
|
`,
|
|
providers: [
|
|
{
|
|
provide: NG_VALUE_ACCESSOR,
|
|
useExisting: forwardRef(() => CustomCvaComponent),
|
|
multi: true,
|
|
},
|
|
],
|
|
})
|
|
export class CustomCvaComponent implements ControlValueAccessor {
|
|
disabled: boolean;
|
|
|
|
protected onChange: (value: any) => void = NOOP;
|
|
|
|
protected onTouch: () => void = NOOP;
|
|
|
|
protected internalValue: any;
|
|
|
|
get value(): any {
|
|
return this.internalValue;
|
|
}
|
|
|
|
set value(value: any) {
|
|
if (value !== this.internalValue) {
|
|
this.internalValue = value;
|
|
this.onChange(value);
|
|
}
|
|
}
|
|
|
|
writeValue(value: any): void {
|
|
if (value !== this.internalValue) {
|
|
this.internalValue = value;
|
|
}
|
|
}
|
|
|
|
registerOnChange(fn: any): void {
|
|
this.onChange = fn;
|
|
}
|
|
|
|
registerOnTouched(fn: any): void {
|
|
this.onTouch = fn;
|
|
}
|
|
|
|
setDisabledState(isDisabled: boolean): void {
|
|
this.disabled = isDisabled;
|
|
}
|
|
}
|