From c10e47cb52033bc5f9130499aeb215a6b8d2a460 Mon Sep 17 00:00:00 2001 From: Lightling Date: Mon, 18 Mar 2024 01:03:35 -0400 Subject: [PATCH] implement gallery viewer --- src/main.vue | 2 +- src/routes.ts | 8 +++++++ src/views/gallery-list.vue | 2 ++ src/views/gallery-view.vue | 49 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 60 insertions(+), 1 deletion(-) create mode 100644 src/views/gallery-view.vue diff --git a/src/main.vue b/src/main.vue index 8cac5e6..a446671 100644 --- a/src/main.vue +++ b/src/main.vue @@ -22,7 +22,7 @@ const refresh = async () => { document.head.removeChild(stylesheet) }) - routeConfig.stylesheetUrls?.forEach(stylesheet => { + routeConfig?.stylesheetUrls?.forEach(stylesheet => { const newElement = document.createElement('link') newElement.setAttribute('rel', 'stylesheet') newElement.setAttribute('href', stylesheet) diff --git a/src/routes.ts b/src/routes.ts index b0c61ec..c003e9a 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -6,6 +6,7 @@ const markdownBody = () => import ('./views/markdown.vue') const projectListBody = () => import ('./views/project-list.vue') const projectViewBody = () => import ('./views/project-view.vue') const galleryListBody = () => import ('./views/gallery-list.vue') +const galleryViewBody = () => import ('./views/gallery-view.vue') export const templates: Record Promise> = { 'markdown': markdownBody, @@ -32,6 +33,13 @@ export const createRoutes = (): RouteRecordRaw[] => { }) } else if (routes[route].template === 'gallery-list') { toPush.props = route => ({ variants: (route.query.v as string || '').split(';') }) + + routeRecord.push({ + name: `${routes[route].id}: View Entry`, + path: `${route}/view`, + component: galleryViewBody, + props: route => ({ variants: (route.query.v as string || '').split(';') }), + }) } routeRecord.push(toPush) diff --git a/src/views/gallery-list.vue b/src/views/gallery-list.vue index 6410dc0..884626b 100644 --- a/src/views/gallery-list.vue +++ b/src/views/gallery-list.vue @@ -49,6 +49,8 @@ const onTileClicked = (clickEvent: { event: Event, id: string }) => { router.push({ name: routeConfig.name, query: { v: newPath }}) variants.value = newPath.split(';') onDisplayEntries() + } else { + router.push({ name: `${routeConfig.name?.toString()}: View Entry`, query: { v: `${(variants.value || []).join(';')};${id}` }}) } } diff --git a/src/views/gallery-view.vue b/src/views/gallery-view.vue new file mode 100644 index 0000000..e99f70a --- /dev/null +++ b/src/views/gallery-view.vue @@ -0,0 +1,49 @@ + + + + +