You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
143 lines
3.7 KiB
143 lines
3.7 KiB
import { inject, ref, HTMLAttributes, defineComponent, App, VNodeTypes, watchEffect } from 'vue';
|
|
import classNames from '../_util/classNames';
|
|
import PropTypes from '../_util/vue-types';
|
|
import CloseOutlined from '@ant-design/icons-vue/CloseOutlined';
|
|
import Wave from '../_util/wave';
|
|
import {
|
|
PresetColorTypes,
|
|
PresetStatusColorTypes,
|
|
PresetColorType,
|
|
PresetStatusColorType,
|
|
} from '../_util/colors';
|
|
import { LiteralUnion } from '../_util/type';
|
|
import { defaultConfigProvider } from '../config-provider';
|
|
import CheckableTag from './CheckableTag';
|
|
|
|
const PresetColorRegex = new RegExp(`^(${PresetColorTypes.join('|')})(-inverse)?$`);
|
|
const PresetStatusColorRegex = new RegExp(`^(${PresetStatusColorTypes.join('|')})$`);
|
|
|
|
export interface TagProps extends HTMLAttributes {
|
|
prefixCls?: string;
|
|
color?: LiteralUnion<PresetColorType | PresetStatusColorType, string>;
|
|
closable?: boolean;
|
|
closeIcon?: VNodeTypes;
|
|
visible?: boolean;
|
|
onClose?: (e: MouseEvent) => void;
|
|
icon?: VNodeTypes;
|
|
}
|
|
|
|
const Tag = defineComponent({
|
|
name: 'ATag',
|
|
emits: ['update:visible', 'close'],
|
|
setup(props: TagProps, { slots, emit, attrs }) {
|
|
const { getPrefixCls } = inject('configProvider', defaultConfigProvider);
|
|
|
|
const visible = ref(true);
|
|
|
|
watchEffect(() => {
|
|
if (props.visible !== undefined) {
|
|
visible.value = props.visible!;
|
|
}
|
|
});
|
|
|
|
const handleCloseClick = (e: MouseEvent) => {
|
|
e.stopPropagation();
|
|
emit('update:visible', false);
|
|
emit('close', e);
|
|
|
|
if (e.defaultPrevented) {
|
|
return;
|
|
}
|
|
if (props.visible === undefined) {
|
|
visible.value = false;
|
|
}
|
|
};
|
|
|
|
const isPresetColor = (): boolean => {
|
|
const { color } = props;
|
|
if (!color) {
|
|
return false;
|
|
}
|
|
return PresetColorRegex.test(color) || PresetStatusColorRegex.test(color);
|
|
};
|
|
|
|
return () => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
icon,
|
|
color,
|
|
closeIcon = slots.closeIcon?.(),
|
|
closable = false,
|
|
} = props;
|
|
|
|
const presetColor = isPresetColor();
|
|
const prefixCls = getPrefixCls('tag', customizePrefixCls);
|
|
|
|
const renderCloseIcon = () => {
|
|
if (closable) {
|
|
return closeIcon ? (
|
|
<div class={`${prefixCls}-close-icon`} onClick={handleCloseClick}>
|
|
{closeIcon}
|
|
</div>
|
|
) : (
|
|
<CloseOutlined class={`${prefixCls}-close-icon`} onClick={handleCloseClick} />
|
|
);
|
|
}
|
|
return null;
|
|
};
|
|
|
|
const tagStyle = {
|
|
backgroundColor: color && !isPresetColor() ? color : undefined,
|
|
};
|
|
|
|
const tagClassName = classNames(prefixCls, {
|
|
[`${prefixCls}-${color}`]: presetColor,
|
|
[`${prefixCls}-has-color`]: color && !presetColor,
|
|
[`${prefixCls}-hidden`]: !visible.value,
|
|
});
|
|
|
|
const iconNode = icon || null;
|
|
const children = slots.default?.();
|
|
const kids = iconNode ? (
|
|
<>
|
|
{iconNode}
|
|
<span>{children}</span>
|
|
</>
|
|
) : (
|
|
children
|
|
);
|
|
|
|
const isNeedWave = 'onClick' in attrs;
|
|
|
|
const tagNode = (
|
|
<span v-show={visible.value} class={tagClassName} style={tagStyle}>
|
|
{kids}
|
|
{renderCloseIcon()}
|
|
</span>
|
|
);
|
|
|
|
return isNeedWave ? <Wave>{tagNode}</Wave> : tagNode;
|
|
};
|
|
},
|
|
});
|
|
|
|
Tag.props = {
|
|
prefixCls: PropTypes.string,
|
|
color: PropTypes.string,
|
|
closable: PropTypes.looseBool.def(false),
|
|
closeIcon: PropTypes.any,
|
|
visible: PropTypes.looseBool,
|
|
onClose: PropTypes.func,
|
|
icon: PropTypes.any,
|
|
};
|
|
|
|
Tag.CheckableTag = CheckableTag;
|
|
|
|
Tag.install = (app: App) => {
|
|
app.component(Tag.name, Tag);
|
|
app.component(CheckableTag.name, CheckableTag);
|
|
return app;
|
|
};
|
|
|
|
export default Tag;
|