-
Notifications
You must be signed in to change notification settings - Fork 287
/
Copy pathrouter.js
161 lines (155 loc) · 3.4 KB
/
router.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import Vue from 'vue'
import Router from 'vue-router'
import { generateUrl, getRootUrl } from '@nextcloud/router'
import { BOARD_FILTERS } from './store/main.js'
import Boards from './components/boards/Boards.vue'
import Board from './components/board/Board.vue'
import Sidebar from './components/Sidebar.vue'
import BoardSidebar from './components/board/BoardSidebar.vue'
import CardSidebar from './components/card/CardSidebar.vue'
import Overview from './components/overview/Overview.vue'
Vue.use(Router)
// We apply a dynamic base URL depending on the URL used in the browser
const baseUrl = generateUrl('/apps/deck/')
const webRootWithIndexPHP = getRootUrl() + '/index.php'
const doesURLContainIndexPHP = window.location.pathname.startsWith(webRootWithIndexPHP)
const currentBaseUrl = doesURLContainIndexPHP ? baseUrl : baseUrl.replace('/index.php/', '/')
const router = new Router({
mode: 'history',
base: currentBaseUrl,
linkActiveClass: 'active',
routes: [
{
path: '/',
name: 'main',
component: Overview,
},
{
path: '/overview/:filter',
name: 'overview',
components: {
default: Overview,
},
props: {
default: (route) => {
return {
filter: route.params.filter,
}
},
},
},
{
path: '/board',
name: 'boards',
component: Boards,
props: {
navFilter: BOARD_FILTERS.ALL,
},
},
{
path: '/board/archived',
name: 'boards.archived',
component: Boards,
props: {
navFilter: BOARD_FILTERS.ARCHIVED,
},
},
{
path: '/board/shared',
name: 'boards.shared',
component: Boards,
props: {
navFilter: BOARD_FILTERS.SHARED,
},
},
{
path: '/board/:id',
name: 'board',
components: {
default: Board,
sidebar: Sidebar,
},
props: {
default: (route) => {
return {
id: parseInt(route.params.id, 10),
}
},
},
children: [
{
path: 'details',
name: 'board.details',
components: {
default: Boards,
sidebar: BoardSidebar,
},
props: {
default: (route) => {
return {
id: parseInt(route.params.id, 10),
}
},
sidebar: (route) => {
return {
id: parseInt(route.params.id, 10),
}
},
},
},
{
path: 'card/:cardId/:tabId?/:tabQuery?',
name: 'card',
components: {
sidebar: CardSidebar,
},
props: {
default: (route) => {
return {
cardId: parseInt(route.params.cardId, 10),
}
},
sidebar: (route) => {
return {
id: parseInt(route.params.cardId, 10),
tabId: route.params.tabId,
tabQuery: route.params.tabQuery,
}
},
},
},
],
},
// redirects to keep compatibility to 1.0.0 routes
{
path: '/boards/:id',
redirect: '/board/:id',
},
{
path: '/boards/:id/cards/:cardId',
redirect: '/board/:id/card/:cardId',
},
{
path: '/!/board/:id',
redirect: '/board/:id',
},
{
path: '/!/board/:id/card/:cardId',
redirect: '/board/:id/card/:cardId',
},
],
})
router.beforeEach((to, from, next) => {
// Redirect if fullPath begins with a hash (ignore hashes later in path)
if (to.hash.substring(0, 2) === '#/') {
const path = to.fullPath.replace('/#/', '/').trimEnd('/')
next(path)
return
}
next()
})
export default router