import PropTypes from '../_util/vue-types'; import ScrollNumber from './ScrollNumber'; import classNames from '../_util/classNames'; import { getPropsSlot, flattenChildren } from '../_util/props-util'; import { cloneElement } from '../_util/vnode'; import { getTransitionProps, Transition } from '../_util/transition'; import type { ExtractPropTypes, CSSProperties } from 'vue'; import { defineComponent, computed, ref, watch } from 'vue'; import { tuple } from '../_util/type'; import Ribbon from './Ribbon'; import { isPresetColor } from './utils'; import useConfigInject from '../_util/hooks/useConfigInject'; import isNumeric from '../_util/isNumeric'; export const badgeProps = { /** Number to show in badge */ count: PropTypes.any, showZero: PropTypes.looseBool, /** Max count to show */ overflowCount: PropTypes.number.def(99), /** whether to show red dot without number */ dot: PropTypes.looseBool, prefixCls: PropTypes.string, scrollNumberPrefixCls: PropTypes.string, status: PropTypes.oneOf(tuple('success', 'processing', 'default', 'error', 'warning')), // sync antd@4.6.0 size: PropTypes.oneOf(tuple('default', 'small')).def('default'), color: PropTypes.string, text: PropTypes.any, offset: PropTypes.arrayOf(PropTypes.oneOfType([String, Number])), numberStyle: PropTypes.style, title: PropTypes.string, }; export type BadgeProps = Partial>; export default defineComponent({ name: 'ABadge', Ribbon, inheritAttrs: false, props: badgeProps, slots: ['text', 'count'], setup(props, { slots, attrs }) { const { prefixCls, direction } = useConfigInject('badge', props); // ================================ Misc ================================ const numberedDisplayCount = computed(() => { return ( (props.count as number) > (props.overflowCount as number) ? `${props.overflowCount}+` : props.count ) as string | number | null; }); const hasStatus = computed( () => (props.status !== null && props.status !== undefined) || (props.color !== null && props.color !== undefined), ); const isZero = computed( () => numberedDisplayCount.value === '0' || numberedDisplayCount.value === 0, ); const showAsDot = computed(() => (props.dot && !isZero.value) || hasStatus.value); const mergedCount = computed(() => (showAsDot.value ? '' : numberedDisplayCount.value)); const isHidden = computed(() => { const isEmpty = mergedCount.value === null || mergedCount.value === undefined || mergedCount.value === ''; return (isEmpty || (isZero.value && !props.showZero)) && !showAsDot.value; }); // Count should be cache in case hidden change it const livingCount = ref(props.count); // We need cache count since remove motion should not change count display const displayCount = ref(mergedCount.value); // We will cache the dot status to avoid shaking on leaved motion const isDotRef = ref(showAsDot.value); watch( [() => props.count, mergedCount, showAsDot], () => { if (!isHidden.value) { livingCount.value = props.count; displayCount.value = mergedCount.value; isDotRef.value = showAsDot.value; } }, { immediate: true }, ); // Shared styles const statusCls = computed(() => ({ [`${prefixCls.value}-status-dot`]: hasStatus.value, [`${prefixCls.value}-status-${props.status}`]: !!props.status, [`${prefixCls.value}-status-${props.color}`]: isPresetColor(props.color), })); const statusStyle = computed(() => { if (props.color && !isPresetColor(props.color)) { return { background: props.color }; } else { return {}; } }); const scrollNumberCls = computed(() => ({ [`${prefixCls.value}-dot`]: isDotRef.value, [`${prefixCls.value}-count`]: !isDotRef.value, [`${prefixCls.value}-count-sm`]: props.size === 'small', [`${prefixCls.value}-multiple-words`]: !isDotRef.value && displayCount.value && displayCount.value.toString().length > 1, [`${prefixCls.value}-status-${props.status}`]: !!props.status, [`${prefixCls.value}-status-${props.color}`]: isPresetColor(props.color), })); return () => { const { offset, title, color } = props; const style = attrs.style as CSSProperties; const text = getPropsSlot(slots, props, 'text'); const pre = prefixCls.value; const count = livingCount.value; let children = flattenChildren(slots.default?.()); children = children.length ? children : null; const visible = !!(!isHidden.value || slots.count); // =============================== Styles =============================== const mergedStyle = (() => { if (!offset) { return { ...style }; } const offsetStyle: CSSProperties = { marginTop: isNumeric(offset[1]) ? `${offset[1]}px` : offset[1], }; if (direction.value === 'rtl') { offsetStyle.left = `${parseInt(offset[0] as string, 10)}px`; } else { offsetStyle.right = `${-parseInt(offset[0] as string, 10)}px`; } return { ...offsetStyle, ...style, }; })(); // =============================== Render =============================== // >>> Title const titleNode = title ?? (typeof count === 'string' || typeof count === 'number' ? count : undefined); // >>> Status Text const statusTextNode = visible || !text ? null : {text}; // >>> Display Component const displayNode = typeof count === 'object' || (count === undefined && slots.count) ? cloneElement( count ?? slots.count?.(), { style: mergedStyle, }, false, ) : null; const badgeClassName = classNames( pre, { [`${pre}-status`]: hasStatus.value, [`${pre}-not-a-wrapper`]: !children, [`${pre}-rtl`]: direction.value === 'rtl', }, attrs.class, ); // if (!children && hasStatus.value) { const statusTextColor = mergedStyle.color; return ( {text} ); } const transitionProps = getTransitionProps(children ? `${pre}-zoom` : '', { appear: false, }); let scrollNumberStyle: CSSProperties = { ...mergedStyle, ...props.numberStyle }; if (color && !isPresetColor(color)) { scrollNumberStyle = scrollNumberStyle || {}; scrollNumberStyle.background = color; } return ( {children} {displayNode} {statusTextNode} ); }; }, });