12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- "use client";
- var __rest = this && this.__rest || function (s, e) {
- var t = {};
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
- }
- return t;
- };
- import * as React from 'react';
- import StarFilled from "@ant-design/icons/es/icons/StarFilled";
- import classNames from 'classnames';
- import RcRate from 'rc-rate';
- import { ConfigContext } from '../config-provider';
- import Tooltip from '../tooltip';
- import useStyle from './style';
- import DisabledContext from '../config-provider/DisabledContext';
- const Rate = /*#__PURE__*/React.forwardRef((props, ref) => {
- const {
- prefixCls,
- className,
- rootClassName,
- style,
- tooltips,
- character = /*#__PURE__*/React.createElement(StarFilled, null),
- disabled: customDisabled
- } = props,
- rest = __rest(props, ["prefixCls", "className", "rootClassName", "style", "tooltips", "character", "disabled"]);
- const characterRender = (node, {
- index
- }) => {
- if (!tooltips) {
- return node;
- }
- return /*#__PURE__*/React.createElement(Tooltip, {
- title: tooltips[index]
- }, node);
- };
- const {
- getPrefixCls,
- direction,
- rate
- } = React.useContext(ConfigContext);
- const ratePrefixCls = getPrefixCls('rate', prefixCls);
- // Style
- const [wrapCSSVar, hashId, cssVarCls] = useStyle(ratePrefixCls);
- const mergedStyle = Object.assign(Object.assign({}, rate === null || rate === void 0 ? void 0 : rate.style), style);
- // ===================== Disabled =====================
- const disabled = React.useContext(DisabledContext);
- const mergedDisabled = customDisabled !== null && customDisabled !== void 0 ? customDisabled : disabled;
- return wrapCSSVar(/*#__PURE__*/React.createElement(RcRate, Object.assign({
- ref: ref,
- character: character,
- characterRender: characterRender,
- disabled: mergedDisabled
- }, rest, {
- className: classNames(className, rootClassName, hashId, cssVarCls, rate === null || rate === void 0 ? void 0 : rate.className),
- style: mergedStyle,
- prefixCls: ratePrefixCls,
- direction: direction
- })));
- });
- if (process.env.NODE_ENV !== 'production') {
- Rate.displayName = 'Rate';
- }
- export default Rate;
|