2023-07-27 08:31:52 +03:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2018-02-15 11:33:34 +02:00
|
|
|
<template>
|
2021-04-16 06:17:22 +03:00
|
|
|
<MkContainer :max-height="300" :foldable="true">
|
2023-09-30 22:53:52 +03:00
|
|
|
<template #icon><i class="ph-image-square ph-bold ph-lg"></i></template>
|
2023-10-03 14:26:11 +03:00
|
|
|
<template #header>{{ i18n.ts.files }}</template>
|
2023-01-15 01:30:29 +02:00
|
|
|
<div :class="$style.root">
|
2020-11-25 14:31:34 +02:00
|
|
|
<MkLoading v-if="fetching"/>
|
2023-10-03 14:26:11 +03:00
|
|
|
<div v-if="!fetching && files.length > 0" :class="$style.stream">
|
2023-10-10 13:49:25 +03:00
|
|
|
<template v-for="file in files" :key="file.note.id + file.file.id">
|
|
|
|
<div v-if="file.file.isSensitive && !showingFiles.includes(file.file.id)" :class="$style.sensitive" @click="showingFiles.push(file.file.id)">
|
|
|
|
<div>
|
2023-10-31 20:33:24 +02:00
|
|
|
<div><i class="ph-eye-slash ph-bold ph-lg"></i> {{ i18n.ts.sensitive }}</div>
|
2023-10-10 13:49:25 +03:00
|
|
|
<div>{{ i18n.ts.clickToShow }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<MkA v-else :class="$style.img" :to="notePage(file.note)">
|
|
|
|
<!-- TODO: 画像以外のファイルに対応 -->
|
|
|
|
<ImgWithBlurhash :hash="file.file.blurhash" :src="thumbnail(file.file)" :title="file.file.name"/>
|
|
|
|
</MkA>
|
|
|
|
</template>
|
2020-11-25 14:31:34 +02:00
|
|
|
</div>
|
2023-10-03 14:26:11 +03:00
|
|
|
<p v-if="!fetching && files.length == 0" :class="$style.empty">{{ i18n.ts.nothing }}</p>
|
2018-02-15 11:33:34 +02:00
|
|
|
</div>
|
2020-11-25 14:31:34 +02:00
|
|
|
</MkContainer>
|
2018-02-15 11:33:34 +02:00
|
|
|
</template>
|
|
|
|
|
2022-09-05 12:51:23 +03:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted } from 'vue';
|
2023-09-04 07:33:38 +03:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-09-19 10:37:43 +03:00
|
|
|
import { getStaticImageUrl } from '@/scripts/media-proxy.js';
|
|
|
|
import { notePage } from '@/filters/note.js';
|
|
|
|
import * as os from '@/os.js';
|
2022-09-06 12:21:49 +03:00
|
|
|
import MkContainer from '@/components/MkContainer.vue';
|
2022-08-30 18:24:33 +03:00
|
|
|
import ImgWithBlurhash from '@/components/MkImgWithBlurhash.vue';
|
2023-09-19 10:37:43 +03:00
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2018-03-27 10:51:12 +03:00
|
|
|
|
2022-09-05 12:51:23 +03:00
|
|
|
const props = defineProps<{
|
2023-09-04 07:33:38 +03:00
|
|
|
user: Misskey.entities.UserDetailed;
|
2022-09-05 12:51:23 +03:00
|
|
|
}>();
|
|
|
|
|
|
|
|
let fetching = $ref(true);
|
2023-10-03 14:26:11 +03:00
|
|
|
let files = $ref<{
|
2023-09-04 07:33:38 +03:00
|
|
|
note: Misskey.entities.Note;
|
|
|
|
file: Misskey.entities.DriveFile;
|
2022-09-05 12:51:23 +03:00
|
|
|
}[]>([]);
|
2023-10-10 13:49:25 +03:00
|
|
|
let showingFiles = $ref<string[]>([]);
|
2022-09-05 12:51:23 +03:00
|
|
|
|
2023-09-04 07:33:38 +03:00
|
|
|
function thumbnail(image: Misskey.entities.DriveFile): string {
|
2022-09-05 12:51:23 +03:00
|
|
|
return defaultStore.state.disableShowingAnimatedImages
|
2023-03-11 07:11:40 +02:00
|
|
|
? getStaticImageUrl(image.url)
|
2022-09-05 12:51:23 +03:00
|
|
|
: image.thumbnailUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
os.api('users/notes', {
|
|
|
|
userId: props.user.id,
|
2023-10-03 14:26:11 +03:00
|
|
|
withFiles: true,
|
2022-09-05 12:51:23 +03:00
|
|
|
excludeNsfw: defaultStore.state.nsfw !== 'ignore',
|
2023-10-03 14:26:11 +03:00
|
|
|
limit: 15,
|
2022-09-05 12:51:23 +03:00
|
|
|
}).then(notes => {
|
|
|
|
for (const note of notes) {
|
|
|
|
for (const file of note.files) {
|
2023-10-03 14:26:11 +03:00
|
|
|
files.push({
|
2022-09-05 12:51:23 +03:00
|
|
|
note,
|
|
|
|
file,
|
|
|
|
});
|
2018-12-11 13:36:55 +02:00
|
|
|
}
|
2022-09-05 12:51:23 +03:00
|
|
|
}
|
|
|
|
fetching = false;
|
|
|
|
});
|
2018-02-15 11:33:34 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-01-15 01:30:29 +02:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-11-25 14:31:34 +02:00
|
|
|
padding: 8px;
|
2023-01-15 01:30:29 +02:00
|
|
|
}
|
2020-11-25 14:31:34 +02:00
|
|
|
|
2023-01-15 01:30:29 +02:00
|
|
|
.stream {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
|
|
|
|
grid-gap: 6px;
|
|
|
|
}
|
2018-02-15 11:33:34 +02:00
|
|
|
|
2023-01-15 01:30:29 +02:00
|
|
|
.img {
|
|
|
|
height: 128px;
|
2023-10-31 20:44:34 +02:00
|
|
|
border-radius: var(--radius-sm);
|
2023-01-15 01:30:29 +02:00
|
|
|
overflow: clip;
|
|
|
|
}
|
2018-02-15 11:33:34 +02:00
|
|
|
|
2023-01-15 01:30:29 +02:00
|
|
|
.empty {
|
|
|
|
margin: 0;
|
|
|
|
padding: 16px;
|
|
|
|
text-align: center;
|
2020-01-29 21:37:25 +02:00
|
|
|
}
|
2023-10-10 13:49:25 +03:00
|
|
|
|
|
|
|
.sensitive {
|
|
|
|
display: grid;
|
|
|
|
place-items: center;
|
|
|
|
}
|
2018-02-15 11:33:34 +02:00
|
|
|
</style>
|