1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-16 00:49:58 +01:00
elk/components/status/StatusCard.vue

70 lines
1.5 KiB
Vue
Raw Normal View History

2022-11-14 02:20:07 +00:00
<script setup lang="ts">
import type { Status } from 'masto'
const { status } = defineProps<{
status: Status
}>()
const el = ref<HTMLElement>()
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[]
const hasButton = path.find(el => el.tagName === 'A' || el.tagName === 'BUTTON')
if (hasButton)
return
if (path.find(i => i === el.value))
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>
<div ref="el" flex flex-col gap-2 my-4 @click="go">
2022-11-14 02:56:48 +00:00
<AccountInfo :account="status.account">
<div flex-auto />
<div text-sm op50>
{{ timeago }}
</div>
</AccountInfo>
2022-11-14 02:20:07 +00:00
<StatusBody :status="status" />
2022-11-14 03:33:09 +00:00
<StatusMedia
v-if="status.mediaAttachments?.length"
:status="status"
/>
2022-11-14 02:20:07 +00:00
<StatusActions :status="status" />
</div>
</template>