elk/components/status/StatusCard.vue

119 lines
3.4 KiB
Vue
Raw Normal View History

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
2022-11-24 11:35:26 +00:00
hover?: boolean
2022-11-14 14:54:30 +00:00
}>(),
2022-11-25 10:54:49 +00:00
{ actions: true },
2022-11-14 14:54:30 +00:00
)
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
function onclick(e: MouseEvent | KeyboardEvent) {
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-24 04:02:18 +00:00
go()
}
function go() {
2022-11-24 05:47:14 +00:00
cacheStatus(status)
2022-11-24 04:02:18 +00:00
router.push(getStatusPath(status))
2022-11-14 02:20:07 +00:00
}
2022-11-14 02:56:48 +00:00
const createdAt = useFormattedDateTime(status.createdAt)
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-25 23:46:25 +00:00
<div ref="el" flex flex-col gap-2 px-4 transition-100 :class="{ 'hover:bg-active': hover }" tabindex="0" focus:outline-none focus-visible:ring="2 primary" @click="onclick" @keydown.enter="onclick">
2022-11-14 14:54:30 +00:00
<div v-if="rebloggedBy" pl8>
2022-11-25 10:20:01 +00:00
<div flex="~ wrap" gap-1 items-center text-gray:75 text-sm>
2022-11-14 14:54:30 +00:00
<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-24 14:20:50 +00:00
<div flex gap-4>
2022-11-25 13:58:49 +00:00
<AccountAvatar w-12 h-12 :account="status.account" hover />
2022-11-25 10:20:01 +00:00
<div flex="~ col 1" min-w-0>
2022-11-24 14:42:44 +00:00
<div flex>
<StatusAccountDetails :account="status.account" />
<div flex-auto />
<div text-sm op50 flex="~ row nowrap" hover:underline>
<CommonTooltip :content="createdAt">
<a :title="status.createdAt" :href="getStatusPath(status)" @click.prevent="go">
<time text-sm op50 hover:underline :datetime="status.createdAt">
{{ timeago }}
</time>
</a>
</CommonTooltip>
<StatusEditIndicator :status="status" />
</div>
2022-11-24 14:42:44 +00:00
</div>
2022-11-24 14:20:50 +00:00
<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>
2022-11-24 14:20:50 +00:00
<StatusCard
v-if="status.reblog"
:status="status.reblog" border="~ rounded"
:actions="false"
/>
2022-11-23 00:00:52 +00:00
</div>
2022-11-24 14:20:50 +00:00
<StatusActions v-if="actions !== false" pt2 :status="status" />
</div>
2022-11-14 14:54:30 +00:00
</div>
2022-11-14 02:20:07 +00:00
</div>
</template>