vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
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.
61 lines
1.8 KiB
61 lines
1.8 KiB
import { computed, defineComponent, reactive } from 'vue'; |
|
import { flattenChildren } from '../_util/props-util'; |
|
import useConfigInject from '../config-provider/hooks/useConfigInject'; |
|
import { useToken } from '../theme/internal'; |
|
import type { ExtractPropTypes, PropType } from 'vue'; |
|
import type { SizeType } from '../config-provider'; |
|
import devWarning from '../vc-util/devWarning'; |
|
import createContext from '../_util/createContext'; |
|
|
|
export const buttonGroupProps = () => ({ |
|
prefixCls: String, |
|
size: { |
|
type: String as PropType<SizeType>, |
|
}, |
|
}); |
|
|
|
export type ButtonGroupProps = Partial<ExtractPropTypes<ReturnType<typeof buttonGroupProps>>>; |
|
export const GroupSizeContext = createContext<{ |
|
size: SizeType; |
|
}>(); |
|
export default defineComponent({ |
|
compatConfig: { MODE: 3 }, |
|
name: 'AButtonGroup', |
|
props: buttonGroupProps(), |
|
setup(props, { slots }) { |
|
const { prefixCls, direction } = useConfigInject('btn-group', props); |
|
const [, , hashId] = useToken(); |
|
GroupSizeContext.useProvide( |
|
reactive({ |
|
size: computed(() => props.size), |
|
}), |
|
); |
|
const classes = computed(() => { |
|
const { size } = props; |
|
let sizeCls = ''; |
|
switch (size) { |
|
case 'large': |
|
sizeCls = 'lg'; |
|
break; |
|
case 'small': |
|
sizeCls = 'sm'; |
|
break; |
|
case 'middle': |
|
case undefined: |
|
break; |
|
default: |
|
// eslint-disable-next-line no-console |
|
devWarning(!size, 'Button.Group', 'Invalid prop `size`.'); |
|
} |
|
return { |
|
[`${prefixCls.value}`]: true, |
|
[`${prefixCls.value}-${sizeCls}`]: sizeCls, |
|
[`${prefixCls.value}-rtl`]: direction.value === 'rtl', |
|
[hashId.value]: true, |
|
}; |
|
}); |
|
return () => { |
|
return <div class={classes.value}>{flattenChildren(slots.default?.())}</div>; |
|
}; |
|
}, |
|
});
|
|
|