コンポーネント指向で開発したい
既存実装の整理ベースで考える
これまで,createApp API やリアクティビティシステム, 仮想 DOM を小さく実装してきました.
今現時点での実装ではリアクティビティシステムによって UI を動的に変更することもできますし, 仮想 DOM によって効率的なレンダリングを行うことができているのですが,開発者インタフェースとしては全ての内容を createApp API に書く感じになってしまっています.
実際にはもっとファイルを分割したり,再利用のために汎用的なコンポーネントを実装したいです.
まずは既存実装の散らかってしまっている部分を見直してみます.renderer.ts の render 関数をみてください.
const render: RootRenderFunction = (rootComponent, container) => {
const componentRender = rootComponent.setup!()
let n1: VNode | null = null
let n2: VNode = null!
const updateComponent = () => {
const n2 = componentRender()
patch(n1, n2, container)
n1 = n2
}
const effect = new ReactiveEffect(updateComponent)
effect.run()
}
render 関数内にルートコンポーネントに関する情報を直接定義してしまっています.
実際には,n1 や n2, updateComponent, effect は各コンポーネントごとに存在します.
実際,これからはユーザー側でコンポーネント(ある意味でコンストラクタ)を定義してそれをインスタンス化したいわけです.
そして,そのインスタンスが n1 や n2, updateComponent などを持つような感じにしたいです.
そこで,コンポーネントのインスタンスとしてこれらを閉じ込めることについて考えてみます.
~/packages/runtime-core/component.ts
に ComponentInternalInstance
と言うものを定義してみます. これがインスタンスの型となります.
export interface ComponentInternalInstance {
type: Component // 元となるユーザー定義のコンポーネント (旧 rootComponent (実際にはルートコンポーネントだけじゃないけど))
vnode: VNode // 後述
subTree: VNode // 旧 n1
next: VNode | null // 旧 n2
effect: ReactiveEffect // 旧 effect
render: InternalRenderFunction // 旧 componentRender
update: () => void // 旧updateComponent
isMounted: boolean
}
export type InternalRenderFunction = {
(): VNodeChild
}
このインスタンスが持つ vnode と subTree と next は少しややこしいのですが, これから,VNode の type として ConcreteComponent を指定できるように実装するのですが,instance.vnode にはその VNode 自体を保持しておきます. そして,subTree, next というのはそのコンポーネントのレンダリング結果である VNode を保持させます.(ここは今までの n1 と n2 と変わらない)
イメージ的には,
const MyComponent = {
setup() {
return h('p', {}, ['hello'])
},
}
const App = {
setup() {
return h(MyComponent, {}, [])
},
}
のように利用し,
MyComponent のインスタンスを instance とすると,instance.vnode には h(MyComponent, {}, [])
の結果が,instance.subTree には h("p", {}, ["hello"])
の結果が格納される感じです.
とりあえず,h 関数の第一引数にコンポーネントを指定できるように実装してみましょう.
と,言ってもただ単に type としてコンポーネント定義のオブジェクトを受け取るようにするだけです.~/packages/runtime-core/vnode.ts
export type VNodeTypes = string | typeof Text | object // objectを追加;
~/packages/runtime-core/h.ts
export function h(
type: string | object, // objectを追加
props: VNodeProps
) {..}
VNode に component のインスタンスを持たせるようにもしておきます.
export interface VNode<HostNode = any> {
// .
// .
// .
component: ComponentInternalInstance | null // 追加
}
それに伴って,renderer の方でもコンポーネントを扱う必要が出てくるのですが,Element や Text と同様 processComponent を実装して,mountComponent と patchComponent (updateComponent) も実装していきましょう.
まずガワから作って詳細な説明をします.
const patch = (n1: VNode | null, n2: VNode, container: RendererElement) => {
const { type } = n2
if (type === Text) {
processText(n1, n2, container)
} else if (typeof type === 'string') {
processElement(n1, n2, container)
} else if (typeof type === 'object') {
// 分岐を追加
processComponent(n1, n2, container)
} else {
// do nothing
}
}
const processComponent = (
n1: VNode | null,
n2: VNode,
container: RendererElement,
) => {
if (n1 == null) {
mountComponent(n2, container)
} else {
updateComponent(n1, n2)
}
}
const mountComponent = (initialVNode: VNode, container: RendererElement) => {
// TODO:
}
const updateComponent = (n1: VNode, n2: VNode) => {
// TODO:
}
では,mountComponent から見てみましょう.
やることは 3 つです.
- コンポーネントのインスタンスを生成
- setup の実行とその結果をインスタンスに保持
- ReactiveEffect の生成とそれをインスタンスに保持
まず,component.ts にコンポーネントのインスタンスを生成するための関数(コンストラクタの役割をするもの)を実装してみます.
export function createComponentInstance(
vnode: VNode,
): ComponentInternalInstance {
const type = vnode.type as Component
const instance: ComponentInternalInstance = {
type,
vnode,
next: null,
effect: null!,
subTree: null!,
update: null!,
render: null!,
isMounted: false,
}
return instance
}
各プロパティの型は non-null なのですが,インスタンスを生成した段階では null で入れてしまいます.(本家の Vue.js に合わせてこのような設計にしています.)
const mountComponent = (initialVNode: VNode, container: RendererElement) => {
const instance: ComponentInternalInstance = (initialVNode.component =
createComponentInstance(initialVNode))
// TODO: setup component
// TODO: setup effect
}
続いて setup です.これは今まで render に直接書いていた処理をここで行うようにして,変数ではなくインスタンスに保持させてしまえば OK です.
const mountComponent = (initialVNode: VNode, container: RendererElement) => {
const instance: ComponentInternalInstance = (initialVNode.component =
createComponentInstance(initialVNode))
const component = initialVNode.type as Component
if (component.setup) {
instance.render = component.setup() as InternalRenderFunction
}
// TODO: setup effect
}
最後に,effect の形成なのですが,少し長くなりそうなので setupRenderEffect という関数にまとめてしまいます.
ここに関しても,やるべきことは基本的に今まで render 関数に直接実装していたものをインスタンスの状態を活用しつつ移植するだけです.
const mountComponent = (initialVNode: VNode, container: RendererElement) => {
const instance: ComponentInternalInstance = (initialVNode.component =
createComponentInstance(initialVNode))
const component = initialVNode.type as Component
if (component.setup) {
instance.render = component.setup() as InternalRenderFunction
}
setupRenderEffect(instance, initialVNode, container)
}
const setupRenderEffect = (
instance: ComponentInternalInstance,
initialVNode: VNode,
container: RendererElement,
) => {
const componentUpdateFn = () => {
const { render } = instance
if (!instance.isMounted) {
// mount process
const subTree = (instance.subTree = normalizeVNode(render()))
patch(null, subTree, container)
initialVNode.el = subTree.el
instance.isMounted = true
} else {
// patch process
let { next, vnode } = instance
if (next) {
next.el = vnode.el
next.component = instance
instance.vnode = next
instance.next = null
} else {
next = vnode
}
const prevTree = instance.subTree
const nextTree = normalizeVNode(render())
instance.subTree = nextTree
patch(prevTree, nextTree, hostParentNode(prevTree.el!)!) // ※ 1
next.el = nextTree.el
}
}
const effect = (instance.effect = new ReactiveEffect(componentUpdateFn))
const update = (instance.update = () => effect.run()) // instance.updateに登録
update()
}
※ 1: nodeOps に親 Node を取得するための parentNode
という関数を実装してください.
parentNode: (node) => {
return node.parentNode;
},
多少長いですが,特に難しいことはないかと思います. setupRenderEffect でインスタンスの update メソッドとして更新のための関数を登録してあるので,updateComponent ではそれを呼んであげるだけです.
const updateComponent = (n1: VNode, n2: VNode) => {
const instance = (n2.component = n1.component)!
instance.next = n2
instance.update()
}
最後に,今まで render 関数に定義していた実装は不要になるので消してしまいます.
const render: RootRenderFunction = (rootComponent, container) => {
const vnode = createVNode(rootComponent, {}, [])
patch(null, vnode, container)
}
これで Component をレンダリングすることができました.試しに playground コンポーネントを作ってみてみましょう.
このように,コンポーネントに分割してレンダリングができるようになっているかと思います.
import { createApp, h, reactive } from 'chibivue'
const CounterComponent = {
setup() {
const state = reactive({ count: 0 })
const increment = () => state.count++
return () =>
h('div', {}, [
h('p', {}, [`count: ${state.count}`]),
h('button', { onClick: increment }, ['increment']),
])
},
}
const app = createApp({
setup() {
return () =>
h('div', { id: 'my-app' }, [
h(CounterComponent, {}, []),
h(CounterComponent, {}, []),
h(CounterComponent, {}, []),
])
},
})
app.mount('#app')
ここまでのソースコード:
chibivue (GitHub)