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