2018-02-15 11:33:34 +02:00
|
|
|
<template>
|
2021-04-16 06:17:22 +03:00
|
|
|
<MkContainer :max-height="300" :foldable="true">
|
2023-01-15 01:30:29 +02:00
|
|
|
<template #icon><i class="ti ti-photo"></i></template>
|
|
|
|
<template #header>{{ $ts.images }}</template>
|
|
|
|
<div :class="$style.root">
|
2020-11-25 14:31:34 +02:00
|
|
|
<MkLoading v-if="fetching"/>
|
2023-01-15 01:30:29 +02:00
|
|
|
<div v-if="!fetching && images.length > 0" :class="$style.stream">
|
2022-09-05 12:51:23 +03:00
|
|
|
<MkA
|
|
|
|
v-for="image in images"
|
|
|
|
:key="image.note.id + image.file.id"
|
2023-01-15 01:30:29 +02:00
|
|
|
:class="$style.img"
|
2020-11-25 14:31:34 +02:00
|
|
|
:to="notePage(image.note)"
|
2021-04-16 06:06:54 +03:00
|
|
|
>
|
2022-09-05 12:51:23 +03:00
|
|
|
<ImgWithBlurhash :hash="image.file.blurhash" :src="thumbnail(image.file)" :title="image.file.name"/>
|
2021-04-16 06:06:54 +03:00
|
|
|
</MkA>
|
2020-11-25 14:31:34 +02:00
|
|
|
</div>
|
2023-01-15 01:30:29 +02:00
|
|
|
<p v-if="!fetching && images.length == 0" :class="$style.empty">{{ $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';
|
|
|
|
import * as misskey from 'misskey-js';
|
2022-12-30 05:00:50 +02:00
|
|
|
import { getStaticImageUrl } from '@/scripts/media-proxy';
|
2021-11-28 13:29:37 +02:00
|
|
|
import { notePage } from '@/filters/note';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
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';
|
2022-09-05 12:51:23 +03:00
|
|
|
import { defaultStore } from '@/store';
|
2018-03-27 10:51:12 +03:00
|
|
|
|
2022-09-05 12:51:23 +03:00
|
|
|
const props = defineProps<{
|
|
|
|
user: misskey.entities.UserDetailed;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
let fetching = $ref(true);
|
|
|
|
let images = $ref<{
|
|
|
|
note: misskey.entities.Note;
|
|
|
|
file: misskey.entities.DriveFile;
|
|
|
|
}[]>([]);
|
|
|
|
|
|
|
|
function thumbnail(image: misskey.entities.DriveFile): string {
|
|
|
|
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(() => {
|
|
|
|
const image = [
|
|
|
|
'image/jpeg',
|
2022-12-08 07:49:49 +02:00
|
|
|
'image/webp',
|
|
|
|
'image/avif',
|
2022-09-05 12:51:23 +03:00
|
|
|
'image/png',
|
|
|
|
'image/gif',
|
|
|
|
'image/apng',
|
|
|
|
'image/vnd.mozilla.apng',
|
|
|
|
];
|
|
|
|
os.api('users/notes', {
|
|
|
|
userId: props.user.id,
|
|
|
|
fileType: image,
|
|
|
|
excludeNsfw: defaultStore.state.nsfw !== 'ignore',
|
|
|
|
limit: 10,
|
|
|
|
}).then(notes => {
|
|
|
|
for (const note of notes) {
|
|
|
|
for (const file of note.files) {
|
|
|
|
images.push({
|
|
|
|
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;
|
|
|
|
border-radius: 6px;
|
|
|
|
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
|
|
|
}
|
2018-02-15 11:33:34 +02:00
|
|
|
</style>
|