elk/components/status/StatusCard.vue

109 wiersze
3.7 KiB
Vue
Czysty Zwykły widok Historia

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(evt: MouseEvent | KeyboardEvent) {
const path = evt.composedPath() as HTMLElement[]
2022-11-23 08:37:31 +00:00
const el = path.find(el => ['A', 'BUTTON', 'IMG', 'VIDEO'].includes(el.tagName?.toUpperCase()))
const text = window.getSelection()?.toString()
2022-11-28 20:21:32 +00:00
if (!el && !text)
go(evt)
2022-11-24 04:02:18 +00:00
}
function go(evt: MouseEvent | KeyboardEvent) {
const route = getStatusRoute(status)
if (evt.metaKey || evt.ctrlKey) {
window.open(route.href)
}
else {
cacheStatus(status)
router.push(route)
}
2022-11-14 02:20:07 +00:00
}
2022-11-14 02:56:48 +00:00
const createdAt = useFormattedDateTime(status.createdAt)
2022-12-02 02:18:36 +00:00
const timeAgoOptions = useTimeAgoOptions()
2022-11-26 05:05:44 +00:00
const timeago = useTimeAgo(() => status.createdAt, timeAgoOptions)
2022-11-14 02:20:07 +00:00
</script>
<template>
<div :id="`status-${status.id}`" 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>
<div flex="~ wrap" gap-1 items-center text-secondary text-sm>
2022-11-14 14:54:30 +00:00
<div i-ri:repeat-fill mr-1 />
2022-11-30 02:07:13 +00:00
<i18n-t keypath="status.reblogged">
<AccountInlineInfo font-bold :account="rebloggedBy" />
</i18n-t>
2022-11-14 14:54:30 +00:00
</div>
</div>
2022-11-24 14:20:50 +00:00
<div flex gap-4>
2022-11-27 02:13:18 +00:00
<div>
2022-11-27 04:30:21 +00:00
<AccountHoverWrapper :account="status.account">
<NuxtLink :to="getAccountRoute(status.account)" rounded-full>
2022-11-27 04:30:21 +00:00
<AccountAvatar w-12 h-12 :account="status.account" />
</NuxtLink>
</AccountHoverWrapper>
2022-11-27 02:13:18 +00:00
</div>
2022-11-25 10:20:01 +00:00
<div flex="~ col 1" min-w-0>
2022-12-01 06:46:26 +00:00
<div flex items-center>
2022-11-27 04:30:21 +00:00
<AccountHoverWrapper :account="status.account">
<StatusAccountDetails :account="status.account" />
</AccountHoverWrapper>
2022-11-24 14:42:44 +00:00
<div flex-auto />
2022-12-01 06:46:26 +00:00
<div v-if="!isZenMode" text-sm text-secondary flex="~ row nowrap" hover:underline>
<CommonTooltip :content="createdAt">
<a :title="status.createdAt" :href="getStatusRoute(status).href" @click.prevent="go($event)">
<time text-sm hover:underline :datetime="status.createdAt">
{{ timeago }}
</time>
</a>
</CommonTooltip>
2022-11-26 05:05:44 +00:00
<StatusEditIndicator :status="status" inline />
</div>
2022-12-01 06:46:26 +00:00
<StatusActionsMore :status="status" mr--2 />
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 />
2022-12-01 07:32:07 +00:00
<div :class="status.visibility === 'direct' ? 'my3 p2 px5 br2 bg-fade rounded-3 rounded-tl-none' : ''">
<StatusSpoiler :enabled="status.sensitive">
<template #spoiler>
2022-11-30 02:07:13 +00:00
<p>{{ status.spoilerText }}</p>
</template>
<StatusBody :status="status" />
2022-11-29 20:29:02 +00:00
<StatusPoll v-if="status.poll" :poll="status.poll" />
<StatusMedia
v-if="status.mediaAttachments?.length"
:status="status"
minimized
/>
</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-12-01 06:46:26 +00:00
<StatusActions v-if="(actions !== false && !isZenMode)" pt2 :status="status" />
2022-11-24 14:20:50 +00:00
</div>
2022-11-14 14:54:30 +00:00
</div>
2022-11-14 02:20:07 +00:00
</div>
</template>