From b7d60fde23a6ffd7e32eaa7ffd364db5d51a7714 Mon Sep 17 00:00:00 2001 From: Lightling Date: Wed, 20 Mar 2024 00:26:54 -0400 Subject: [PATCH] content warnings on individual gallery tiles --- src/components/galleries/gallery-tile.vue | 8 +++++++- src/types/galleries/galleryList.ts | 1 + src/utilities/galleries.ts | 3 +++ src/views/gallery-list.vue | 17 +++++++++++++++++ 4 files changed, 28 insertions(+), 1 deletion(-) diff --git a/src/components/galleries/gallery-tile.vue b/src/components/galleries/gallery-tile.vue index 1190d99..b69dd7a 100644 --- a/src/components/galleries/gallery-tile.vue +++ b/src/components/galleries/gallery-tile.vue @@ -7,6 +7,7 @@ import { getTitleFromEntryOrId } from 'src/utilities/galleries' const props = defineProps<{ entry: GalleryEntry, id: string, + hideWarnings: boolean, }>() defineEmits<{ @@ -20,13 +21,18 @@ const title = computed(() => getTitleFromEntryOrId(props.entry, props.id)) .gallery-embed( @click='$emit("click", { event: $event, id })' ) - .image-wrapper + .image-wrapper( + :class='{ warning: !!entry.warning && !hideWarnings }' + ) img( :src='entry.thumbnailUrl || entry.url' :alt='entry.description || id' ) .caption-wrapper p {{ title }} + p.warning( + v-if='!!entry.warning' + ) {{ entry.warning }}