make removal of gallery/project tiles optional when filters selected

This commit is contained in:
lightling 2024-05-04 00:44:44 -04:00
parent 1d7c8dd8a2
commit 2190ecf571
4 changed files with 12 additions and 3 deletions

View file

@ -95,4 +95,10 @@ export type GalleryList = {
* the tags to use for filtering entries * the tags to use for filtering entries
*/ */
tags?: EntryTagCollection tags?: EntryTagCollection
/**
* whether or not tag filtering removes entries completely from view;
* if false, they will apply a class selector instead
* in order to manually style (CSS filtering/opacity/etc.)
*/
removeFromView?: boolean
} }

View file

@ -43,4 +43,5 @@ export type ProjectList = {
content: string content: string
}} }}
tags?: EntryTagCollection tags?: EntryTagCollection
removeFromView?: boolean
} }

View file

@ -202,7 +202,8 @@ onMounted(async () => {
v-for='(entry, id) in entries' v-for='(entry, id) in entries'
) )
GalleryTile( GalleryTile(
v-if='!entry.hidden' v-if='!entry.hidden || !config.removeFromView'
:class='{ hidden: projects[id].hidden && !config.removeFromView }'
:entry='entry' :entry='entry'
:id='id' :id='id'
:hideWarnings='hideWarnings' :hideWarnings='hideWarnings'

View file

@ -63,14 +63,15 @@ onMounted(async () => {
<template lang="pug"> <template lang="pug">
.template.project-list .template.project-list
#projects( .projects(
v-if='ready' v-if='ready'
) )
Transition( Transition(
v-for='id in projectIds' v-for='id in projectIds'
) )
ProjectTile( ProjectTile(
v-if='!projects[id].hidden' v-if='!projects[id].hidden || !config.removeFromView'
:class='{ hidden: projects[id].hidden && !config.removeFromView }'
:id='id' :id='id'
:info='projects[id]' :info='projects[id]'
) )