Socket
Socket
Sign inDemoInstall

nxtlife-ionic2-rating

Package Overview
Dependencies
0
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    nxtlife-ionic2-rating

An Angular2 component to visualize a star rating bar, built for Ionic 2.


Version published
Weekly downloads
36
increased by260%
Maintainers
1
Install size
20.4 kB
Created
Weekly downloads
 

Readme

Source

nxtlife-ionic2-rating

Build a simple directive to visualize a star rating bar using angular2 and ionic2.

NPM version Downloads

NPM

Installation:

$ npm install --save nxtlife-ionic2-rating

Usage:

Import NxtLifeIonic2RatingModule on module definition that declares the page where you want to add the rating component. In some cases, all pages are declared on src/app/app.module.ts.

import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
import { MyApp } from './app.component';

// Import ionic2-rating module
import { NxtLifeIonic2RatingModule } from 'nxtlife-ionic2-rating';

@NgModule({
  ......
  ......
  imports: [
    IonicModule.forRoot(MyApp),
    NxtLifeIonic2RatingModule // Put ionic2-rating module here
  ],
  ......
  ......
})
export class AppModule {}

Include the component on page template, like the example below:

<nxtlife-rating></nxtlife-rating>

DEFAULT VALUE

readOnly = false,
max = 5,
emptyStarIconName = "star-outline",
halfStarIconName = "star-half",
starIconName = "star",
nullable = false

When you need to do something when user clicks on a start then you have to use (click) or (ngModelChange) with [(ngModel)]:

<nxtlife-rating [(ngModel)]="rate" (ngModelChange)="onModelChange($event)">
</nxtlife-rating>

If you want to customize style:

ul {
  padding: 0px;

  &.rating li {
    padding: 5px 10px !important;
    background: none;
    color: #ffb400;

    ion-icon {
      font-size: 30px;
    }
  }
}

Keywords

FAQs

Last updated on 08 Jul 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc