define gallery template
This commit is contained in:
parent
42d679b17b
commit
5980c1b22e
4 changed files with 62 additions and 0 deletions
12
src/content-env.d.ts
vendored
12
src/content-env.d.ts
vendored
|
@ -6,6 +6,7 @@ declare module 'content/routes.js' {
|
||||||
type Template =
|
type Template =
|
||||||
| 'markdown'
|
| 'markdown'
|
||||||
| 'project-list'
|
| 'project-list'
|
||||||
|
| 'gallery-list'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines the shared options for a route
|
* Defines the shared options for a route
|
||||||
|
@ -48,12 +49,23 @@ declare module 'content/routes.js' {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines the config for a route using the `gallery-list` {@link Template}
|
||||||
|
*/
|
||||||
|
type GalleryListDefinition = ConfigfulRouteDefinition & {
|
||||||
|
template: 'gallery-list'
|
||||||
|
view: {
|
||||||
|
stylesheetUrls: string[]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines all available route definitions
|
* Defines all available route definitions
|
||||||
*/
|
*/
|
||||||
type RouteDefinition =
|
type RouteDefinition =
|
||||||
| MarkdownDefinition
|
| MarkdownDefinition
|
||||||
| ProjectListDefinition
|
| ProjectListDefinition
|
||||||
|
| GalleryListDefinition
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines the collection of routes the app uses
|
* Defines the collection of routes the app uses
|
||||||
|
|
|
@ -5,10 +5,12 @@ import { header, routes, type HeaderEntry, type ProjectListDefinition, type Rout
|
||||||
const markdownBody = () => import ('./views/markdown.vue')
|
const markdownBody = () => import ('./views/markdown.vue')
|
||||||
const projectListBody = () => import ('./views/project-list.vue')
|
const projectListBody = () => import ('./views/project-list.vue')
|
||||||
const projectViewBody = () => import ('./views/project-view.vue')
|
const projectViewBody = () => import ('./views/project-view.vue')
|
||||||
|
const galleryListBody = () => import ('./views/gallery-list.vue')
|
||||||
|
|
||||||
export const templates: Record<Template, () => Promise<any>> = {
|
export const templates: Record<Template, () => Promise<any>> = {
|
||||||
'markdown': markdownBody,
|
'markdown': markdownBody,
|
||||||
'project-list': projectListBody,
|
'project-list': projectListBody,
|
||||||
|
'gallery-list': galleryListBody,
|
||||||
}
|
}
|
||||||
|
|
||||||
export const createRoutes = (): RouteRecordRaw[] => {
|
export const createRoutes = (): RouteRecordRaw[] => {
|
||||||
|
|
12
src/types/galleries/galleryList.ts
Normal file
12
src/types/galleries/galleryList.ts
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
export type GalleryEntry = {
|
||||||
|
description?: string
|
||||||
|
thumbnailPosition?: `${'left' | 'center' | 'right'} ${'top' | 'center' | 'bottom'}`
|
||||||
|
thumbnailUrl: string
|
||||||
|
title: string
|
||||||
|
url?: string
|
||||||
|
variants?: GalleryEntry[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export type GalleryList = {
|
||||||
|
entries: GalleryEntry[]
|
||||||
|
}
|
36
src/views/gallery-list.vue
Normal file
36
src/views/gallery-list.vue
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { onMounted, ref } from 'vue'
|
||||||
|
|
||||||
|
import { type GalleryList } from 'src/types/galleries/galleryList'
|
||||||
|
import { type GalleryListDefinition } from 'content/routes.js'
|
||||||
|
import { fetchAndParseYaml } from 'src/utilities/fetch'
|
||||||
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
|
import { useRouteStore } from 'src/routes'
|
||||||
|
|
||||||
|
const ready = ref(false)
|
||||||
|
const config = ref(null! as GalleryList)
|
||||||
|
const currentRoute = getCurrentRoute()
|
||||||
|
const routeStore = useRouteStore()
|
||||||
|
const routeConfig = routeStore._routes[currentRoute.path] as GalleryListDefinition
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
config.value = await fetchAndParseYaml<GalleryList>(routeConfig.config)
|
||||||
|
document.title = routeConfig.title
|
||||||
|
ready.value = true
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template lang="pug">
|
||||||
|
.template.gallery-list
|
||||||
|
.gallery(
|
||||||
|
v-if='ready'
|
||||||
|
)
|
||||||
|
.tile(
|
||||||
|
v-for='entry in config.entries'
|
||||||
|
)
|
||||||
|
p {{ entry.title }}
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped lang="sass">
|
||||||
|
|
||||||
|
</style>
|
Loading…
Add table
Reference in a new issue