2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2021-11-19 11:36:12 +01:00
|
|
|
<div v-sticky-container class="yrzkoczt">
|
2022-01-09 13:35:35 +01:00
|
|
|
<MkTab v-model="include" class="tab">
|
2020-12-26 02:47:36 +01:00
|
|
|
<option :value="null">{{ $ts.notes }}</option>
|
|
|
|
<option value="replies">{{ $ts.notesAndReplies }}</option>
|
|
|
|
<option value="files">{{ $ts.withFiles }}</option>
|
2020-11-28 16:18:54 +01:00
|
|
|
</MkTab>
|
2022-01-21 08:43:56 +01:00
|
|
|
<XNotes :no-gap="true" :pagination="pagination"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-09 13:35:35 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref, computed } from 'vue';
|
|
|
|
import * as misskey from 'misskey-js';
|
2021-11-11 18:02:25 +01:00
|
|
|
import XNotes from '@/components/notes.vue';
|
|
|
|
import MkTab from '@/components/tab.vue';
|
|
|
|
import * as os from '@/os';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-09 13:35:35 +01:00
|
|
|
const props = defineProps<{
|
|
|
|
user: misskey.entities.UserDetailed;
|
|
|
|
}>();
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-09 13:35:35 +01:00
|
|
|
const include = ref<string | null>(null);
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-09 13:35:35 +01:00
|
|
|
const pagination = {
|
|
|
|
endpoint: 'users/notes' as const,
|
|
|
|
limit: 10,
|
|
|
|
params: computed(() => ({
|
|
|
|
userId: props.user.id,
|
|
|
|
includeReplies: include.value === 'replies',
|
|
|
|
withFiles: include.value === 'files',
|
|
|
|
})),
|
|
|
|
};
|
2020-01-29 20:37:25 +01:00
|
|
|
</script>
|
2021-04-13 20:23:29 +02:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.yrzkoczt {
|
|
|
|
> .tab {
|
2021-10-16 11:18:41 +02:00
|
|
|
margin: calc(var(--margin) / 2) 0;
|
|
|
|
padding: calc(var(--margin) / 2) 0;
|
2021-04-13 20:23:29 +02:00
|
|
|
background: var(--bg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|