Skip to content

Commit 33172af

Browse files
committed
fix(router): unique first navigation with multi app
1 parent 30da0b2 commit 33172af

File tree

3 files changed

+33
-21
lines changed

3 files changed

+33
-21
lines changed

e2e/multi-app/index.ts

+14-17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createRouter, createWebHistory } from '../../src'
22
import { RouteComponent } from '../../src/types'
3-
import { createApp, ref, watchEffect } from 'vue'
3+
import { createApp, ref, watchEffect, App } from 'vue'
44

55
const Home: RouteComponent = {
66
template: `<div class="home">Home</div>`,
@@ -54,9 +54,15 @@ router.beforeEach((to, from, next) => {
5454

5555
let looper = [1, 2, 3]
5656

57-
let apps = looper.map(i =>
58-
createApp({
59-
template: `
57+
let apps: Array<App | null> = [null, null, null]
58+
59+
looper.forEach((n, i) => {
60+
let mountBtn = document.getElementById('mount' + n)!
61+
let unmountBtn = document.getElementById('unmount' + n)!
62+
63+
mountBtn.addEventListener('click', () => {
64+
let app = (apps[i] = createApp({
65+
template: `
6066
<div id="app-${i}">
6167
<ul>
6268
<li><router-link to="/">Home</router-link></li>
@@ -67,22 +73,13 @@ let apps = looper.map(i =>
6773
<router-view></router-view>
6874
</div>
6975
`,
70-
})
71-
)
72-
73-
looper.forEach((n, i) => {
74-
let mountBtn = document.getElementById('mount' + n)!
75-
let unmountBtn = document.getElementById('unmount' + n)!
76-
77-
let app = apps[i]
78-
79-
app.use(router)
80-
81-
mountBtn.addEventListener('click', () => {
76+
}))
77+
app.use(router)
8278
app.mount('#app-' + n)
8379
})
8480

8581
unmountBtn.addEventListener('click', () => {
86-
app.unmount('#app-' + n)
82+
let app = apps[i]
83+
app && app.unmount('#app-' + n)
8784
})
8885
})

e2e/specs/multi-app.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ module.exports = {
1212
browser
1313
.url(baseURL)
1414
.assert.urlEquals(baseURL + '/')
15-
.assert.containsText('#popcount', '1')
16-
// TODO:
17-
// .assert.containsText('#guardcount', '1')
1815

1916
// mount multiple apps and expect to have one listener only
2017
.click('#mount1')
@@ -23,6 +20,8 @@ module.exports = {
2320
.waitForElementPresent('#app-1 > *', 1000)
2421
.waitForElementPresent('#app-2 > *', 1000)
2522
.waitForElementPresent('#app-3 > *', 1000)
23+
.assert.containsText('#popcount', '1')
24+
.assert.containsText('#guardcount', '1')
2625

2726
// they should all be displaying the home page
2827
.assert.containsText('#app-1 .home', 'Home')
@@ -67,6 +66,13 @@ module.exports = {
6766
.assert.containsText('#app-2 .user', 'User 2')
6867
.assert.containsText('#app-3 .user', 'User 2')
6968

69+
// unmounting apps should end up removing the popstate listener
70+
// .click('#unmount1')
71+
// .click('#unmount2')
72+
// .click('#unmount3')
73+
// TODO: we need a way to hook into unmount
74+
// .assert.containsText('#popcount', '0')
75+
7076
.end()
7177
},
7278
}

src/install.ts

+10-1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ declare module '@vue/runtime-core' {
6363
}
6464
}
6565

66+
// used for the initial navigation client side to avoid pushing multiple times
67+
// when the router is used in multiple apps
68+
let installed: boolean | undefined
69+
6670
export function applyRouterPlugin(app: App, router: Router) {
6771
app.component('RouterLink', RouterLink)
6872
app.component('RouterView', RouterView)
@@ -76,7 +80,12 @@ export function applyRouterPlugin(app: App, router: Router) {
7680
// this initial navigation is only necessary on client, on server it doesn't
7781
// make sense because it will create an extra unnecessary navigation and could
7882
// lead to problems
79-
if (isBrowser && router.currentRoute.value === START_LOCATION_NORMALIZED) {
83+
if (
84+
isBrowser &&
85+
!installed &&
86+
router.currentRoute.value === START_LOCATION_NORMALIZED
87+
) {
88+
installed = true
8089
router.push(router.history.location.fullPath).catch(err => {
8190
if (__DEV__)
8291
console.error('Unhandled error when starting the router', err)

0 commit comments

Comments
 (0)