• Rate 评分

    评分组件。

    何时使用

    代码演示

    最简单的用法。
    expand code expand code
    import { Rate } from 'choerodon-ui';
    
    ReactDOM.render(<Rate />, mountNode);
    
    给评分组件加上文案展示。
    expand code expand code
    import { Rate } from 'choerodon-ui';
    
    class Rater extends React.Component {
      state = {
        value: 3,
      }
    
      handleChange = (value) => {
        this.setState({ value });
      }
    
      render() {
        const { value } = this.state;
        return (
          <span>
            <Rate onChange={this.handleChange} value={value} />
            {value && <span className="ant-rate-text">{value} stars</span>}
          </span>
        );
      }
    }
    
    ReactDOM.render(<Rater />, mountNode);
    
    支持允许或者禁用清除。
    expand code expand code
    import { Rate } from 'choerodon-ui';
    
    ReactDOM.render(
      <div>
        <Rate defaultValue={3} /> allowClear: true
        <br />
        <Rate allowClear={false} defaultValue={3} /> allowClear: false
      </div>,
      mountNode);
    
    支持选中半星。
    expand code expand code
    import { Rate } from 'choerodon-ui';
    
    ReactDOM.render(<Rate allowHalf defaultValue={2.5} />, mountNode);
    
    只读,无法进行鼠标交互。
    expand code expand code
    import { Rate } from 'choerodon-ui';
    
    ReactDOM.render(<Rate disabled defaultValue={2} />, mountNode);
    
    可以将星星替换为其他字符,比如字母,数字,字体图标甚至中文。
    expand code expand code
    import { Rate, Icon } from 'choerodon-ui';
    
    ReactDOM.render(
      <div>
        <Rate character={<Icon type="heart" />} allowHalf />
        <br />
        <Rate character="A" allowHalf style={{ fontSize: 36 }} />
        <br />
        <Rate character="好" allowHalf />
      </div>,
      mountNode);
    

    API

    属性 说明 类型 默认值
    allowClear 是否允许再次点击后清除 boolean true
    allowHalf 是否允许半选 boolean false
    autoFocus 自动获取焦点 boolean false
    character 自定义字符 ReactNode <Icon type="star" />
    className 自定义样式类名 string -
    count star 总数 number 5
    defaultValue 默认值 number 0
    disabled 只读,无法进行交互 boolean false
    style 自定义样式对象 object -
    value 当前数,受控值 number -
    onBlur 失去焦点时的回调 Function() -
    onChange 选择时的回调 Function(value: number) -
    onFocus 获取焦点时的回调 Function() -
    onHoverChange 鼠标经过时数值变化的回调 Function(value: number) -
    onKeyDown 按键回调 Function(event) -

    方法

    名称 描述
    blur() 移除焦点
    focus() 获取焦点