Skip to content

Commit

Permalink
feat: add component.proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
cuixiaorui committed Feb 6, 2021
1 parent bc8aacf commit 9bfbf24
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/runtime-core/component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { initProps } from "./componentProps";
import { emit } from "./componentEmits";
import { PublicInstanceProxyHandlers } from "./componentPublicInstance";
export function createComponentInstance(vnode) {
const instance = {
type: vnode.type,
Expand All @@ -9,9 +10,16 @@ export function createComponentInstance(vnode) {
isMounted: false,
attrs: {}, // 存放 attrs 的数据
slots: {}, // 存放插槽的数据
ctx: {}, // context 对象
emit: () => {},
};

// 在 prod 坏境下的 ctx 只是下面简单的结构
// 在 dev 环境下会更复杂
instance.ctx = {
_: instance,
};

// 赋值 emit
// 这里使用 bind 把 instance 进行绑定
// 后面用户使用的时候只需要给 event 和参数即可
Expand Down Expand Up @@ -45,6 +53,11 @@ function setupStatefulComponent(instance) {
// todo
// 1. 先创建代理 proxy
console.log("创建 proxy");

// proxy 对象其实是代理了 instance.ctx 对象
// 我们在使用的时候需要使用 instance.proxy 对象
// 因为 instance.ctx 在 prod 和 dev 坏境下是不同的
instance.proxy = new Proxy(instance.ctx, PublicInstanceProxyHandlers);
// 用户声明的对象就是 instance.type
// const Component = {setup(),render()} ....
const Component = instance.type;
Expand Down
19 changes: 19 additions & 0 deletions src/runtime-core/componentPublicInstance.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
const publicPropertiesMap = {
// 当用户调用 instance.proxy.$emit 时就会触发这个函数
$emit: (i) => i.emit,
};

export const PublicInstanceProxyHandlers = {
get({ _: instance }, key) {
// 用户访问 proxy[key]
// 这里就匹配一下看看是否有对应的 function
// 有的话就直接调用这个 function
console.log("触发 proxy 的 hook");

const publicGetter = publicPropertiesMap[key];

if (publicGetter) {
return publicGetter(instance);
}
},
};

0 comments on commit 9bfbf24

Please sign in to comment.