2022-11-14 02:20:07 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Status } from 'masto'
|
|
|
|
|
2022-11-14 14:54:30 +00:00
|
|
|
const props = withDefaults(
|
|
|
|
defineProps<{
|
|
|
|
status: Status
|
|
|
|
actions?: boolean
|
|
|
|
}>(),
|
|
|
|
{
|
|
|
|
actions: true,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
const status = $computed(() => {
|
|
|
|
if (props.status.reblog && !props.status.content)
|
|
|
|
return props.status.reblog
|
|
|
|
return props.status
|
|
|
|
})
|
2022-11-14 02:20:07 +00:00
|
|
|
|
2022-11-14 14:54:30 +00:00
|
|
|
const rebloggedBy = $computed(() => props.status.reblog ? props.status.account : null)
|
|
|
|
|
|
|
|
const el = ref<HTMLElement>()
|
2022-11-14 02:20:07 +00:00
|
|
|
const router = useRouter()
|
2022-11-14 03:33:09 +00:00
|
|
|
|
2022-11-14 02:20:07 +00:00
|
|
|
function go(e: MouseEvent) {
|
2022-11-14 03:33:09 +00:00
|
|
|
const path = e.composedPath() as HTMLElement[]
|
2022-11-23 08:37:31 +00:00
|
|
|
const el = path.find(el => ['A', 'BUTTON', 'IMG', 'VIDEO'].includes(el.tagName?.toUpperCase()))
|
|
|
|
if (!el)
|
2022-11-14 02:20:07 +00:00
|
|
|
router.push(`/@${status.account.acct}/${status.id}`)
|
|
|
|
}
|
2022-11-14 02:56:48 +00:00
|
|
|
|
|
|
|
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`,
|
|
|
|
},
|
|
|
|
})
|
2022-11-14 02:20:07 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-23 08:37:31 +00:00
|
|
|
<div ref="el" flex flex-col gap-2 px-4 hover:bg="gray/10" transition="duration-100" cursor-pointer @click="go">
|
2022-11-14 14:54:30 +00:00
|
|
|
<div v-if="rebloggedBy" pl8>
|
|
|
|
<div flex gap-1 items-center text-gray:75 text-sm>
|
|
|
|
<div i-ri:repeat-fill mr-1 />
|
2022-11-23 00:00:52 +00:00
|
|
|
<AccountInlineInfo font-bold :account="rebloggedBy" />
|
2022-11-14 14:54:30 +00:00
|
|
|
reblogged
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-11-14 02:56:48 +00:00
|
|
|
<AccountInfo :account="status.account">
|
2022-11-23 07:46:34 +00:00
|
|
|
<template #default>
|
2022-11-23 00:00:52 +00:00
|
|
|
<div flex-auto />
|
2022-11-23 07:46:34 +00:00
|
|
|
<div text-sm op50 :title="status.createdAt">
|
2022-11-23 00:00:52 +00:00
|
|
|
{{ timeago }}
|
|
|
|
</div>
|
|
|
|
</template>
|
2022-11-14 02:56:48 +00:00
|
|
|
</AccountInfo>
|
2022-11-23 07:46:34 +00:00
|
|
|
<StatusReplyingTo :status="status" ml5 mt--1 />
|
|
|
|
<div pl15>
|
2022-11-14 14:54:30 +00:00
|
|
|
<StatusBody :status="status" />
|
|
|
|
<StatusMedia
|
|
|
|
v-if="status.mediaAttachments?.length"
|
|
|
|
:status="status"
|
|
|
|
/>
|
|
|
|
<StatusCard
|
|
|
|
v-if="status.reblog"
|
|
|
|
:status="status.reblog" border="~ rounded"
|
|
|
|
:actions="false"
|
|
|
|
/>
|
|
|
|
</div>
|
2022-11-23 07:46:34 +00:00
|
|
|
<StatusActions v-if="actions !== false" pl13 :status="status" />
|
2022-11-14 02:20:07 +00:00
|
|
|
</div>
|
|
|
|
</template>
|