mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
47 lines
1.5 KiB
TypeScript
47 lines
1.5 KiB
TypeScript
import { ref, unref, inject, computed } from 'vue'
|
|
import { elFormItemKey, elFormKey } from '@element-plus/tokens'
|
|
import { buildProp } from '@element-plus/utils-v2'
|
|
import { componentSizes } from '@element-plus/constants'
|
|
import { useProp } from '../use-prop'
|
|
import { useGlobalConfig } from '../use-global-config'
|
|
import type { ComponentSize } from '@element-plus/constants'
|
|
import type { MaybeRef } from '@vueuse/core'
|
|
|
|
export const useSizeProp = buildProp({
|
|
type: String,
|
|
values: componentSizes,
|
|
required: false,
|
|
} as const)
|
|
|
|
export const useSize = (
|
|
fallback?: MaybeRef<ComponentSize | undefined>,
|
|
ignore: Partial<Record<'prop' | 'form' | 'formItem' | 'global', boolean>> = {}
|
|
) => {
|
|
const emptyRef = ref(undefined)
|
|
|
|
const size = ignore.prop ? emptyRef : useProp<ComponentSize>('size')
|
|
const globalConfig = ignore.global ? emptyRef : useGlobalConfig('size')
|
|
const form = ignore.form ? { size: undefined } : inject(elFormKey, undefined)
|
|
const formItem = ignore.formItem
|
|
? { size: undefined }
|
|
: inject(elFormItemKey, undefined)
|
|
|
|
return computed(
|
|
(): ComponentSize =>
|
|
size.value ||
|
|
unref(fallback) ||
|
|
formItem?.size ||
|
|
form?.size ||
|
|
globalConfig.value ||
|
|
'default'
|
|
)
|
|
}
|
|
|
|
export const useDisabled = (fallback?: MaybeRef<boolean | undefined>) => {
|
|
const disabled = useProp<boolean>('disabled')
|
|
const form = inject(elFormKey, undefined)
|
|
return computed(
|
|
() => disabled.value || unref(fallback) || form?.disabled || false
|
|
)
|
|
}
|