frontend/app/components/timelines/account.vue
2025-12-09 22:32:22 +01:00

46 lines
824 B
Vue

<template>
<Timeline
type="status"
:items="items"
:is-loading="isLoading"
:has-reached-end="hasReachedEnd"
:error="error"
:load-next="loadNext"
:load-prev="loadPrev"
:remove-item="removeItem"
:update-item="updateItem"
/>
</template>
<script lang="ts" setup>
import type { z } from "zod";
import Timeline from "./timeline.vue";
const props = defineProps<{
id: string;
}>();
const {
error,
hasReachedEnd,
isLoading,
items,
loadNext,
loadPrev,
removeItem,
updateItem,
} = useAccountTimeline(props.id);
useListen("note:delete", ({ id }) => {
removeItem(id);
});
useListen("note:edit", (updatedNote) => {
updateItem(updatedNote);
});
useListen("composer:send", () => {
loadPrev();
});
</script>