diff --git a/src/routes.ts b/src/routes.ts
index 56c4600..d5edb60 100644
--- a/src/routes.ts
+++ b/src/routes.ts
@@ -17,11 +17,11 @@ export const createRoutes = (): RouteRecordRaw[] => {
const routeRecord: RouteRecordRaw[] = []
Object.keys(routes).forEach(route => {
- routeRecord.push({
+ const toPush: RouteRecordRaw = {
name: routes[route].id,
path: route,
component: templates[routes[route].template],
- })
+ }
if (routes[route].template === 'project-list') {
routeRecord.push({
@@ -30,7 +30,11 @@ export const createRoutes = (): RouteRecordRaw[] => {
component: projectViewBody,
props: route => ({ id: route.query.id }),
})
+ } else if (routes[route].template === 'gallery-list') {
+ toPush.props = route => ({ variants: (route.query.v as string || '').split(',') })
}
+
+ routeRecord.push(toPush)
})
return routeRecord
diff --git a/src/types/galleries/galleryList.ts b/src/types/galleries/galleryList.ts
index 285cf70..c0cfe5f 100644
--- a/src/types/galleries/galleryList.ts
+++ b/src/types/galleries/galleryList.ts
@@ -1,4 +1,5 @@
export type GalleryEntry = {
+ id: string
description?: string
thumbnailPosition?: `${'left' | 'center' | 'right'} ${'top' | 'center' | 'bottom'}`
thumbnailUrl: string
diff --git a/src/views/gallery-list.vue b/src/views/gallery-list.vue
index 8b7f6a6..07dab93 100644
--- a/src/views/gallery-list.vue
+++ b/src/views/gallery-list.vue
@@ -1,21 +1,69 @@
@@ -25,10 +73,16 @@ onMounted(async () => {
.gallery(
v-if='ready'
)
+ p(
+ v-if='variants?.length > 0'
+ @click='onNavigateBack($event)'
+ ) Back
.tile(
- v-for='entry in config.entries'
+ v-for='(entry) in entries'
)
- p {{ entry.title }}
+ p(
+ @click='onTileClicked($event, entry)'
+ ) {{ entry.title }}