diff --git a/libs/types/src/content/templates/shared.d.ts b/libs/types/src/content/templates/shared.d.ts index eeef640..a16ac28 100644 --- a/libs/types/src/content/templates/shared.d.ts +++ b/libs/types/src/content/templates/shared.d.ts @@ -56,6 +56,16 @@ export type ListWithTags = { removeFromView?: boolean } & ListWithEntries +/** + * Defines a list that has warnings on its entries + */ +export type ListWithWarnings = { + /** + * whether or not to hide the warnings toggle from the list page + */ + removeHideWarningsToggle?: boolean +} & ListWithEntries + /** * Defines an entry with common media-related fields */ diff --git a/projects/frontend/src/views/shared/media-list.vue b/projects/frontend/src/views/shared/media-list.vue index e7d6a5b..6d55503 100644 --- a/projects/frontend/src/views/shared/media-list.vue +++ b/projects/frontend/src/views/shared/media-list.vue @@ -3,6 +3,7 @@ import { computed, onMounted, ref } from 'vue' import type { ConfigfulRouteDefinition, ListWithTags, + ListWithWarnings, MediaEntry, ResolvedListEntries, } from '@goldenwere/mackenzii-types' @@ -14,7 +15,9 @@ import FilterPanel from 'src/components/shared/filter-panel.vue' import GalleryTile from '../gallery/gallery-tile.vue' import ArticleTile from '../article/article-tile.vue' -type MediaList = ListWithTags +type MediaList = + & ListWithTags + & ListWithWarnings /** * A wrapper around {@link ResolvedListEntries} for the app's use only which adds additional fields @@ -100,7 +103,7 @@ onMounted(async () => { v-if='ready' ) .input.labeled-checkbox( - v-if='hasWarnings' + v-if='hasWarnings && !config.removeHideWarningsToggle' ) label( for='warning-toggle-checkbox'