mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 20:58:22 +08:00
0636e1e240
* style: add import lint * chore: apply eslint rules * chore: add stricter lint * chore: lint all files * auto fix * manually fix * restore build-indices.ts
46 lines
1.1 KiB
TypeScript
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
|