2016-09-21 11:54:53 +08:00
|
|
|
import React from 'react';
|
2016-08-10 09:46:56 +08:00
|
|
|
import { PropTypes } from 'react';
|
2016-03-30 13:20:03 +08:00
|
|
|
import RcRate from 'rc-rate';
|
2017-02-21 14:44:13 +08:00
|
|
|
import Icon from '../icon';
|
2016-03-30 13:20:03 +08:00
|
|
|
|
2016-08-10 09:46:56 +08:00
|
|
|
export interface RateProps {
|
|
|
|
prefixCls?: string;
|
|
|
|
count?: number;
|
|
|
|
value?: number;
|
|
|
|
defaultValue?: number;
|
|
|
|
allowHalf?: boolean;
|
|
|
|
disabled?: boolean;
|
|
|
|
onChange?: (value: number) => any;
|
2017-02-21 14:44:13 +08:00
|
|
|
onHoverChange?: (value: number) => any;
|
2017-03-06 14:23:38 +08:00
|
|
|
character?: React.ReactNode;
|
2017-02-21 14:44:13 +08:00
|
|
|
className?: string;
|
|
|
|
style?: React.CSSProperties;
|
2016-08-10 09:46:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default class Rate extends React.Component<RateProps, any> {
|
2016-03-30 13:20:03 +08:00
|
|
|
static propTypes = {
|
|
|
|
prefixCls: PropTypes.string,
|
2017-03-06 14:23:38 +08:00
|
|
|
character: PropTypes.node,
|
2016-03-30 13:20:03 +08:00
|
|
|
};
|
2016-03-31 14:43:38 +08:00
|
|
|
static defaultProps = {
|
2016-03-30 13:20:03 +08:00
|
|
|
prefixCls: 'ant-rate',
|
2017-03-06 14:23:38 +08:00
|
|
|
character: <Icon type="star" />,
|
2016-03-30 13:20:03 +08:00
|
|
|
};
|
|
|
|
render() {
|
|
|
|
return <RcRate {...this.props} />;
|
|
|
|
}
|
|
|
|
}
|