mackenzii/src/components/galleries/gallery-tile.vue
Lightling c1c1977c24 titles and defaults for gallery list/view
if explicitly null (title set to blank or the phrase null in YAML), it will set untitled; variants will be amended with title and description from parent if they are undefined on the variant
2024-03-18 02:10:21 -04:00

33 lines
720 B
Vue

<script setup lang="ts">
import { computed, defineEmits, defineProps } from 'vue'
import type { GalleryEntry } from 'src/types/galleries/galleryList'
import { getTitleFromEntryOrId } from 'src/utilities/galleries'
const props = defineProps<{
entry: GalleryEntry,
id: string,
}>()
defineEmits<{
(e: 'click', value: { event: Event, id: string }): void
}>()
const title = computed(() => getTitleFromEntryOrId(props.entry, props.id))
</script>
<template lang="pug">
.gallery-embed(
@click='$emit("click", { event: $event, id })'
)
.image-wrapper
img(
:src='entry.thumbnailUrl || entry.url'
:alt='entry.description || id'
)
p {{ title }}
</template>
<style scoped lang="sass">
</style>