Material UI 提供的 Rating 组件是一种用于选择评分的 UI 组件,常用于用户反馈、产品评分等场景。它不仅支持简单的星级评分,还可以进行自定义样式、禁用状态等设置。本文将详细介绍 Rating 组件的使用,包括基本用法、属性、方法,以及与其他组件结合的示例。
如果尚未安装 Material UI,可以通过以下命令进行安装:
npm install @mui/material @emotion/react @emotion/styled
以下是一个基本的 Rating 组件示例:
import React from 'react';
import Rating from '@mui/material/Rating';
import Box from '@mui/material/Box';
function BasicRating() {
const [value, setValue] = React.useState(2);
return (
<Box>
<Rating
name="simple-controlled"
value={value}
onChange={(event, newValue) => {
setValue(newValue);
}}
/>
</Box>
);
}
export default BasicRating;
name
用于唯一标识该评分组件,value
是当前评分值,onChange
事件处理函数在评分变化时被调用。true
时用户无法更改评分。true
时评分组件不可用。import React from 'react';
import Rating from '@mui/material/Rating';
import Box from '@mui/material/Box';
function PrecisionRating() {
const [value, setValue] = React.useState(2.5);
return (
<Box>
<Rating
name="precision-rating"
value={value}
precision={0.5}
onChange={(event, newValue) => {
setValue(newValue);
}}
/>
</Box>
);
}
export default PrecisionRating;
可以将 Rating 组件与 FormControl 结合,来创建一个更复杂的表单结构。
import React from 'react';
import { FormControl, FormLabel, Rating, FormHelperText } from '@mui/material';
function RatingWithFormControl() {
const [value, setValue] = React.useState(null);
const [error, setError] = React.useState(false);
const handleChange = (event, newValue) => {
setValue(newValue);
if (newValue === null) {
setError(true);
} else {
setError(false);
}
};
return (
<FormControl error={error}>
<FormLabel component="legend">评分</FormLabel>
<Rating
name="controlled-rating"
value={value}
onChange={handleChange}
/>
{error && <FormHelperText>评分是必需的</FormHelperText>}
</FormControl>
);
}
export default RatingWithFormControl;
将 Rating 组件放入 Dialog 中,可以在弹窗中请求用户评分。
import React, { useState } from 'react';
import { Fab, Dialog, DialogTitle, DialogContent, DialogActions, Button, Rating } from '@mui/material';
import AddIcon from '@mui/icons-material/Add';
function RatingInDialog() {
const [open, setOpen] = useState(false);
const [value, setValue] = useState(3);
const handleClickOpen = () => {
setOpen(true);
};
const handleClose = () => {
setOpen(false);
};
return (
<div>
<Fab color="primary" onClick={handleClickOpen}>
<AddIcon />
</Fab>
<Dialog open={open} onClose={handleClose}>
<DialogTitle>请给我们评分</DialogTitle>
<DialogContent>
<Rating
name="dialog-rating"
value={value}
onChange={(event, newValue) => {
setValue(newValue);
}}
/>
</DialogContent>
<DialogActions>
<Button onClick={handleClose} color="primary">取消</Button>
<Button onClick={handleClose} color="primary">提交</Button>
</DialogActions>
</Dialog>
</div>
);
}
export default RatingInDialog;
您可以使用 sx
属性或自定义 CSS 来改变 Rating 组件的样式。
sx
属性import React from 'react';
import Rating from '@mui/material/Rating';
import Box from '@mui/material/Box';
function StyledRating() {
const [value, setValue] = React.useState(3);
return (
<Box>
<Rating
name="styled-rating"
value={value}
onChange={(event, newValue) => {
setValue(newValue);
}}
sx={{
'& .MuiRating-iconFilled': {
color: 'gold',
},
'& .MuiRating-iconHover': {
color: 'orange',
},
}}
/>
</Box>
);
}
export default StyledRating;
sx
属性自定义 Rating 的填充色和悬停色,增强用户体验。在本文中,我们详细探讨了 Material UI 中 Rating 组件的使用,包括基本用法、属性、与其他组件结合的示例等。通过这些示例,您可以清晰地了解如何在项目中实现 Rating,并根据需要进行自定义。
希望这篇文章能帮助您更好地理解和使用 Material UI 的 Rating 组件。如果您有任何问题或需要进一步的帮助,请随时与我交流!