element-plus/packages/test-utils/define-getter.ts
三咲智子 0636e1e240
style: add import and stricter lint (#3440)
* style: add import lint

* chore: apply eslint rules

* chore: add stricter lint

* chore: lint all files

* auto fix

* manually fix

* restore build-indices.ts
2021-09-17 15:27:31 +08:00

46 lines
1.1 KiB
TypeScript

import { isFunction, isUndefined } from 'lodash'
/**
*
* @param obj Object on which to add or modify the property.
* @param prop The property name
* @param value The value of `obj[prop]` or a getter
* @returns A restore function which can reset `obj[prop]`'s value or getter
*/
const defineGetter = (
obj: Record<string, any>,
prop: string,
value: any,
defaultValue?: any
) => {
let oldValue = defaultValue
const { get, configurable } = Object.getOwnPropertyDescriptor(obj, prop) || {}
if (isUndefined(defaultValue) && isUndefined(get)) {
try {
oldValue = obj[prop]
} catch {
throw Error(
`TypeError: Illegal invocation. Cannot read ${prop} of '${obj}', '${obj}' might be a prototype, please specify default value instead.`
)
}
}
const oldGetter = get ?? (() => oldValue)
const getter = isFunction(value) ? value : () => value
Object.defineProperty(obj, prop, {
configurable: true,
get: getter,
})
return () => {
Object.defineProperty(obj, prop, {
configurable,
get: oldGetter,
})
}
}
export default defineGetter