mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-28 12:26:35 +08:00
83 lines
1.9 KiB
TypeScript
83 lines
1.9 KiB
TypeScript
import type { PropType, CSSProperties } from 'vue';
|
|
import { isDef, createNamespace } from '../utils';
|
|
import { isNumeric } from '../utils/validate/number';
|
|
|
|
const [createComponent, bem] = createNamespace('badge');
|
|
|
|
export default createComponent({
|
|
props: {
|
|
dot: Boolean,
|
|
max: [Number, String],
|
|
color: String,
|
|
offset: (Array as unknown) as PropType<[number, number]>,
|
|
content: [Number, String],
|
|
tag: {
|
|
type: String as PropType<keyof HTMLElementTagNameMap>,
|
|
default: 'div',
|
|
},
|
|
},
|
|
|
|
setup(props, { slots }) {
|
|
const hasContent = () =>
|
|
!!(slots.content || (isDef(props.content) && props.content !== ''));
|
|
|
|
const renderContent = () => {
|
|
const { dot, max, content } = props;
|
|
|
|
if (!dot && hasContent()) {
|
|
if (slots.content) {
|
|
return slots.content();
|
|
}
|
|
|
|
if (isDef(max) && isNumeric(content!) && +content > max) {
|
|
return `${max}+`;
|
|
}
|
|
|
|
return content;
|
|
}
|
|
};
|
|
|
|
const renderBadge = () => {
|
|
if (hasContent() || props.dot) {
|
|
const style: CSSProperties = {
|
|
background: props.color,
|
|
};
|
|
|
|
if (props.offset) {
|
|
const [x, y] = props.offset;
|
|
if (slots.default) {
|
|
style.top = `${y}px`;
|
|
style.right = `${-x}px`;
|
|
} else {
|
|
style.marginTop = `${y}px`;
|
|
style.marginLeft = `${x}px`;
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div
|
|
class={bem({ dot: props.dot, fixed: !!slots.default })}
|
|
style={style}
|
|
>
|
|
{renderContent()}
|
|
</div>
|
|
);
|
|
}
|
|
};
|
|
|
|
return () => {
|
|
if (slots.default) {
|
|
const { tag } = props;
|
|
return (
|
|
<tag class={bem('wrapper')}>
|
|
{slots.default()}
|
|
{renderBadge()}
|
|
</tag>
|
|
);
|
|
}
|
|
|
|
return renderBadge();
|
|
};
|
|
},
|
|
});
|