arrayをsetに変更

This commit is contained in:
kakkokari-gtyih 2024-12-14 20:15:49 +09:00
parent 8204d686cc
commit c293cdb166

View file

@ -6,9 +6,9 @@ SPDX-License-Identifier: AGPL-3.0-only
<template> <template>
<template v-for="file in note.files"> <template v-for="file in note.files">
<div <div
v-if="(defaultStore.state.nsfw === 'force' || file.isSensitive) && defaultStore.state.nsfw !== 'ignore' && !showingFiles.includes(file.id)" v-if="(defaultStore.state.nsfw === 'force' || file.isSensitive) && defaultStore.state.nsfw !== 'ignore' && !showingFiles.has(file.id)"
:class="[$style.img, { [$style.square]: square }]" :class="[$style.img, { [$style.square]: square }]"
@click="showingFiles.push(file.id)" @click="showingFiles.add(file.id)"
> >
<!-- TODO: 画像以外のファイルに対応 --> <!-- TODO: 画像以外のファイルに対応 -->
<ImgWithBlurhash <ImgWithBlurhash
@ -59,7 +59,7 @@ defineProps<{
bgIsPanel?: boolean; bgIsPanel?: boolean;
}>(); }>();
const showingFiles = ref<string[]>([]); const showingFiles = ref<Set<string>>(new Set());
function thumbnail(image: Misskey.entities.DriveFile): string { function thumbnail(image: Misskey.entities.DriveFile): string {
return defaultStore.state.disableShowingAnimatedImages return defaultStore.state.disableShowingAnimatedImages