Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-star-rating-input

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-star-rating-input

React.js component for entering 0-5 stars

  • 6.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9
decreased by-80.43%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status

About

React.js component for entering 0-N stars (N is 5 by default). See the demo.

Installation

Made for Browserify; graphics and CSS bundled.

npm install --save react-star-rating-input

Usage

See the code of the demo mentioned above.

Props

Static layout

  • size -- how many stars to display. The default value is 5
  • showClear -- hides the "Clear" link when false. The default value is true

Interaction

  • value -- how many stars are selected
  • onChange: function (value) {...} -- your value change handler

Internationalization

react-intl-based. To translate the component, please pass the messages property, containing:

{
    'react-star-rating-input': {
        clear: 'Clear',
        clearHint: 'Reset value to no stars'
    }
}

Why have a react-intl dependency instead of just setting the clear and clearHint text as props?

Well, that allows using react-star-rating-input uniformly in bigger applications, and passing all the namespaced translations, from the root, down the React components hierarchy, -- automatically, with the help of IntlMixin.

Please note, that react-intl depends on global Intl object. You can polyfill it with intl package:

if (!global.Intl) {
    require('intl');
}

Keywords

FAQs

Package last updated on 29 Jan 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc