mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-22 20:01:59 +00:00
Update sample code
This commit is contained in:
@@ -0,0 +1,139 @@
|
||||
import { useState } from "react";
|
||||
import PropTypes from "prop-types";
|
||||
|
||||
const containerStyle = {
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
gap: "16px",
|
||||
};
|
||||
|
||||
const starContainerStyle = {
|
||||
display: "flex",
|
||||
};
|
||||
export default function StarRating({
|
||||
maxRating = 5,
|
||||
color = "#fcc419",
|
||||
size = 48,
|
||||
className = "",
|
||||
messages = [],
|
||||
defaultRating = 0,
|
||||
onSetRating,
|
||||
}) {
|
||||
const [rating, setRating] = useState(defaultRating);
|
||||
const [tempRating, setTempRating] = useState(0);
|
||||
|
||||
const handleRating = (rating) => {
|
||||
setRating(rating);
|
||||
|
||||
if (onSetRating) setRating(rating);
|
||||
};
|
||||
|
||||
const textStyle = {
|
||||
lineHeight: "1",
|
||||
margin: "0",
|
||||
color,
|
||||
fontSize: `${size / 1.5}px`,
|
||||
};
|
||||
|
||||
return (
|
||||
<div style={containerStyle} className={className}>
|
||||
<div style={starContainerStyle}>
|
||||
{Array.from({ length: maxRating }, (_, i) => (
|
||||
<span key={i}>
|
||||
<Star
|
||||
full={tempRating ? tempRating >= i + 1 : rating >= i + 1}
|
||||
onRate={() => handleRating(i + 1)}
|
||||
onHoverIn={() => setTempRating(i + 1)}
|
||||
onHoverOut={() => setTempRating(0)}
|
||||
color={color}
|
||||
size={size}
|
||||
/>
|
||||
</span>
|
||||
))}
|
||||
</div>
|
||||
<p style={textStyle}>
|
||||
{messages.length === maxRating
|
||||
? messages[tempRating ? tempRating - 1 : rating - 1]
|
||||
: tempRating || rating || ""}
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
function Star({ onRate, full, onHoverIn, onHoverOut, color, size }) {
|
||||
const starStyle = {
|
||||
width: `${size}px`,
|
||||
height: `${size}px`,
|
||||
display: "block",
|
||||
cursor: "pointer",
|
||||
};
|
||||
|
||||
return (
|
||||
<span
|
||||
role="button"
|
||||
style={starStyle}
|
||||
onClick={onRate}
|
||||
onMouseEnter={onHoverIn}
|
||||
onMouseLeave={onHoverOut}
|
||||
>
|
||||
{full ? (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 20 20"
|
||||
fill={color}
|
||||
stroke={color}
|
||||
>
|
||||
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
|
||||
</svg>
|
||||
) : (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
stroke={color}
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth="{2}"
|
||||
d="M11.049 2.927c.3-.921 1.603-.921 1.902 0l1.519 4.674a1 1 0 00.95.69h4.915c.969 0 1.371 1.24.588 1.81l-3.976 2.888a1 1 0 00-.363 1.118l1.518 4.674c.3.922-.755 1.688-1.538 1.118l-3.976-2.888a1 1 0 00-1.176 0l-3.976 2.888c-.783.57-1.838-.197-1.538-1.118l1.518-4.674a1 1 0 00-.363-1.118l-3.976-2.888c-.784-.57-.38-1.81.588-1.81h4.914a1 1 0 00.951-.69l1.519-4.674z"
|
||||
/>
|
||||
</svg>
|
||||
)}
|
||||
</span>
|
||||
);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
FULL STAR
|
||||
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 20 20"
|
||||
fill="#000"
|
||||
stroke="#000"
|
||||
>
|
||||
<path
|
||||
d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
||||
EMPTY STAR
|
||||
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
stroke="#000"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth="{2}"
|
||||
d="M11.049 2.927c.3-.921 1.603-.921 1.902 0l1.519 4.674a1 1 0 00.95.69h4.915c.969 0 1.371 1.24.588 1.81l-3.976 2.888a1 1 0 00-.363 1.118l1.518 4.674c.3.922-.755 1.688-1.538 1.118l-3.976-2.888a1 1 0 00-1.176 0l-3.976 2.888c-.783.57-1.838-.197-1.538-1.118l1.518-4.674a1 1 0 00-.363-1.118l-3.976-2.888c-.784-.57-.38-1.81.588-1.81h4.914a1 1 0 00.951-.69l1.519-4.674z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
*/
|
||||
@@ -346,36 +346,3 @@ SPACING SYSTEM (px)
|
||||
FONT SIZE SYSTEM (px)
|
||||
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 /52 / 62 / 74 / 86 / 98
|
||||
*/
|
||||
|
||||
/*
|
||||
FULL STAR
|
||||
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 20 20"
|
||||
fill="#000"
|
||||
stroke="#000"
|
||||
>
|
||||
<path
|
||||
d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
||||
EMPTY STAR
|
||||
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
stroke="#000"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth="{2}"
|
||||
d="M11.049 2.927c.3-.921 1.603-.921 1.902 0l1.519 4.674a1 1 0 00.95.69h4.915c.969 0 1.371 1.24.588 1.81l-3.976 2.888a1 1 0 00-.363 1.118l1.518 4.674c.3.922-.755 1.688-1.538 1.118l-3.976-2.888a1 1 0 00-1.176 0l-3.976 2.888c-.783.57-1.838-.197-1.538-1.118l1.518-4.674a1 1 0 00-.363-1.118l-3.976-2.888c-.784-.57-.38-1.81.588-1.81h4.914a1 1 0 00.951-.69l1.519-4.674z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
*/
|
||||
|
||||
@@ -1,10 +1,28 @@
|
||||
import React from 'react'
|
||||
import ReactDOM from 'react-dom/client'
|
||||
import App from './App.jsx'
|
||||
import './index.css'
|
||||
import React from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import App from "./App.jsx";
|
||||
// import "./index.css";
|
||||
import StarRating from "./StarRating.jsx";
|
||||
import { useState } from "react";
|
||||
|
||||
ReactDOM.createRoot(document.getElementById('root')).render(
|
||||
function Test() {
|
||||
const [movieRating, setMovieRating] = useState(0);
|
||||
|
||||
return (
|
||||
<div>
|
||||
<StarRating color="blue" maxRating={10} />
|
||||
<p>The move was rated {movieRating} stars</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
ReactDOM.createRoot(document.getElementById("root")).render(
|
||||
<React.StrictMode>
|
||||
<App />
|
||||
</React.StrictMode>,
|
||||
)
|
||||
{/* <App /> */}
|
||||
<StarRating
|
||||
maxRating={5}
|
||||
messages={["Terrible", "Bad", "Okay", "Good", "Amazing"]}
|
||||
/>
|
||||
<StarRating size={24} color="red" className="test" defaultRating={3} />
|
||||
</React.StrictMode>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user