75 lines
2.9 KiB
JavaScript
75 lines
2.9 KiB
JavaScript
"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 classNames from 'classnames';
|
|
import RcSegmented from 'rc-segmented';
|
|
import * as React from 'react';
|
|
import { ConfigContext } from '../config-provider';
|
|
import useSize from '../config-provider/hooks/useSize';
|
|
import useStyle from './style';
|
|
function isSegmentedLabeledOptionWithIcon(option) {
|
|
return typeof option === 'object' && !!(option === null || option === void 0 ? void 0 : option.icon);
|
|
}
|
|
const Segmented = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
className,
|
|
rootClassName,
|
|
block,
|
|
options = [],
|
|
size: customSize = 'middle',
|
|
style
|
|
} = props,
|
|
restProps = __rest(props, ["prefixCls", "className", "rootClassName", "block", "options", "size", "style"]);
|
|
const {
|
|
getPrefixCls,
|
|
direction,
|
|
segmented
|
|
} = React.useContext(ConfigContext);
|
|
const prefixCls = getPrefixCls('segmented', customizePrefixCls);
|
|
// Style
|
|
const [wrapSSR, hashId] = useStyle(prefixCls);
|
|
// ===================== Size =====================
|
|
const mergedSize = useSize(customSize);
|
|
// syntactic sugar to support `icon` for Segmented Item
|
|
const extendedOptions = React.useMemo(() => options.map(option => {
|
|
if (isSegmentedLabeledOptionWithIcon(option)) {
|
|
const {
|
|
icon,
|
|
label
|
|
} = option,
|
|
restOption = __rest(option, ["icon", "label"]);
|
|
return Object.assign(Object.assign({}, restOption), {
|
|
label: /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", {
|
|
className: `${prefixCls}-item-icon`
|
|
}, icon), label && /*#__PURE__*/React.createElement("span", null, label))
|
|
});
|
|
}
|
|
return option;
|
|
}), [options, prefixCls]);
|
|
const cls = classNames(className, rootClassName, segmented === null || segmented === void 0 ? void 0 : segmented.className, {
|
|
[`${prefixCls}-block`]: block,
|
|
[`${prefixCls}-sm`]: mergedSize === 'small',
|
|
[`${prefixCls}-lg`]: mergedSize === 'large'
|
|
}, hashId);
|
|
const mergedStyle = Object.assign(Object.assign({}, segmented === null || segmented === void 0 ? void 0 : segmented.style), style);
|
|
return wrapSSR( /*#__PURE__*/React.createElement(RcSegmented, Object.assign({}, restProps, {
|
|
className: cls,
|
|
style: mergedStyle,
|
|
options: extendedOptions,
|
|
ref: ref,
|
|
prefixCls: prefixCls,
|
|
direction: direction
|
|
})));
|
|
});
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
Segmented.displayName = 'Segmented';
|
|
}
|
|
export default Segmented; |