Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/photos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/router/index.js')
-rw-r--r--src/router/index.js68
1 files changed, 60 insertions, 8 deletions
diff --git a/src/router/index.js b/src/router/index.js
index 80dcdd5e..df464138 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -24,10 +24,17 @@ import { generateUrl } from '@nextcloud/router'
import Router from 'vue-router'
import Vue from 'vue'
-import Grid from '../views/Grid'
+import Albums from '../views/Albums'
+import Tags from '../views/Tags'
Vue.use(Router)
+// shortcut to properly format the path prop
+const props = route => ({
+ // always lead current path with a slash
+ path: `/${route.params.path ? route.params.path : ''}`,
+})
+
export default new Router({
mode: 'history',
// if index.php is in the url AND we got this far, then it's working:
@@ -37,20 +44,65 @@ export default new Router({
routes: [
{
path: '/',
- component: Grid,
- props: route => ({
- // always lead current path with a slash
- path: `/${route.params.path ? route.params.path : ''}`,
- }),
+ component: Albums,
name: 'root',
+ },
+ {
+ path: '/albums',
+ component: Albums,
+ name: 'albums',
+ props,
+ children: [
+ {
+ path: ':path*',
+ name: 'path',
+ component: Albums,
+ },
+ ],
+ },
+ {
+ path: '/shared',
+ component: Albums,
+ name: 'shared',
+ props,
+ children: [
+ {
+ path: ':path*',
+ name: 'path',
+ component: Albums,
+ },
+ ],
+ },
+ {
+ path: '/favorites',
+ component: Tags,
+ name: 'favorites',
+ props,
children: [
{
path: ':path*',
name: 'path',
- component: Grid,
+ component: Tags,
},
],
},
- { path: '*', redirect: { name: 'root' } },
+ {
+ path: '/tags',
+ component: Tags,
+ name: 'tags',
+ props,
+ children: [
+ {
+ path: ':path*',
+ name: 'path',
+ component: Tags,
+ },
+ ],
+ },
+ {
+ path: '/maps',
+ name: 'maps',
+ redirect: '',
+ },
],
})