You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

react-star-rating-component-new

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-star-rating-component-new

React component for star (or any other icon based) ratings

1.0.6
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

react-star-rating-component-new

npm version Download Count

This is a fork of Dmitri Voronianski's react-star-rating-component, a "Tiny React.js component for star (or any other icon based) ratings."

This version includes different render function prop for rendering the empty star icon. This removes the dependency of changing colors on basis of rating and displaying different icon altogether. A new prop renderEmptyStarIcon has been added with this package.

Install

npm install react-star-rating-component-new --save

or, if you use yarn:

yarn add react-star-rating-component-new

Props

<StarRatingComponent
  name={String} /* name of the radio input, it is required */
  value={
    Number
  } /* number of selected icon (`0` - none, `1` - first). *Also required* */
  starCount={Number} /* number of icons in rating, default `5` */
  onStarClick={Function(nextValue, prevValue, name)} /* on icon click handler */
  onStarHover={Function(nextValue, prevValue, name)} /* on icon hover handler */
  onStarHoverOut={Function(
    nextValue,
    prevValue,
    name
  )} /* on icon hover out handler */
  renderStarIcon={Function(
    nextValue,
    prevValue,
    name
  )} /* it should return string or react component */
  renderEmptyStarIcon={Function(
    nextValue,
    prevValue,
    name
  )} /* it should return string or react component */
  renderStarIconHalf={Function(
    nextValue,
    prevValue,
    name
  )} /* it should return string or react component */
  editing={Boolean} /* is component available for editing, default `true` */
/>

Examples

React

import React from "react";
import ReactDOM from "react-dom";
import StarRatingComponent from "react-star-rating-component-new";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faStar, faStarHalfAlt } from "@fortawesome/free-solid-svg-icons";
import { faStar as faStarEmpty } from "@fortawesome/free-regular-svg-icons";

class App extends React.Component {
  constructor() {
    super();

    this.state = {
      rating: 1,
    };
  }

  onStarClick(nextValue, prevValue, name) {
    this.setState({ rating: nextValue });
  }

  render() {
    const { rating } = this.state;

    return (
      <div>
        <h2>Rating from state: {this.state.rating}</h2>
        <StarRating
          name="productRating"
          editing={false}
          renderStarIcon={() => (
            <FontAwesomeIcon
              icon={faStar}
              style={{ color: "rgb(253, 186, 73)" }}
            />
          )}
          renderStarIconHalf={() => (
            <FontAwesomeIcon
              icon={faStarHalfAlt}
              style={{ color: "rgb(253, 186, 73)" }}
            />
          )}
          renderEmptyStarIcon={() => (
            <FontAwesomeIcon
              icon={faStarEmpty}
              style={{ color: "rgb(253, 186, 73)" }}
            />
          )}
          starCount={5}
          value={rating}
        />
      </div>
    );
  }
}

ReactDOM.render(<App />, document.getElementById("app"));

MIT Licensed

Keywords

react

FAQs

Package last updated on 16 Jul 2020

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