2022-11-14 02:20:07 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-08 06:21:09 +00:00
|
|
|
import type { mastodon } from 'masto'
|
2022-11-14 02:20:07 +00:00
|
|
|
|
2022-11-14 14:54:30 +00:00
|
|
|
const props = withDefaults(
|
|
|
|
defineProps<{
|
2023-01-08 06:21:09 +00:00
|
|
|
status: mastodon.v1.Status
|
2022-11-14 14:54:30 +00:00
|
|
|
actions?: boolean
|
2023-01-08 06:21:09 +00:00
|
|
|
context?: mastodon.v2.FilterContext
|
2022-11-24 11:35:26 +00:00
|
|
|
hover?: boolean
|
2023-03-19 20:55:19 +00:00
|
|
|
inNotification?: boolean
|
2023-02-15 10:34:23 +00:00
|
|
|
isPreview?: boolean
|
2022-12-27 23:25:41 +00:00
|
|
|
|
|
|
|
// If we know the prev and next status in the timeline, we can simplify the card
|
2023-01-08 06:21:09 +00:00
|
|
|
older?: mastodon.v1.Status
|
|
|
|
newer?: mastodon.v1.Status
|
2022-12-27 23:25:41 +00:00
|
|
|
// Manual overrides
|
|
|
|
hasOlder?: boolean
|
|
|
|
hasNewer?: boolean
|
2023-01-08 08:27:21 +00:00
|
|
|
|
2022-12-29 20:09:54 +00:00
|
|
|
// When looking into a detailed view of a post, we can simplify the replying badges
|
|
|
|
// to the main expanded post
|
2023-01-08 06:21:09 +00:00
|
|
|
main?: mastodon.v1.Status
|
2022-11-14 14:54:30 +00:00
|
|
|
}>(),
|
2023-01-07 14:56:23 +00:00
|
|
|
{ actions: true },
|
2022-11-14 14:54:30 +00:00
|
|
|
)
|
2023-01-18 15:59:37 +00:00
|
|
|
|
2023-01-12 17:52:52 +00:00
|
|
|
const userSettings = useUserSettings()
|
2022-11-14 14:54:30 +00:00
|
|
|
|
2024-02-21 15:20:08 +00:00
|
|
|
const status = computed(() => {
|
2023-02-05 15:12:49 +00:00
|
|
|
if (props.status.reblog && (!props.status.content || props.status.content === props.status.reblog.content))
|
2022-11-14 14:54:30 +00:00
|
|
|
return props.status.reblog
|
|
|
|
return props.status
|
|
|
|
})
|
2022-11-14 02:20:07 +00:00
|
|
|
|
2022-12-29 21:04:32 +00:00
|
|
|
// Use original status, avoid connecting a reblog
|
2024-02-21 15:20:08 +00:00
|
|
|
const directReply = computed(() => props.hasNewer || (!!status.value.inReplyToId && (status.value.inReplyToId === props.newer?.id || status.value.inReplyToId === props.newer?.reblog?.id)))
|
2022-12-28 08:34:58 +00:00
|
|
|
// Use reblogged status, connect it to further replies
|
2024-02-21 15:20:08 +00:00
|
|
|
const connectReply = computed(() => props.hasOlder || status.value.id === props.older?.inReplyToId || status.value.id === props.older?.reblog?.inReplyToId)
|
2023-01-08 08:27:21 +00:00
|
|
|
// Open a detailed status, the replies directly to it
|
2024-02-21 15:20:08 +00:00
|
|
|
const replyToMain = computed(() => props.main && props.main.id === status.value.inReplyToId)
|
2022-12-27 23:25:41 +00:00
|
|
|
|
2024-02-21 15:20:08 +00:00
|
|
|
const rebloggedBy = computed(() => props.status.reblog ? props.status.account : null)
|
2022-11-14 14:54:30 +00:00
|
|
|
|
2024-02-21 15:20:08 +00:00
|
|
|
const statusRoute = computed(() => getStatusRoute(status.value))
|
2023-01-08 08:27:21 +00:00
|
|
|
|
2022-11-14 02:20:07 +00:00
|
|
|
const router = useRouter()
|
2022-11-14 03:33:09 +00:00
|
|
|
|
2022-11-28 11:03:56 +00:00
|
|
|
function go(evt: MouseEvent | KeyboardEvent) {
|
|
|
|
if (evt.metaKey || evt.ctrlKey) {
|
2024-02-21 15:20:08 +00:00
|
|
|
window.open(statusRoute.value.href)
|
2022-11-28 11:03:56 +00:00
|
|
|
}
|
|
|
|
else {
|
2024-02-21 15:20:08 +00:00
|
|
|
cacheStatus(status.value)
|
|
|
|
router.push(statusRoute.value)
|
2022-11-28 11:03:56 +00:00
|
|
|
}
|
2022-11-14 02:20:07 +00:00
|
|
|
}
|
2022-11-14 02:56:48 +00:00
|
|
|
|
2024-02-21 15:20:08 +00:00
|
|
|
const createdAt = useFormattedDateTime(status.value.createdAt)
|
2022-12-02 08:16:06 +00:00
|
|
|
const timeAgoOptions = useTimeAgoOptions(true)
|
2024-02-21 15:20:08 +00:00
|
|
|
const timeago = useTimeAgo(() => status.value.createdAt, timeAgoOptions)
|
2022-12-04 19:28:26 +00:00
|
|
|
|
2024-02-21 15:20:08 +00:00
|
|
|
const isSelfReply = computed(() => status.value.inReplyToAccountId === status.value.account.id)
|
|
|
|
const collapseRebloggedBy = computed(() => rebloggedBy.value?.id === status.value.account.id)
|
|
|
|
const isDM = computed(() => status.value.visibility === 'direct')
|
2023-01-08 08:27:21 +00:00
|
|
|
|
2024-02-28 18:02:09 +00:00
|
|
|
const showUpperBorder = computed(() => props.newer && !directReply.value)
|
|
|
|
const showReplyTo = computed(() => !replyToMain.value && !directReply.value)
|
2023-04-16 12:22:03 +00:00
|
|
|
|
|
|
|
const forceShow = ref(false)
|
2022-11-14 02:20:07 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-03-19 20:55:19 +00:00
|
|
|
<StatusLink :status="status" :hover="hover">
|
2023-01-08 08:27:21 +00:00
|
|
|
<!-- Upper border -->
|
|
|
|
<div :h="showUpperBorder ? '1px' : '0'" w-auto bg-border mb-1 />
|
|
|
|
|
2023-01-08 09:03:23 +00:00
|
|
|
<slot name="meta">
|
|
|
|
<!-- Line connecting to previous status -->
|
|
|
|
<template v-if="status.inReplyToAccountId">
|
|
|
|
<StatusReplyingTo
|
|
|
|
v-if="showReplyTo"
|
2023-01-31 03:44:55 +00:00
|
|
|
m="is-5" p="t-1 is-5"
|
2023-01-08 09:03:23 +00:00
|
|
|
:status="status"
|
|
|
|
:is-self-reply="isSelfReply"
|
2023-03-19 20:55:19 +00:00
|
|
|
:class="inNotification ? 'text-secondary-light' : ''"
|
2023-01-08 09:03:23 +00:00
|
|
|
/>
|
2023-01-31 03:44:55 +00:00
|
|
|
<div flex="~ col gap-1" items-center pos="absolute top-0 inset-is-0" w="77px" z--1>
|
2023-01-08 09:03:23 +00:00
|
|
|
<template v-if="showReplyTo">
|
|
|
|
<div w="1px" h="0.5" border="x base" mt-3 />
|
|
|
|
<div w="1px" h="0.5" border="x base" />
|
|
|
|
<div w="1px" h="0.5" border="x base" />
|
|
|
|
</template>
|
|
|
|
<div w="1px" h-10 border="x base" />
|
|
|
|
</div>
|
|
|
|
</template>
|
2023-01-08 08:27:21 +00:00
|
|
|
|
2023-01-08 09:03:23 +00:00
|
|
|
<!-- Reblog status -->
|
|
|
|
<div flex="~ col" justify-between>
|
2023-01-08 08:27:21 +00:00
|
|
|
<div
|
|
|
|
v-if="rebloggedBy && !collapseRebloggedBy"
|
|
|
|
flex="~" items-center
|
|
|
|
p="t-1 b-0.5 x-1px"
|
|
|
|
relative text-secondary ws-nowrap
|
|
|
|
>
|
2023-01-17 12:55:36 +00:00
|
|
|
<div i-ri:repeat-fill me-46px text-green w-16px h-16px class="status-boosted" />
|
2023-01-01 19:15:51 +00:00
|
|
|
<div absolute top-1 ms-24px w-32px h-32px rounded-full>
|
2023-01-03 12:40:16 +00:00
|
|
|
<AccountHoverWrapper :account="rebloggedBy">
|
|
|
|
<NuxtLink :to="getAccountRoute(rebloggedBy)">
|
|
|
|
<AccountAvatar :account="rebloggedBy" />
|
|
|
|
</NuxtLink>
|
|
|
|
</AccountHoverWrapper>
|
2023-01-01 19:15:51 +00:00
|
|
|
</div>
|
|
|
|
<AccountInlineInfo font-bold :account="rebloggedBy" :avatar="false" text-sm />
|
2022-12-13 15:03:58 +00:00
|
|
|
</div>
|
2023-01-08 09:03:23 +00:00
|
|
|
</div>
|
|
|
|
</slot>
|
2023-01-08 08:27:21 +00:00
|
|
|
|
2023-03-19 20:55:19 +00:00
|
|
|
<div flex gap-3 :class="{ 'text-secondary': inNotification }">
|
2023-04-16 12:22:03 +00:00
|
|
|
<template v-if="status.account.suspended && !forceShow">
|
|
|
|
<div flex="~col 1" min-w-0>
|
|
|
|
<p italic>
|
|
|
|
{{ $t('status.account.suspended_message') }}
|
|
|
|
</p>
|
|
|
|
<div>
|
|
|
|
<button p-0 flex="~ center" gap-2 text-sm btn-text @click="forceShow = true">
|
|
|
|
<div i-ri:eye-line />
|
|
|
|
<span>{{ $t('status.account.suspended_show') }}</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
2022-12-26 07:37:42 +00:00
|
|
|
</div>
|
2023-04-16 12:22:03 +00:00
|
|
|
</template>
|
|
|
|
<template v-else>
|
|
|
|
<!-- Avatar -->
|
|
|
|
<div relative>
|
|
|
|
<div v-if="collapseRebloggedBy" absolute flex items-center justify-center top--6px px-2px py-3px rounded-full bg-base>
|
|
|
|
<div i-ri:repeat-fill text-green w-16px h-16px />
|
|
|
|
</div>
|
2022-11-27 04:30:21 +00:00
|
|
|
<AccountHoverWrapper :account="status.account">
|
2023-04-16 12:22:03 +00:00
|
|
|
<NuxtLink :to="getAccountRoute(status.account)" rounded-full>
|
|
|
|
<AccountBigAvatar :account="status.account" />
|
|
|
|
</NuxtLink>
|
2022-11-27 04:30:21 +00:00
|
|
|
</AccountHoverWrapper>
|
2023-04-16 12:22:03 +00:00
|
|
|
|
|
|
|
<div v-if="connectReply" w-full h-full flex mt--3px justify-center>
|
2023-04-29 19:53:41 +00:00
|
|
|
<div w-1px border="x base" mb-9 />
|
2023-04-16 12:22:03 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Main -->
|
|
|
|
<div flex="~ col 1" min-w-0>
|
|
|
|
<!-- Account Info -->
|
|
|
|
<div flex items-center space-x-1>
|
|
|
|
<AccountHoverWrapper :account="status.account">
|
|
|
|
<StatusAccountDetails :account="status.account" />
|
|
|
|
</AccountHoverWrapper>
|
|
|
|
<div flex-auto />
|
2023-04-23 10:21:33 +00:00
|
|
|
<div v-show="!getPreferences(userSettings, 'zenMode')" text-sm text-secondary flex="~ row nowrap" hover:underline whitespace-nowrap>
|
2023-07-21 12:50:36 +00:00
|
|
|
<AccountLockIndicator v-if="status.account.locked" me-2 />
|
2023-04-16 12:22:03 +00:00
|
|
|
<AccountBotIndicator v-if="status.account.bot" me-2 />
|
|
|
|
<div flex="~ gap1" items-center>
|
|
|
|
<StatusVisibilityIndicator v-if="status.visibility !== 'public'" :status="status" />
|
|
|
|
<div flex>
|
2023-07-22 17:22:17 +00:00
|
|
|
<CommonTooltip :content="createdAt" no-auto-focus>
|
2023-04-16 12:22:03 +00:00
|
|
|
<NuxtLink :title="status.createdAt" :href="statusRoute.href" @click.prevent="go($event)">
|
|
|
|
<time text-sm ws-nowrap hover:underline :datetime="status.createdAt">
|
|
|
|
{{ timeago }}
|
|
|
|
</time>
|
|
|
|
</NuxtLink>
|
|
|
|
</CommonTooltip>
|
|
|
|
<StatusEditIndicator :status="status" inline />
|
|
|
|
</div>
|
2023-01-10 07:14:22 +00:00
|
|
|
</div>
|
2022-12-29 13:14:52 +00:00
|
|
|
</div>
|
2023-04-16 12:22:03 +00:00
|
|
|
<StatusActionsMore v-if="actions !== false" :status="status" me--2 />
|
2022-11-25 16:34:53 +00:00
|
|
|
</div>
|
2023-01-08 08:27:21 +00:00
|
|
|
|
2023-04-16 12:22:03 +00:00
|
|
|
<!-- Content -->
|
|
|
|
<StatusContent
|
|
|
|
:status="status"
|
|
|
|
:newer="newer"
|
|
|
|
:context="context"
|
|
|
|
:is-preview="isPreview"
|
|
|
|
:in-notification="inNotification"
|
|
|
|
mb2 :class="{ 'mt-2 mb1': isDM }"
|
|
|
|
/>
|
2023-04-23 10:21:33 +00:00
|
|
|
<StatusActions v-if="actions !== false" v-show="!getPreferences(userSettings, 'zenMode')" :status="status" />
|
2023-04-16 12:22:03 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
2022-11-14 14:54:30 +00:00
|
|
|
</div>
|
2023-03-19 20:55:19 +00:00
|
|
|
</StatusLink>
|
2022-11-14 02:20:07 +00:00
|
|
|
</template>
|