2018-02-15 10:33:34 +01:00
|
|
|
<template>
|
2022-11-11 02:50:29 +01:00
|
|
|
<MkContainer id="photos-container" :max-height="300" :foldable="true">
|
2022-11-10 23:12:44 +01:00
|
|
|
<template #header><i class="ph-image-bold ph-lg" style="margin-right: 0.5em;"></i>{{ i18n.ts.images }}</template>
|
2020-11-25 13:31:34 +01:00
|
|
|
<div class="ujigsodd">
|
|
|
|
<MkLoading v-if="fetching"/>
|
2021-11-19 11:36:12 +01:00
|
|
|
<div v-if="!fetching && images.length > 0" class="stream">
|
2022-09-05 11:51:23 +02:00
|
|
|
<MkA
|
|
|
|
v-for="image in images"
|
|
|
|
:key="image.note.id + image.file.id"
|
2020-11-25 13:31:34 +01:00
|
|
|
class="img"
|
|
|
|
:to="notePage(image.note)"
|
2021-04-16 05:06:54 +02:00
|
|
|
>
|
2022-09-05 11:51:23 +02:00
|
|
|
<ImgWithBlurhash :hash="image.file.blurhash" :src="thumbnail(image.file)" :title="image.file.name"/>
|
2021-04-16 05:06:54 +02:00
|
|
|
</MkA>
|
2020-11-25 13:31:34 +01:00
|
|
|
</div>
|
2022-11-10 23:12:44 +01:00
|
|
|
<p v-if="!fetching && images.length == 0" class="empty">{{ i18n.ts.nothing }}</p>
|
2018-02-15 10:33:34 +01:00
|
|
|
</div>
|
2020-11-25 13:31:34 +01:00
|
|
|
</MkContainer>
|
2018-02-15 10:33:34 +01:00
|
|
|
</template>
|
|
|
|
|
2022-09-05 11:51:23 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted } from 'vue';
|
|
|
|
import * as misskey from 'misskey-js';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { getStaticImageUrl } from '@/scripts/get-static-image-url';
|
2021-11-28 12:29:37 +01:00
|
|
|
import { notePage } from '@/filters/note';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
2022-09-06 11:21:49 +02:00
|
|
|
import MkContainer from '@/components/MkContainer.vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import ImgWithBlurhash from '@/components/MkImgWithBlurhash.vue';
|
2022-09-05 11:51:23 +02:00
|
|
|
import { defaultStore } from '@/store';
|
2022-11-10 23:12:44 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2018-03-27 09:51:12 +02:00
|
|
|
|
2022-09-05 11:51:23 +02: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
|
|
|
|
? getStaticImageUrl(image.thumbnailUrl)
|
|
|
|
: image.thumbnailUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
const image = [
|
|
|
|
'image/jpeg',
|
|
|
|
'image/png',
|
|
|
|
'image/gif',
|
|
|
|
'image/apng',
|
|
|
|
'image/vnd.mozilla.apng',
|
2022-11-15 03:53:38 +01:00
|
|
|
'image/avif',
|
2022-09-05 11:51:23 +02:00
|
|
|
];
|
|
|
|
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 12:36:55 +01:00
|
|
|
}
|
2022-09-05 11:51:23 +02:00
|
|
|
}
|
|
|
|
fetching = false;
|
|
|
|
});
|
2018-02-15 10:33:34 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<style lang="scss" scoped>
|
2022-11-11 02:50:29 +01:00
|
|
|
#photos-container {
|
|
|
|
--stickyTop: 0;
|
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
.ujigsodd {
|
2020-11-25 13:31:34 +01:00
|
|
|
padding: 8px;
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .stream {
|
2021-04-16 02:41:56 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
|
|
|
|
grid-gap: 6px;
|
2018-02-15 10:33:34 +01:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .img {
|
2021-04-16 02:41:56 +02:00
|
|
|
height: 128px;
|
2020-10-17 13:12:00 +02:00
|
|
|
border-radius: 6px;
|
2022-07-13 14:41:06 +02:00
|
|
|
overflow: clip;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
2018-02-15 10:33:34 +01:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .empty {
|
|
|
|
margin: 0;
|
|
|
|
padding: 16px;
|
|
|
|
text-align: center;
|
2018-02-15 10:33:34 +01:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> i {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-15 10:33:34 +01:00
|
|
|
</style>
|