Created
February 4, 2023 22:55
-
-
Save andrewarosario/02578328cab9aaf2d144548a37d7253b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Component({ | |
selector: 'app-star-rating', | |
templateUrl: './star-rating.component.html' | |
}) | |
export class StarRatingComponent implements ControlValueAccessor { | |
protected disabled: boolean; | |
protected value: number; | |
onChanged: (stars: number) => void; | |
onTouched: () => void; | |
writeValue(value: number) { | |
this.value = value; | |
} | |
registerOnChange(fn: (stars: number) => void) { | |
this.onChanged = fn; | |
} | |
registerOnTouched(fn: () => void) { | |
this.onTouched = fn; | |
} | |
setDisabledState(isDisabled: boolean): void { | |
this.disabled = isDisabled; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment