mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
42ff59fc39
* feat(components): [date-picker] a11y controls and attributes * feat(components): [date-picker] keyboard controls for picker * feat(components): [date-picker] unit test complete * feat(components): [date-picker] remove immediate watch date
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { computed, getCurrentInstance } from 'vue'
|
|
import { fromPairs } from 'lodash-unified'
|
|
import { debugWarn } from '@element-plus/utils'
|
|
|
|
import type { ComputedRef } from 'vue'
|
|
|
|
interface Params {
|
|
excludeListeners?: boolean
|
|
excludeKeys?: ComputedRef<string[]>
|
|
}
|
|
|
|
const DEFAULT_EXCLUDE_KEYS = ['class', 'style']
|
|
const LISTENER_PREFIX = /^on[A-Z]/
|
|
|
|
export const useAttrs = (
|
|
params: Params = {}
|
|
): ComputedRef<Record<string, unknown>> => {
|
|
const { excludeListeners = false, excludeKeys } = params
|
|
const allExcludeKeys = computed<string[]>(() => {
|
|
return (excludeKeys?.value || []).concat(DEFAULT_EXCLUDE_KEYS)
|
|
})
|
|
|
|
const instance = getCurrentInstance()
|
|
if (!instance) {
|
|
debugWarn(
|
|
'use-attrs',
|
|
'getCurrentInstance() returned null. useAttrs() must be called at the top of a setup function'
|
|
)
|
|
return computed(() => ({}))
|
|
}
|
|
|
|
return computed(() =>
|
|
fromPairs(
|
|
Object.entries(instance.proxy?.$attrs!).filter(
|
|
([key]) =>
|
|
!allExcludeKeys.value.includes(key) &&
|
|
!(excludeListeners && LISTENER_PREFIX.test(key))
|
|
)
|
|
)
|
|
)
|
|
}
|