Implementation of React star rating component

Implementation of React star rating component

The requirement is to pass in the rating data for the product, and the page will display the corresponding number of stars.

1. Prepare three star pictures corresponding to different ratings

insert image description here
insert image description hereinsert image description here

2. Expected results

Such

insert image description here

Call

<StarScore score={data.wm_poi_score}/>

3. Process the incoming data

We need to get the integer and decimal parts of the score

let wm_poi_score = this.props.score || '';
let score = wm_poi_score.toString();
let scoreArray = score.split('.');

If 4.7 is passed in, the resulting scoreArray is ['4', '7']

4. Calculate the corresponding number of stars based on the data

// Full star number let fullstar = parseInt(scoreArray[0]);
// Number of half stars let halfstar = parseInt(scoreArray[1]) >= 5 ? 1 : 0;
// Number of gray stars let nullstar = 5 - fullstar - halfstar;

5. Render components according to the number of stars

let starjsx = [];
// Render full stars for (let i = 0; i < fullstar; i++) {
  starjsx.push(<div key={i + 'full'} className="star fullstar"></div>)
}
// Render half star if (halfstar) {
  for (let j = 0; j < halfstar; j++) {
    starjsx.push(<div key={j + 'half'} className="star halfstar"></div>)
  }
}
// Render gray star if (nullstar) {
  for (let k = 0; k < nullstar; k++) {
    starjsx.push(<div key={k + 'null'} className="star nullstar"></div>)
  }
}

OK, the effect we want is achieved.

6. Manual Scoring

insert image description here

When the page is first displayed, 5 gray stars are rendered. Add a click event to each star. When clicked, get the subscript index corresponding to the star and add a highlight style to it.

<div className="star-area">
  {this.renderStar()}
</div>
doEva(i) {
  this.setState({
    startIndex: i + 1
  });
}

renderStar() {
  let array = []
  for (let i = 0; i < 5; i++) {
    let cls = i >= this.state.startIndex ? "star-item" : "star-item light"
    array.push(
      <div onClick={() => this.doEva(i)} key={i} className={cls}></div>
    )
  }
  return array
}

Complete code

import React from 'react';
import './StarScore.scss';

// Render 5 star score method class StarScore extends React.Component {
  renderScore() {
    let wm_poi_score = this.props.score || '';
    let score = wm_poi_score.toString();
    let scoreArray = score.split('.');
    // Full star number let fullstar = parseInt(scoreArray[0]);
    // Number of half stars let halfstar = parseInt(scoreArray[1]) >= 5 ? 1 : 0;
    // Number of gray stars let nullstar = 5 - fullstar - halfstar;
    let starjsx = [];

    // Render full stars for (let i = 0; i < fullstar; i++) {
      starjsx.push(<div key={i + 'full'} className="star fullstar"></div>)
    }
    // Render half star if (halfstar) {
      for (let j = 0; j < halfstar; j++) {
        starjsx.push(<div key={j + 'half'} className="star halfstar"></div>)
      }
    }
    // Render gray star if (nullstar) {
      for (let k = 0; k < nullstar; k++) {
        starjsx.push(<div key={k + 'null'} className="star nullstar"></div>)
      }
    }
    return starjsx;
  }
  render() {
    return <div className="star-score">{this.renderScore()}</div>;
  }
}

export default StarScore;

StarScore.scss

.star-score {
  .star {
    width: 10px;
    height: 10px;
    float: left;
    background-size: cover;
  }

  .fullstar {
    background-image: url('./img/fullstar.png');
  }

  .halfstar {
    background-image: url('./img/halfstar.png');
  }

  .nullstar {
    background-image: url('./img/gray-star.png');
  }
}
import './Main.scss';
import React from 'react';

class Main extends React.Component {
  constructor(props) {
    super(props);
    }
  }
  
  /**
   * Click to rate */
  doEva(i) {
    this.setState({
      startIndex: i + 1
    });
  }
  /**
   * Stars for rendering rating */
  renderStar() {
    let array = []
    for (let i = 0; i < 5; i++) {
      let cls = i >= this.state.startIndex ? "star-item" : "star-item light"
      array.push(
        <div onClick={() => this.doEva(i)} key={i} className={cls}></div>
      )
    }
    return array
  }
  render() {
    return (
      <div className="content">
        <div className="star-area">
            {this.renderStar()}
          </div>
      </div>
    );
  }
}

export default Main;
.content {
  height: 100%;
  .eva-content {
    background-color: #fff;
    overflow: hidden;
    margin: px2rem(10px);
    margin-top: px2rem(74px);
  }
  .star-area {
    text-align: center;
    margin-top: px2rem(30px);
  }
  .star-item {
    width: px2rem(32px);
    height: px2rem(32px);
    background-image: url('./img/gray-star.png');
    background-size: cover;
    display: inline-block;
    margin-right: px2rem(10px);

    &.light {
      background-image: url('./img/light-star.png');
    }
  }
}

This is the end of this article about the implementation of the React star rating component. For more relevant React star rating content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • React uses antd's upload component to implement the file form submission function (complete code)
  • Solution to React pure function component setState not refreshing the page update
  • React implements dynamic pop-up window component
  • How to make React components full screen

<<:  Detailed explanation of how to use CMD command to operate MySql database

>>:  MySQL query duplicate data (delete duplicate data and keep the one with the smallest id as the only data)

Recommend

Specific use of MySQL internal temporary tables

Table of contents UNION Table initialization Exec...

Regular expression usage in CSS selectors

Yes, CSS has regular expressions too (Amen) Two p...

HTML basic summary recommendation (title)

HTML: Title Heading is defined by tags such as &l...

Docker deploys Mysql, .Net6, Sqlserver and other containers

Table of contents Install Docker on CentOS 8 1. U...

KTL tool realizes the method of synchronizing data from MySQL to MySQL

Use ktl tool to synchronize data from mysql to my...

Detailed explanation of how Nginx works

How Nginx works Nginx consists of a core and modu...

Vue Beginner's Guide: Creating the First Vue-cli Scaffolding Program

1. Vue--The first vue-cli program The development...

Element-ui directly clicks on the cell in the table to edit

Table of contents Achieve results Implementation ...

Conditional comments to determine the browser (IE series)

<!--[if IE 6]> Only IE6 can recognize <![...

Installation and configuration tutorial of MySQL 8.0.16 under Win10

1. Unzip MySQL 8.0.16 The dada folder and my.ini ...

Practice of multi-layer nested display of element table

There is a requirement for a list containing mult...

Docker builds jenkins+maven code building and deployment platform

Table of contents Docker Basic Concepts Docker in...

How to implement adaptive container with equal aspect ratio using CSS

When developing a mobile page recently, I encount...