mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-05 18:15:53 +02:00
70 lines
1.6 KiB
Vue
70 lines
1.6 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkContainer>
|
|
<template #icon><i class="ti ti-photo"></i></template>
|
|
<template #header>{{ i18n.ts.files }}</template>
|
|
<div :class="$style.root">
|
|
<MkLoading v-if="fetching"/>
|
|
<div v-if="!fetching && notes.length > 0" class="_gaps_s">
|
|
<div :class="$style.stream">
|
|
<MkNoteMediaGrid v-for="note in notes" :note="note"/>
|
|
</div>
|
|
<MkButton rounded full @click="emit('showMore')">{{ i18n.ts.showMore }} <i class="ti ti-arrow-right"></i></MkButton>
|
|
</div>
|
|
<p v-if="!fetching && notes.length == 0">{{ i18n.ts.nothing }}</p>
|
|
</div>
|
|
</MkContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted, ref } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import { misskeyApi } from '@/utility/misskey-api.js';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import MkContainer from '@/components/MkContainer.vue';
|
|
import { i18n } from '@/i18n.js';
|
|
import MkNoteMediaGrid from '@/components/MkNoteMediaGrid.vue';
|
|
|
|
const props = defineProps<{
|
|
user: Misskey.entities.UserDetailed;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'showMore'): void;
|
|
}>();
|
|
|
|
const fetching = ref(true);
|
|
const notes = ref<Misskey.entities.Note[]>([]);
|
|
|
|
onMounted(() => {
|
|
misskeyApi('users/notes', {
|
|
userId: props.user.id,
|
|
withFiles: true,
|
|
limit: 10,
|
|
}).then(_notes => {
|
|
notes.value = _notes;
|
|
fetching.value = false;
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root {
|
|
padding: 8px;
|
|
}
|
|
|
|
.stream {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
|
|
grid-gap: 6px;
|
|
|
|
>:nth-child(n+9) {
|
|
display: none;
|
|
}
|
|
}
|
|
</style>
|