feat(hmr): root instance reload

This commit is contained in:
Evan You
2019-12-22 12:25:04 -05:00
parent c3e1c812e3
commit eda495efd8
4 changed files with 27 additions and 10 deletions

View File

@@ -60,7 +60,9 @@ function createRecord(id: string, comp: ComponentOptions): boolean {
}
function rerender(id: string, newRender?: RenderFunction) {
map.get(id)!.instances.forEach(instance => {
// Array.from creates a snapshot which avoids the set being mutated during
// updates
Array.from(map.get(id)!.instances).forEach(instance => {
if (newRender) {
instance.render = newRender
}
@@ -85,13 +87,19 @@ function reload(id: string, newComp: ComponentOptions) {
// 2. Mark component dirty. This forces the renderer to replace the component
// on patch.
comp.__hmrUpdated = true
record.instances.forEach(instance => {
// Array.from creates a snapshot which avoids the set being mutated during
// updates
Array.from(record.instances).forEach(instance => {
if (instance.parent) {
// 3. Force the parent instance to re-render. This will cause all updated
// components to be unmounted and re-mounted. Queue the update so that we
// don't end up forcing the same parent to re-render multiple times.
queueJob(instance.parent.update)
} else if (instance.appContext.reload) {
// root instance mounted via createApp() has a reload method
instance.appContext.reload()
} else if (typeof window !== 'undefined') {
// root instance inside tree created via raw render(). Force reload.
window.location.reload()
} else {
console.warn(