element-plus/packages/hooks/use-attrs/index.ts
三咲智子 200effa261
refactor(utils): drop ie support (#3304)
* refactor(utils): drop ie support

* fix(utils): remove unused
2021-09-10 15:00:39 +08:00

37 lines
996 B
TypeScript

import { getCurrentInstance, computed } from 'vue'
import { debugWarn } from '@element-plus/utils/error'
import type { ComputedRef } from 'vue'
interface Params {
excludeListeners?: boolean
excludeKeys?: string[]
}
const DEFAULT_EXCLUDE_KEYS = ['class', 'style']
const LISTENER_PREFIX = /^on[A-Z]/
export default (params: Params = {}): ComputedRef<Record<string, unknown>> => {
const { excludeListeners = false, excludeKeys = [] } = params
const allExcludeKeys = excludeKeys.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(() =>
Object.fromEntries(
Object.entries(instance.proxy?.$attrs).filter(
([key]) =>
!allExcludeKeys.includes(key) &&
!(excludeListeners && LISTENER_PREFIX.test(key))
)
)
)
}