mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
c1e89582f8
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
67 lines
2 KiB
Vue
67 lines
2 KiB
Vue
<script setup lang="ts">
|
|
import type { mastodon } from 'masto'
|
|
|
|
const props = withDefaults(defineProps<{
|
|
status: mastodon.v1.Status
|
|
command?: boolean
|
|
actions?: boolean
|
|
}>(), {
|
|
actions: true,
|
|
})
|
|
|
|
const status = $computed(() => {
|
|
if (props.status.reblog && props.status.reblog)
|
|
return props.status.reblog
|
|
return props.status
|
|
})
|
|
|
|
const createdAt = useFormattedDateTime(status.createdAt)
|
|
|
|
const { t } = useI18n()
|
|
|
|
useHeadFixed({
|
|
title: () => `${getDisplayName(status.account)} ${t('common.in')} ${t('app_name')}: "${removeHTMLTags(status.content) || ''}"`,
|
|
})
|
|
|
|
const isDM = $computed(() => status.visibility === 'direct')
|
|
</script>
|
|
|
|
<template>
|
|
<div :id="`status-${status.id}`" flex flex-col gap-2 pt2 pb1 ps-3 pe-4 relative :lang="status.language ?? undefined">
|
|
<StatusActionsMore :status="status" absolute inset-ie-2 top-2 />
|
|
<NuxtLink :to="getAccountRoute(status.account)" rounded-full hover:bg-active transition-100 pe5 me-a>
|
|
<AccountHoverWrapper :account="status.account">
|
|
<AccountInfo :account="status.account" />
|
|
</AccountHoverWrapper>
|
|
</NuxtLink>
|
|
<StatusContent :status="status" context="details" />
|
|
<div flex="~ gap-1" items-center text-secondary text-sm>
|
|
<div flex>
|
|
<div>{{ createdAt }}</div>
|
|
<StatusEditIndicator
|
|
:status="status"
|
|
:inline="false"
|
|
>
|
|
<span ms1 font-bold cursor-pointer>{{ $t('state.edited') }}</span>
|
|
</StatusEditIndicator>
|
|
</div>
|
|
<div>·</div>
|
|
<StatusVisibilityIndicator :status="status" />
|
|
<div v-if="status.application?.name">
|
|
·
|
|
</div>
|
|
<div v-if="status.application?.website && status.application.name">
|
|
<NuxtLink :to="status.application.website">
|
|
{{ status.application.name }}
|
|
</NuxtLink>
|
|
</div>
|
|
<div v-else-if="status.application?.name">
|
|
{{ status.application?.name }}
|
|
</div>
|
|
</div>
|
|
<div border="t base" pt-2>
|
|
<StatusActions v-if="actions" :status="status" details :command="command" />
|
|
</div>
|
|
</div>
|
|
</template>
|