|
|
|
import omit from 'omit.js';
|
|
|
|
import PropTypes from '../_util/vue-types';
|
|
|
|
import { getOptionProps, getComponentFromProp } from '../_util/props-util';
|
|
|
|
import { ConfigConsumerProps } from '../config-provider';
|
|
|
|
import VcRate from '../vc-rate';
|
|
|
|
import Icon from '../icon';
|
|
|
|
import Tooltip from '../tooltip';
|
|
|
|
import Base from '../base';
|
|
|
|
|
|
|
|
export const RateProps = {
|
|
|
|
prefixCls: PropTypes.string,
|
|
|
|
count: PropTypes.number,
|
|
|
|
value: PropTypes.value,
|
|
|
|
defaultValue: PropTypes.value,
|
|
|
|
allowHalf: PropTypes.bool,
|
|
|
|
allowClear: PropTypes.bool,
|
|
|
|
tooltips: PropTypes.arrayOf(PropTypes.string),
|
|
|
|
disabled: PropTypes.bool,
|
|
|
|
character: PropTypes.any,
|
|
|
|
autoFocus: PropTypes.bool,
|
|
|
|
};
|
|
|
|
|
|
|
|
const Rate = {
|
|
|
|
name: 'ARate',
|
|
|
|
model: {
|
|
|
|
prop: 'value',
|
|
|
|
event: 'change',
|
|
|
|
},
|
|
|
|
props: RateProps,
|
|
|
|
inject: {
|
|
|
|
configProvider: { default: () => ({}) },
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
focus() {
|
|
|
|
this.$refs.refRate.focus();
|
|
|
|
},
|
|
|
|
blur() {
|
|
|
|
this.$refs.refRate.blur();
|
|
|
|
},
|
|
|
|
characterRender(node, { index }) {
|
|
|
|
const { tooltips } = this.$props;
|
|
|
|
if (!tooltips) return node;
|
|
|
|
const tooltipsProps = {
|
|
|
|
props: {
|
|
|
|
title: tooltips[index],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
return <Tooltip {...tooltipsProps}>{node}</Tooltip>;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
const { prefixCls: customizePrefixCls, ...restProps } = getOptionProps(this);
|
|
|
|
const getPrefixCls = this.configProvider.getPrefixCls || ConfigConsumerProps.getPrefixCls;
|
|
|
|
const prefixCls = getPrefixCls('rate', customizePrefixCls);
|
|
|
|
|
|
|
|
const character = getComponentFromProp(this, 'character') || (
|
|
|
|
<Icon type="star" theme="filled" />
|
|
|
|
);
|
|
|
|
const rateProps = {
|
|
|
|
props: {
|
|
|
|
character,
|
|
|
|
characterRender: this.characterRender,
|
|
|
|
prefixCls,
|
|
|
|
...omit(restProps, ['tooltips']),
|
|
|
|
},
|
|
|
|
on: this.$listeners,
|
|
|
|
ref: 'refRate',
|
|
|
|
};
|
|
|
|
return <VcRate {...rateProps} />;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
/* istanbul ignore next */
|
|
|
|
Rate.install = function(Vue) {
|
|
|
|
Vue.use(Base);
|
|
|
|
Vue.component(Rate.name, Rate);
|
|
|
|
};
|
|
|
|
export default Rate;
|