npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ngx-bar-rating

v7.0.1

Published

Angular Bar Rating

Downloads

23,487

Readme

npm npm npm npm


If you like this plugin, please give it a star ⭐.

Table of Contents

Installation

Install it with npm

npm i ngx-bar-rating

Basic usage:

Import BarRating or BarRatingModule in your component imports.

@Component({
  standalone: true,
  selector: 'bars',
  template: `
    <bar-rating [(rate)]="rate"/>
  `,
  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)

@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 | |

Custom rating template

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

<bar-rating [(rate)]="rate" max="5">
  <i *ratingActive class="bi bi-star-fill" style="margin: 2px; color: #edb867"></i>
  <i *ratingInactive class="bi bi-star-fill" style="margin: 2px; color: #d2d2d2"></i>
</bar-rating>

FontAwesome rating example

<bar-rating [(rate)]="rate" max="10">
  <fa-icon *ratingInactive [icon]="['far', 'star']" [fixedWidth]="true" size="lg" style="color: #d2d2d2"/>
  <fa-icon *ratingActive [icon]="['fas', 'star']" [fixedWidth]="true" size="lg" style="color: #50e3c2"/>
  <fa-icon *ratingFraction [icon]="['fas', 'star-half-alt']" [fixedWidth]="true" size="lg" style="color: #50e3c2"/>
</bar-rating>

Movie rating example

<bar-rating [(rate)]="rate" max="4" theme="movie" showText
            [titles]="['Bad', 'Mediocre' , 'Good', 'Awesome']"/>

It can be used with Angular forms:

<form #form="ngForm">
  <bar-rating name="rating" [(ngModel)]="formRating" [max]="4" required disabled></bar-rating>
</form>
<p>form is valid: {{ form.valid ? 'true' : 'false' }}</p>
<pre>{{ formRating }}</pre>

And reactive forms:

<form [formGroup]="ratingForm">
  <bar-rating formControlName="rate" [max]="4" required disabled></bar-rating>
</form>
<p>form is valid: {{ form.valid ? 'true' : 'false' }}</p>
<pre>{{ formRating }}</pre>

CSS variables

  • --br-font-size Sets the size of the step for the following themes: [default, square, stars].
  • --br-width Sets the width of the step for the following themes: [stars, square, movie, vertical, horizontal].
  • --br-height Sets the height of the step for the following themes: [stars, square, movie, vertical, horizontal].
  • --br-gap Sets the gap between the stars.
  • --br-active-color Sets active color.
  • --br-inactive-color Sets inactive color.

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"
@import 'ngx-bar-rating/themes/br-default-theme';
  • Horizontal bars theme="horizontal"
@import 'ngx-bar-rating/themes/br-horizontal-theme';
  • Vertical bars theme="vertical"
@import 'ngx-bar-rating/themes/br-vertical-theme';
  • Custom stars theme="stars"
@import 'ngx-bar-rating/themes/br-stars-theme';
  • Movie rating theme="movie"
@import 'ngx-bar-rating/themes/br-movie-theme';
  • Square rating theme="square"
@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

Issues

If you identify any errors in this component, or have an idea for an improvement, please open an issue. I am excited to see what the community thinks of this project, and I would love your input!

Author

Murhaf Sousli