refactor(status): rework edit history list
parent
6308aa5c9a
commit
c64106c98a
|
@ -22,7 +22,9 @@ const {
|
||||||
|
|
||||||
defineSlots<{
|
defineSlots<{
|
||||||
default: {
|
default: {
|
||||||
|
items: T[]
|
||||||
item: T
|
item: T
|
||||||
|
index: number
|
||||||
active?: boolean
|
active?: boolean
|
||||||
older?: T
|
older?: T
|
||||||
newer?: T // newer is undefined when index === 0
|
newer?: T // newer is undefined when index === 0
|
||||||
|
@ -61,6 +63,8 @@ const { items, prevItems, update, state, endAnchor, error } = usePaginator(pagin
|
||||||
:active="active"
|
:active="active"
|
||||||
:older="items[index + 1]"
|
:older="items[index + 1]"
|
||||||
:newer="items[index - 1]"
|
:newer="items[index - 1]"
|
||||||
|
:index="index"
|
||||||
|
:items="items"
|
||||||
/>
|
/>
|
||||||
</DynamicScroller>
|
</DynamicScroller>
|
||||||
</template>
|
</template>
|
||||||
|
@ -71,6 +75,8 @@ const { items, prevItems, update, state, endAnchor, error } = usePaginator(pagin
|
||||||
:item="item"
|
:item="item"
|
||||||
:older="items[index + 1]"
|
:older="items[index + 1]"
|
||||||
:newer="items[index - 1]"
|
:newer="items[index - 1]"
|
||||||
|
:index="index"
|
||||||
|
:items="items"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</slot>
|
</slot>
|
||||||
|
|
|
@ -6,38 +6,43 @@ const { status } = defineProps<{
|
||||||
status: mastodon.v1.Status
|
status: mastodon.v1.Status
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
const masto = useMasto()
|
const paginator = useMasto().v1.statuses.listHistory(status.id)
|
||||||
const { data: statusEdits } = useAsyncData(`status:history:${status.id}`, () => masto.v1.statuses.listHistory(status.id).then(res => res.reverse()))
|
|
||||||
|
|
||||||
const showHistory = (edit: mastodon.v1.StatusEdit) => {
|
const showHistory = (edit: mastodon.v1.StatusEdit) => {
|
||||||
openEditHistoryDialog(edit)
|
openEditHistoryDialog(edit)
|
||||||
}
|
}
|
||||||
const timeAgoOptions = useTimeAgoOptions()
|
const timeAgoOptions = useTimeAgoOptions()
|
||||||
|
|
||||||
|
const reverseHistory = (items: mastodon.v1.StatusEdit[]) =>
|
||||||
|
[...items].reverse()
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<template v-if="statusEdits">
|
<CommonPaginator :paginator="paginator" key-prop="createdAt" :preprocess="reverseHistory">
|
||||||
<CommonDropdownItem
|
<template #default="{ items, item, index }">
|
||||||
v-for="(edit, idx) in statusEdits"
|
<CommonDropdownItem
|
||||||
:key="idx"
|
px="0.5"
|
||||||
px="0.5"
|
@click="showHistory(item)"
|
||||||
@click="showHistory(edit)"
|
>
|
||||||
>
|
{{ getDisplayName(item.account) }}
|
||||||
{{ getDisplayName(edit.account) }}
|
|
||||||
|
|
||||||
<template v-if="idx === statusEdits.length - 1">
|
<template v-if="index === items.length - 1">
|
||||||
<i18n-t keypath="status_history.created">
|
<i18n-t keypath="status_history.created">
|
||||||
{{ formatTimeAgo(new Date(edit.createdAt), timeAgoOptions) }}
|
{{ formatTimeAgo(new Date(item.createdAt), timeAgoOptions) }}
|
||||||
|
</i18n-t>
|
||||||
|
</template>
|
||||||
|
<i18n-t v-else keypath="status_history.edited">
|
||||||
|
{{ formatTimeAgo(new Date(item.createdAt), timeAgoOptions) }}
|
||||||
</i18n-t>
|
</i18n-t>
|
||||||
</template>
|
</CommonDropdownItem>
|
||||||
<template v-else>
|
</template>
|
||||||
<i18n-t keypath="status_history.edited">
|
<template #loading>
|
||||||
{{ formatTimeAgo(new Date(edit.createdAt), timeAgoOptions) }}
|
<StatusEditHistorySkeleton />
|
||||||
</i18n-t>
|
<StatusEditHistorySkeleton op50 />
|
||||||
</template>
|
<StatusEditHistorySkeleton op25 />
|
||||||
</CommonDropdownItem>
|
</template>
|
||||||
</template>
|
<template #done>
|
||||||
<template v-else>
|
<span />
|
||||||
<div i-ri:loader-2-fill animate-spin text-2xl ma />
|
</template>
|
||||||
</template>
|
</CommonPaginator>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<div class="skeleton-loading-bg" h-5 w-full rounded my2 />
|
||||||
|
</template>
|
Loading…
Reference in New Issue