Last active
February 6, 2023 16:51
-
-
Save andrewarosario/b6794256f80b7d07e86c7a0262f06d18 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
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