mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
114 lines
3 KiB
Vue
114 lines
3 KiB
Vue
<script setup lang="ts">
|
|
import type { Status } from 'masto'
|
|
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
status: Status
|
|
actions?: boolean
|
|
hover?: boolean
|
|
}>(),
|
|
{ actions: true },
|
|
)
|
|
|
|
const status = $computed(() => {
|
|
if (props.status.reblog && !props.status.content)
|
|
return props.status.reblog
|
|
return props.status
|
|
})
|
|
|
|
const rebloggedBy = $computed(() => props.status.reblog ? props.status.account : null)
|
|
|
|
const el = ref<HTMLElement>()
|
|
const router = useRouter()
|
|
|
|
function onclick(e: MouseEvent) {
|
|
const path = e.composedPath() as HTMLElement[]
|
|
const el = path.find(el => ['A', 'BUTTON', 'IMG', 'VIDEO'].includes(el.tagName?.toUpperCase()))
|
|
if (!el)
|
|
go()
|
|
}
|
|
|
|
function go() {
|
|
cacheStatus(status)
|
|
router.push(getStatusPath(status))
|
|
}
|
|
|
|
const createdAt = useFormattedDateTime(status.createdAt)
|
|
const timeago = useTimeAgo(() => status.createdAt, {
|
|
showSecond: true,
|
|
messages: {
|
|
justNow: 'just now',
|
|
past: n => n,
|
|
future: n => n.match(/\d/) ? `in ${n}` : n,
|
|
month: (n, past) => n === 1
|
|
? past
|
|
? 'last month'
|
|
: 'next month'
|
|
: `${n}m`,
|
|
year: (n, past) => n === 1
|
|
? past
|
|
? 'last year'
|
|
: 'next year'
|
|
: `${n}y`,
|
|
day: (n, past) => n === 1
|
|
? past
|
|
? 'yesterday'
|
|
: 'tomorrow'
|
|
: `${n}d`,
|
|
week: (n, past) => n === 1
|
|
? past
|
|
? 'last week'
|
|
: 'next week'
|
|
: `${n} week${n > 1 ? 's' : ''}`,
|
|
hour: n => `${n}h`,
|
|
minute: n => `${n}min`,
|
|
second: n => `${n}s`,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div ref="el" flex flex-col gap-2 px-4 transition-100 cursor-pointer :class="{ 'hover:bg-active': hover }" @click="onclick">
|
|
<div v-if="rebloggedBy" pl8>
|
|
<div flex="~ wrap" gap-1 items-center text-gray:75 text-sm>
|
|
<div i-ri:repeat-fill mr-1 />
|
|
<AccountInlineInfo font-bold :account="rebloggedBy" />
|
|
reblogged
|
|
</div>
|
|
</div>
|
|
<div flex gap-4>
|
|
<AccountAvatar w-12 h-12 :account="status.account" hover />
|
|
<div flex="~ col 1" min-w-0>
|
|
<div flex>
|
|
<StatusAccountDetails :account="status.account" />
|
|
<div flex-auto />
|
|
<CommonTooltip :content="createdAt">
|
|
<time text-sm op50 hover:underline :title="status.createdAt" :datetime="status.createdAt">
|
|
{{ timeago }}
|
|
</time>
|
|
</CommonTooltip>
|
|
</div>
|
|
<StatusReplyingTo v-if="status.inReplyToAccountId" :status="status" pt1 />
|
|
<div>
|
|
<StatusSpoiler :enabled="status.sensitive">
|
|
<template #spoiler>
|
|
{{ status.spoilerText }}
|
|
</template>
|
|
<StatusBody :status="status" />
|
|
<StatusMedia
|
|
v-if="status.mediaAttachments?.length"
|
|
:status="status"
|
|
/>
|
|
</StatusSpoiler>
|
|
<StatusCard
|
|
v-if="status.reblog"
|
|
:status="status.reblog" border="~ rounded"
|
|
:actions="false"
|
|
/>
|
|
</div>
|
|
<StatusActions v-if="actions !== false" pt2 :status="status" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|