mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-21 07:18:05 +08:00
31 lines
799 B
TypeScript
31 lines
799 B
TypeScript
export default function magicMethods (clazz: any) {
|
|
const classHandler = Object.create(null)
|
|
|
|
classHandler.construct = (target: any, args: any) => {
|
|
const instance = new clazz(...args)
|
|
const instanceHandler = Object.create(null)
|
|
const get = Object.getOwnPropertyDescriptor(clazz.prototype, '__get')
|
|
|
|
if (get) {
|
|
instanceHandler.get = (target: any, name: any) => {
|
|
if (typeof name !== 'string') {
|
|
return
|
|
}
|
|
|
|
const exists = name in target || name.startsWith('_')
|
|
|
|
if (exists) {
|
|
return target[name]
|
|
} else {
|
|
return get.value.call(target, name)
|
|
}
|
|
}
|
|
}
|
|
|
|
instance.proxy = new Proxy(instance, instanceHandler)
|
|
|
|
return instance.proxy
|
|
}
|
|
|
|
return new Proxy(clazz, classHandler)
|
|
} |