Sharkey/packages/frontend/src/pages/user/index.files.vue

107 lines
2.7 KiB
Vue
Raw Normal View History

<!--
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">
<MkLoading v-if="fetching"/>
2023-10-03 14:26:11 +03:00
<div v-if="!fetching && files.length > 0" :class="$style.stream">
<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>
<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>
</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>
</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';
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';
import MkContainer from '@/components/MkContainer.vue';
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<{
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<{
note: Misskey.entities.Note;
file: Misskey.entities.DriveFile;
2022-09-05 12:51:23 +03:00
}[]>([]);
let showingFiles = $ref<string[]>([]);
2022-09-05 12:51:23 +03:00
function thumbnail(image: Misskey.entities.DriveFile): string {
2022-09-05 12:51:23 +03:00
return defaultStore.state.disableShowingAnimatedImages
? 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,
});
}
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 {
padding: 8px;
2023-01-15 01:30:29 +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;
border-radius: 6px;
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;
}
.sensitive {
display: grid;
place-items: center;
}
2018-02-15 11:33:34 +02:00
</style>