UNPKG

@alicloud/console-components

Version:
47 lines (46 loc) 2.05 kB
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, others = __rest(props, ["className"]); var theme = useCssVar('--alicloudfe-components-theme').trim(); if (theme === 'hybridcloud' || theme === 'hybridcloud-dark' || theme === 'yunxiao' || theme === 'yunxiao-dark') { return (React.createElement(NextTag, __assign({ ref: ref, className: cls((_a = {}, _a[prefix + "tag-custom-" + color] = true, _a), className) }, others), children)); } return (React.createElement(NextTag, __assign({}, props, { ref: ref }), children)); }))); hoistNonReactStatics(Tag, NextTag); // @ts-ignore Tag.displayName = NextTag.displayName; export default Tag;