elk/components/notification/NotificationPaginator.vue

65 wiersze
1.4 KiB
Vue
Czysty Zwykły widok Historia

2022-11-15 21:21:54 +00:00
<script setup lang="ts">
import type { Notification, Paginator } from 'masto'
2022-11-30 00:47:54 +00:00
import type { GroupedNotifications } from '~/types'
2022-11-15 21:21:54 +00:00
const { paginator } = defineProps<{
paginator: Paginator<any, Notification[]>
}>()
2022-11-30 00:47:54 +00:00
function groupItems(items: Notification[]): (Notification | GroupedNotifications)[] {
const results: (Notification | GroupedNotifications)[] = []
let id = 0
let followGroup: Notification[] = []
const bump = () => {
if (followGroup.length === 1) {
results.push(followGroup[0])
followGroup = []
}
else if (followGroup.length > 0) {
results.push({
id: `grouped-${id++}`,
type: 'grouped-follow',
items: followGroup,
})
followGroup = []
}
}
for (const item of items) {
if (item.type === 'follow') {
followGroup.push(item)
}
else {
bump()
results.push(item)
}
}
bump()
return results
}
2022-11-15 21:21:54 +00:00
</script>
<template>
2022-11-24 05:47:14 +00:00
<CommonPaginator :paginator="paginator">
2022-11-30 00:47:54 +00:00
<template #items="{ items }">
<template v-for="item of groupItems(items)" :key="item.id">
<NotificationGroupedFollow
v-if="item.type === 'grouped-follow'"
:items="item"
border="b base" pt-4
/>
<NotificationCard
v-else
:notification="item"
hover:bg-active
border="b base" pt-4
/>
</template>
2022-11-16 16:11:08 +00:00
</template>
</CommonPaginator>
2022-11-15 21:21:54 +00:00
</template>