project tile as web component

This commit is contained in:
lightling 2024-05-13 20:23:48 -04:00
parent 71adcff32b
commit a0367f8563
6 changed files with 61 additions and 24 deletions

View file

@ -0,0 +1,5 @@
import { registerProjectTile } from './project-tile'
export const register = () => {
registerProjectTile()
}

View file

@ -0,0 +1,9 @@
import { defineCustomElement } from 'vue'
import ProjectTileSFC from 'src/views/project/project-tile.vue'
export const ProjectTile = defineCustomElement(ProjectTileSFC)
export const registerProjectTile = () => {
customElements.define('project-tile', ProjectTile)
}

View file

@ -9,6 +9,7 @@ import './main.sass'
import { createRoutes, initializeRouteStore } from './routes'
import { headingSectionsExtension } from './utilities/marked'
import { register } from './components/web-components'
marked
.use(headingSectionsExtension() as any)
@ -27,6 +28,7 @@ export const createApp = ViteSSG(
{ routes: createRoutes() },
// function to have custom setups
({ app, router, routes, isClient, initialState }) => {
register()
app.use(createPinia())
initializeRouteStore(routes)
},

View file

@ -19,6 +19,15 @@ const domPurifyConfig = {
'src',
'style',
'title',
// project-tile
'info',
'view-path',
'thumbnail-background',
'thumbnail-position',
'caption',
'subtitle',
'summary',
],
ALLOWED_TAGS: [
'a',
@ -70,6 +79,8 @@ const domPurifyConfig = {
'dd',
'dl',
'dt',
'project-tile',
],
}

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import { onMounted, ref } from 'vue'
import { computed, onMounted, ref } from 'vue'
import type {
ProjectList,
ProjectListingInfo,
@ -31,6 +31,7 @@ const currentRoute = getCurrentRoute()
const routeStore = useRouteStore()
const routeConfig = routeStore._routes[currentRoute.path] as ProjectListDefinition
const config = ref(null as ProjectList | null)
const projectViewPath = computed(() => `${currentRoute.path}/view`)
/**
* Handler for a tag being selected;
@ -71,9 +72,11 @@ onMounted(async () => {
)
ProjectTile(
v-if='!projects[id].hidden || !config.removeFromView'
v-bind='projects[id]'
:class='{ hidden: projects[id].hidden && !config.removeFromView }'
:id='id'
:info='projects[id]'
:viewPath='projectViewPath'
:isInternal='true'
)
FilterPanel(
v-if='ready && !!config.tags'

View file

@ -5,36 +5,43 @@ import type {
ProjectListingInfo,
} from '@goldenwere/static-web-templates-types'
import { getCurrentRoute } from 'src/utilities/vuetils'
const props = defineProps<{
id: string
info: ProjectListingInfo
}>()
id: string,
viewPath: string,
isInternal: boolean,
} & ProjectListingInfo>()
const currentRoute = getCurrentRoute()
const { thumbnailBackground, thumbnailBackgroundSize } = props.info
const caption = computed(() => marked.parse(props.info.caption || ''))
const summary = computed(() => marked.parse(props.info.summary || ''))
const title = computed(() => marked.parse(props.info.title || ''))
const subtitle = computed(() => marked.parse(props.info.subtitle || ''))
const { thumbnailBackground, thumbnailBackgroundSize } = props
const caption = computed(() => marked.parse(props.caption || ''))
const summary = computed(() => marked.parse(props.summary || ''))
const title = computed(() => marked.parse(props.title || ''))
const subtitle = computed(() => marked.parse(props.subtitle || ''))
const href = computed(() => `${props.viewPath}?id=${props.id}`)
</script>
<template lang="pug">
mixin embedText
.text
.title(
v-html='title'
)
.subtitle(
v-if='subtitle'
v-html='subtitle'
)
.project-embed
router-link.link(
:to='{ name: `${currentRoute.name}: View Project`, query: { id: id } }'
router-link.router-link.link(
v-if='isInternal'
:to='{ path: viewPath, query: { id: id } }'
:style='{ background: thumbnailBackground, backgroundSize: thumbnailBackgroundSize }'
)
.text
.title(
v-html='title'
)
.subtitle(
v-if='subtitle'
v-html='subtitle'
)
+embedText
a.link(
v-else
:href='href'
:style='{ background: thumbnailBackground, backgroundSize: thumbnailBackgroundSize }'
)
+embedText
.caption(
v-html='caption'
)