Angular Bar Rating
npm install ngx-bar-rating
Minimal, light-weight Angular ratings.
bash
npm i ngx-bar-rating
`
Basic usage:
Import BarRating or BarRatingModule in your component imports.
`ts
@Component({
standalone: true,
selector: 'bars',
template:
,
styleUrl: './example.component.scss',
imports: [BarRating]
})
export class BarsComponent {
rate: number = 4;
}
`
Import the theme in your global styles (unless you want to use custom template)
`scss
@import 'ngx-bar-rating/themes/br-default-theme';
`
Rating inputs and outputs:
| Name | Description | Default |
|------------------|----------------------------------------------------------------------|---------|
| [rate] | Current rating. Can be a decimal value like 3.14 | null |
| [max] | Maximal rating that can be given using this widget | 5 |
| [theme] | Theme class, see available themes | default |
| [readonly] | A flag that indicates if rating can be changed | false |
| [showText] | Display rating title if available, otherwise display rating value | false |
| [required] | A flag that indicates if rating is disabled. works only with forms | false |
| [disabled] | A flag that indicates if rating is disabled. works only with forms | false |
| [titles] | Titles array. array should represent all possible values including 0 | [] |
| (rateChange) | A stream that emits when the rating value is changed | |
$3
BarRatingModule provides a couple of directives to set custom rating template of your choice.
- *ratingActive: Set template, when a bar/star is active or hovered.
- *ratingInactive: Set template, when a bar/star is inactive.
- *ratingFraction: Set template, when a bar/star is a fraction.
Here are some example:
#### Bootstrap rating example
`html
`
#### FontAwesome rating example
`html
`
#### Movie rating example
`html
[titles]="['Bad', 'Mediocre' , 'Good', 'Awesome']"/>
`
It can be used with Angular forms:
`html
form is valid: {{ form.valid ? 'true' : 'false' }}
{{ formRating }}
`
And reactive forms:
`html
form is valid: {{ form.valid ? 'true' : 'false' }}
{{ formRating }}
`
Click effect
To apply a scale-fade effect when a bar is clicked, simply add the effect directive to the component:
`html
`
CSS variables
* --br-font-size: Defines the font size for the step element. Affects the themes: [default, square, stars].
* --br-width: Specifies the width of the step element. Affects the themes: [stars, square, movie, vertical, horizontal].
* --br-height: Specifies the height of the step element. Affects the themes: [stars, square, movie, vertical, horizontal].
* --br-gap: Sets the gap between the individual steps.
* --br-active-color: Defines the color for active steps.
* --br-inactive-color: Defines the color for inactive steps.
* --br-effect-scale: Specifies the scale value for the scale-fade effect (e.g., 2).
* --br-effect-duration: Sets the duration of the scale-fade animation (e.g., 0.4s).
* --br-effect-ease: Defines the easing function for the scale-fade animation (e.g., ease-out).
Predefined themes
> If you want to use a custom rating template, you don't need to import any CSS theme.
If you want to use one of the predefined themes, you will need to import it in the global style style.scss
- Pure CSS stars (default) theme="default"
`css
@import 'ngx-bar-rating/themes/br-default-theme';
`
- Horizontal bars theme="horizontal"
`css
@import 'ngx-bar-rating/themes/br-horizontal-theme';
`
- Vertical bars theme="vertical"
`css
@import 'ngx-bar-rating/themes/br-vertical-theme';
`
- Custom stars theme="stars"
`css
@import 'ngx-bar-rating/themes/br-stars-theme';
`
- Movie rating theme="movie"
`css
@import 'ngx-bar-rating/themes/br-movie-theme';
`
- Square rating theme="square"
`css
@import 'ngx-bar-rating/themes/br-square-theme';
`
Rating style can be easily customized, check the classes used in any theme and add your own css.
You can also do the same for forms classes such as untouched, touched, dirty, invalid, valid ...etc`