content warnings on individual gallery tiles

This commit is contained in:
lightling 2024-03-20 00:26:54 -04:00
parent 3b2273ed25
commit b7d60fde23
4 changed files with 28 additions and 1 deletions

View file

@ -7,6 +7,7 @@ import { getTitleFromEntryOrId } from 'src/utilities/galleries'
const props = defineProps<{ const props = defineProps<{
entry: GalleryEntry, entry: GalleryEntry,
id: string, id: string,
hideWarnings: boolean,
}>() }>()
defineEmits<{ defineEmits<{
@ -20,13 +21,18 @@ const title = computed(() => getTitleFromEntryOrId(props.entry, props.id))
.gallery-embed( .gallery-embed(
@click='$emit("click", { event: $event, id })' @click='$emit("click", { event: $event, id })'
) )
.image-wrapper .image-wrapper(
:class='{ warning: !!entry.warning && !hideWarnings }'
)
img( img(
:src='entry.thumbnailUrl || entry.url' :src='entry.thumbnailUrl || entry.url'
:alt='entry.description || id' :alt='entry.description || id'
) )
.caption-wrapper .caption-wrapper
p {{ title }} p {{ title }}
p.warning(
v-if='!!entry.warning'
) {{ entry.warning }}
</template> </template>
<style scoped lang="sass"> <style scoped lang="sass">

View file

@ -6,6 +6,7 @@ export type GalleryEntry = {
title: string | null | undefined title: string | null | undefined
url?: string url?: string
variants?: GalleryEntries variants?: GalleryEntries
warning?: string
} }
export type GalleryEntries = { [idOrTitle: string]: GalleryEntry } export type GalleryEntries = { [idOrTitle: string]: GalleryEntry }

View file

@ -25,6 +25,9 @@ export const _amendVariantWithDefaults = (parent: GalleryEntry, variant: Gallery
if (!variant.description && !!parent.description) { if (!variant.description && !!parent.description) {
variant.description = parent.description variant.description = parent.description
} }
if (variant.warning === undefined && !!parent.warning) {
variant.warning = parent.warning
}
return variant return variant
} }

View file

@ -27,6 +27,8 @@ const routeConfig = routeStore._routes[currentRoute.path] as GalleryListDefiniti
const router = useRouter() const router = useRouter()
const entries = ref({} as GalleryEntries) const entries = ref({} as GalleryEntries)
const variants = ref(validateVariants(props.variants)) const variants = ref(validateVariants(props.variants))
const hasWarnings = ref(false)
const hideWarnings = defineModel('showWarnings', { type: Boolean })
const onDisplayEntries = () => { const onDisplayEntries = () => {
let currentEntries = config.value.entries let currentEntries = config.value.entries
@ -36,6 +38,7 @@ const onDisplayEntries = () => {
}) })
} }
entries.value = currentEntries entries.value = currentEntries
hasWarnings.value = !!Object.values(entries.value).find(other => !!other.warning)
} }
const onTileClicked = (clickEvent: { event: Event, id: string }) => { const onTileClicked = (clickEvent: { event: Event, id: string }) => {
@ -78,6 +81,7 @@ onMounted(async () => {
<template lang="pug"> <template lang="pug">
.template.gallery-list .template.gallery-list
.navigation( .navigation(
v-if='ready' v-if='ready'
) )
@ -85,6 +89,18 @@ onMounted(async () => {
v-if='variants?.length > 0' v-if='variants?.length > 0'
@click='onNavigateBack($event)' @click='onNavigateBack($event)'
) Back ) Back
.input.labeled-checkbox(
v-if='hasWarnings'
)
label(
for='warning-toggle-checkbox'
) Hide Warnings
input(
type='checkbox'
name='warning-toggle-checkbox'
id='warning-toggle-checkbox'
v-model='hideWarnings'
)
.gallery( .gallery(
v-if='ready' v-if='ready'
) )
@ -92,6 +108,7 @@ onMounted(async () => {
v-for='(entry, id) in entries' v-for='(entry, id) in entries'
:entry='entry' :entry='entry'
:id='id' :id='id'
:hideWarnings='hideWarnings'
@click='onTileClicked($event)' @click='onTileClicked($event)'
) )
</template> </template>