hippofish/packages/client/src/pages/user/index.timeline.vue

45 lines
1.1 KiB
Vue
Raw Normal View History

<template>
2023-04-08 02:01:42 +02:00
<MkStickyContainer>
<template #header>
<MkTab v-model="include" :class="$style.tab">
<option :value="null">{{ i18n.ts.notes }}</option>
<option value="replies">{{ i18n.ts.notesAndReplies }}</option>
<option value="files">{{ i18n.ts.withFiles }}</option>
</MkTab>
</template>
<XNotes :no-gap="true" :pagination="pagination" />
</MkStickyContainer>
</template>
<script lang="ts" setup>
2023-09-02 01:27:33 +02:00
import { computed, ref } from "vue";
import type { entities } from "firefish-js";
2023-04-08 02:01:42 +02:00
import XNotes from "@/components/MkNotes.vue";
import MkTab from "@/components/MkTab.vue";
import { i18n } from "@/i18n";
const props = defineProps<{
user: entities.UserDetailed;
}>();
const include = ref<string | null>(null);
const pagination = {
2023-04-08 02:01:42 +02:00
endpoint: "users/notes" as const,
limit: 10,
params: computed(() => ({
userId: props.user.id,
2023-04-08 02:01:42 +02:00
includeReplies: include.value === "replies",
withFiles: include.value === "files",
})),
};
</script>
2021-04-13 20:23:29 +02:00
2022-07-14 16:31:01 +02:00
<style lang="scss" module>
.tab {
margin: calc(var(--margin) / 2) 0;
padding: calc(var(--margin) / 2) 0;
background: var(--bg);
2021-04-13 20:23:29 +02:00
}
</style>