react-star-rating-component-new
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=FunctionnextValue prevValue name /* on icon click handler */ onStarHover=FunctionnextValue 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
;;;;;; Component { super; thisstate = rating: 1 ; } { this; } { const rating = thisstate; return <div> <h2>Rating from state: thisstaterating</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;
MIT Licensed