Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Created February 4, 2023 22:55
Show Gist options
  • Save andrewarosario/02578328cab9aaf2d144548a37d7253b to your computer and use it in GitHub Desktop.
Save andrewarosario/02578328cab9aaf2d144548a37d7253b to your computer and use it in GitHub Desktop.
@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