@alicloudfe/components
Version:
A react component library for aliyun
55 lines (54 loc) • 2.57 kB
JavaScript
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
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 { Tag as NextTag } from '@alifd/next';
import React from 'react';
import { withThemeClass } from '../utils/withThemeClass';
import hoistNonReactStatics from 'hoist-non-react-statics';
import { wrap } from './WindColorfulTag';
import { useCssVar } from '../utils/useCssVar';
import cls from 'classnames';
var Tag = wrap(withThemeClass(React.forwardRef(function (props, ref) {
var _a;
var children = props.children, color = props.color, _b = props.prefix, prefix = _b === void 0 ? 'next-' : _b;
var className = props.className, icon = props.icon, hoverUnchangable = props.hoverUnchangable, others = __rest(props, ["className", "icon", "hoverUnchangable"]);
var theme = useCssVar('--alicloudfe-components-theme').trim();
if (theme === 'hybridcloud' ||
theme === 'hybridcloud-dark' ||
theme === 'yunxiao' ||
theme === 'yunxiao-dark' ||
theme === 'yunxiao-v5') {
return (React.createElement(NextTag, __assign({ ref: ref, className: cls((_a = {},
_a[prefix + "tag-custom-" + color] = true,
_a[prefix + "tag-has-icon"] = icon,
_a[prefix + "tag-hover-unchange"] = theme.startsWith('yunxiao') && hoverUnchangable,
_a), className) }, others),
icon && React.createElement("span", { className: prefix + "tag-icon" }, icon),
icon && React.createElement("span", { className: prefix + "tag-content" }, children),
!icon && children));
}
return (React.createElement(NextTag, __assign({}, props, { ref: ref }), children));
})));
hoistNonReactStatics(Tag, NextTag);
// @ts-ignore
Tag.displayName = NextTag.displayName;
export default Tag;