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.
50 lines
1.4 KiB
50 lines
1.4 KiB
import type { ExtractPropTypes, PropType } from 'vue';
|
|
import { computed, defineComponent } from 'vue';
|
|
import classNames from '../_util/classNames';
|
|
import useConfigInject from '../config-provider/hooks/useConfigInject';
|
|
import { initDefaultProps } from '../_util/props-util';
|
|
import Element, { skeletonElementProps } from './Element';
|
|
import useStyle from './style';
|
|
|
|
export const skeletonButtonProps = () => {
|
|
return {
|
|
...skeletonElementProps(),
|
|
size: String as PropType<'large' | 'small' | 'default'>,
|
|
block: Boolean,
|
|
};
|
|
};
|
|
|
|
export type SkeletonButtonProps = Partial<ExtractPropTypes<ReturnType<typeof skeletonButtonProps>>>;
|
|
|
|
const SkeletonButton = defineComponent({
|
|
compatConfig: { MODE: 3 },
|
|
name: 'ASkeletonButton',
|
|
props: initDefaultProps(skeletonButtonProps(), {
|
|
size: 'default',
|
|
}),
|
|
setup(props) {
|
|
const { prefixCls } = useConfigInject('skeleton', props);
|
|
const [wrapSSR, hashId] = useStyle(prefixCls);
|
|
const cls = computed(() =>
|
|
classNames(
|
|
prefixCls.value,
|
|
`${prefixCls.value}-element`,
|
|
{
|
|
[`${prefixCls.value}-active`]: props.active,
|
|
[`${prefixCls.value}-block`]: props.block,
|
|
},
|
|
hashId.value,
|
|
),
|
|
);
|
|
return () => {
|
|
return wrapSSR(
|
|
<div class={cls.value}>
|
|
<Element {...props} prefixCls={`${prefixCls.value}-button`} />
|
|
</div>,
|
|
);
|
|
};
|
|
},
|
|
});
|
|
|
|
export default SkeletonButton;
|