Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Last active February 6, 2023 16:51
Show Gist options
  • Save andrewarosario/b6794256f80b7d07e86c7a0262f06d18 to your computer and use it in GitHub Desktop.
Save andrewarosario/b6794256f80b7d07e86c7a0262f06d18 to your computer and use it in GitHub Desktop.
type Rating = { stars: number; text: string };
@Component({
selector: 'app-star-rating',
templateUrl: './star-rating.component.html',
providers: [
{
provide: NG_VALUE_ACCESSOR,
useExisting: forwardRef(() => StarRatingComponent),
multi: true,
},
],
})
export class StarRatingComponent implements ControlValueAccessor {
@Input() ratings: Rating[] = [
{ stars: 1, text: 'Péssimo' },
{ stars: 2, text: 'Ruim' },
{ stars: 3, text: 'Regular' },
{ stars: 4, text: 'Bom' },
{ stars: 5, text: 'Ótimo!' },
];
ratingText = '';
displayText = '';
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;
}
setRating(rating: Rating): void {
if (!this.disabled) {
this.ratingText = rating.text;
this.writeValue(rating.stars);
this.onChanged(rating.stars);
this.onTouched();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment