-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
/
Copy pathRestoreRoute.js
62 lines (53 loc) · 1.22 KB
/
RestoreRoute.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import { isSameRoute } from '../util/route'
import PROJECT_CURRENT from '@/graphql/project/projectCurrent.gql'
export default function ({
baseRoute = null
} = {}) {
let lastRoute
// @vue/component
return {
apollo: {
projectCurrent: PROJECT_CURRENT
},
watch: {
projectCurrent (value) {
if (!this.$_restoreRouteReady) return
this.replaceBaseRoute()
}
},
bus: {
quickOpenProject (project) {
this.replaceBaseRoute()
}
},
beforeRouteEnter (to, from, next) {
if (lastRoute) {
if (!to.params || !Object.keys(to.params).length) {
const { name, params, query } = lastRoute
next({ name, params, query })
return
}
lastRoute = null
}
next()
},
beforeRouteLeave (to, from, next) {
if (from.params && Object.keys(from.params).length) {
lastRoute = from
}
next()
},
mounted () {
setTimeout(() => {
this.$_restoreRouteReady = true
}, 100)
},
methods: {
replaceBaseRoute () {
if (baseRoute && !isSameRoute(this.$route, baseRoute, false)) {
this.$router.replace(baseRoute)
}
}
}
}
}