2022-11-14 03:20:07 +01:00
|
|
|
<script setup lang="ts">
|
2022-12-07 16:55:45 +01:00
|
|
|
import type { FilterContext, Status } from 'masto'
|
2022-11-14 03:20:07 +01:00
|
|
|
|
2022-11-14 15:54:30 +01:00
|
|
|
const props = withDefaults(
|
|
|
|
defineProps<{
|
|
|
|
status: Status
|
|
|
|
actions?: boolean
|
2022-12-04 20:28:26 +01:00
|
|
|
context?: FilterContext
|
2022-11-24 12:35:26 +01:00
|
|
|
hover?: boolean
|
2022-12-13 15:56:00 +01:00
|
|
|
faded?: boolean
|
2022-12-28 00:25:41 +01:00
|
|
|
|
|
|
|
// If we know the prev and next status in the timeline, we can simplify the card
|
|
|
|
older?: Status
|
|
|
|
newer?: Status
|
|
|
|
// Manual overrides
|
|
|
|
hasOlder?: boolean
|
|
|
|
hasNewer?: boolean
|
2022-12-29 21:09:54 +01:00
|
|
|
// When looking into a detailed view of a post, we can simplify the replying badges
|
|
|
|
// to the main expanded post
|
|
|
|
main?: Status
|
2022-11-14 15:54:30 +01:00
|
|
|
}>(),
|
2022-12-06 12:07:17 +01:00
|
|
|
{ actions: true, showReplyTo: true },
|
2022-11-14 15:54:30 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const status = $computed(() => {
|
|
|
|
if (props.status.reblog && !props.status.content)
|
|
|
|
return props.status.reblog
|
|
|
|
return props.status
|
|
|
|
})
|
2022-11-14 03:20:07 +01:00
|
|
|
|
2022-12-29 22:04:32 +01:00
|
|
|
// Use original status, avoid connecting a reblog
|
|
|
|
const directReply = $computed(() => props.hasNewer || (!!status.inReplyToId && (status.inReplyToId === props.newer?.id || status.inReplyToId === props.newer?.reblog?.id)))
|
2022-12-28 09:34:58 +01:00
|
|
|
// Use reblogged status, connect it to further replies
|
|
|
|
const connectReply = $computed(() => props.hasOlder || status.id === props.older?.inReplyToId)
|
2022-12-28 00:25:41 +01:00
|
|
|
|
2022-11-14 15:54:30 +01:00
|
|
|
const rebloggedBy = $computed(() => props.status.reblog ? props.status.account : null)
|
|
|
|
|
|
|
|
const el = ref<HTMLElement>()
|
2022-11-14 03:20:07 +01:00
|
|
|
const router = useRouter()
|
2022-11-14 04:33:09 +01:00
|
|
|
|
2022-11-28 12:03:56 +01:00
|
|
|
function onclick(evt: MouseEvent | KeyboardEvent) {
|
|
|
|
const path = evt.composedPath() as HTMLElement[]
|
2022-11-23 09:37:31 +01:00
|
|
|
const el = path.find(el => ['A', 'BUTTON', 'IMG', 'VIDEO'].includes(el.tagName?.toUpperCase()))
|
2022-11-28 17:31:09 +01:00
|
|
|
const text = window.getSelection()?.toString()
|
2022-11-28 21:21:32 +01:00
|
|
|
if (!el && !text)
|
2022-11-28 12:03:56 +01:00
|
|
|
go(evt)
|
2022-11-24 05:02:18 +01:00
|
|
|
}
|
|
|
|
|
2022-11-28 12:03:56 +01:00
|
|
|
function go(evt: MouseEvent | KeyboardEvent) {
|
2022-11-30 18:15:18 +01:00
|
|
|
const route = getStatusRoute(status)
|
2022-11-28 12:03:56 +01:00
|
|
|
if (evt.metaKey || evt.ctrlKey) {
|
2022-11-30 18:15:18 +01:00
|
|
|
window.open(route.href)
|
2022-11-28 12:03:56 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
cacheStatus(status)
|
2022-11-30 18:15:18 +01:00
|
|
|
router.push(route)
|
2022-11-28 12:03:56 +01:00
|
|
|
}
|
2022-11-14 03:20:07 +01:00
|
|
|
}
|
2022-11-14 03:56:48 +01:00
|
|
|
|
2022-11-25 09:57:34 +01:00
|
|
|
const createdAt = useFormattedDateTime(status.createdAt)
|
2022-12-02 09:16:06 +01:00
|
|
|
const timeAgoOptions = useTimeAgoOptions(true)
|
2022-11-26 06:05:44 +01:00
|
|
|
const timeago = useTimeAgo(() => status.createdAt, timeAgoOptions)
|
2022-12-04 20:28:26 +01:00
|
|
|
|
|
|
|
// Content Filter logic
|
|
|
|
const filterResult = $computed(() => status.filtered?.length ? status.filtered[0] : null)
|
|
|
|
const filter = $computed(() => filterResult?.filter)
|
|
|
|
|
|
|
|
// a bit of a hack due to Filter being different in v1 and v2
|
|
|
|
// clean up when masto.js supports explicit versions: https://github.com/neet/masto.js/issues/722
|
|
|
|
const filterPhrase = $computed(() => filter?.phrase || (filter as any)?.title)
|
|
|
|
const isFiltered = $computed(() => filterPhrase && (props.context ? filter?.context.includes(props.context) : false))
|
2022-12-06 12:07:17 +01:00
|
|
|
|
|
|
|
const avatarOnAvatar = $(computedEager(() => useFeatureFlags().experimentalAvatarOnAvatar))
|
2022-12-28 22:34:35 +01:00
|
|
|
const collapseRebloggedBy = $computed(() => rebloggedBy?.id === status.account.id)
|
2022-12-17 14:55:59 +01:00
|
|
|
const showRebloggedByAvatarOnAvatar = $computed(() => rebloggedBy && avatarOnAvatar && rebloggedBy.id !== status.account.id)
|
2022-12-29 14:35:28 +01:00
|
|
|
|
|
|
|
// Collapse ReplyingTo badge if it is a self-reply (thread)
|
2022-12-29 14:21:11 +01:00
|
|
|
const collapseReplyingTo = $computed(() => (!rebloggedBy || collapseRebloggedBy) && status.inReplyToAccountId === status.account.id)
|
2022-12-23 22:53:21 +01:00
|
|
|
|
2022-12-29 21:09:54 +01:00
|
|
|
// Only show avatar in ReplyingTo badge if it was reblogged by the same account or if it is against the main post
|
|
|
|
const simplifyReplyingTo = $computed(() =>
|
|
|
|
(props.main && props.main.account.id === status.inReplyToAccountId) || (rebloggedBy && rebloggedBy.id === status.inReplyToAccountId),
|
|
|
|
)
|
2022-12-29 14:35:28 +01:00
|
|
|
|
2022-12-23 22:53:21 +01:00
|
|
|
const isDM = $computed(() => status.visibility === 'direct')
|
2022-11-14 03:20:07 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-12-27 22:04:52 +01:00
|
|
|
<div
|
|
|
|
v-if="filter?.filterAction !== 'hide'"
|
|
|
|
:id="`status-${status.id}`"
|
|
|
|
ref="el"
|
|
|
|
relative flex flex-col gap-1 px-4 pt-1
|
|
|
|
class="pb-1.5"
|
|
|
|
transition-100
|
2022-12-28 00:25:41 +01:00
|
|
|
:class="{ 'hover:bg-active': hover, 'border-t border-base': newer && !directReply }"
|
2022-12-27 22:04:52 +01:00
|
|
|
tabindex="0"
|
|
|
|
focus:outline-none focus-visible:ring="2 primary"
|
|
|
|
:lang="status.language ?? undefined"
|
|
|
|
:dir="status.language ? 'auto' : 'ltr'"
|
|
|
|
@click="onclick"
|
|
|
|
@keydown.enter="onclick"
|
|
|
|
>
|
2022-12-23 22:53:21 +01:00
|
|
|
<div flex justify-between>
|
2022-12-13 15:56:00 +01:00
|
|
|
<slot name="meta">
|
2022-12-29 22:04:32 +01:00
|
|
|
<div v-if="rebloggedBy && !collapseRebloggedBy" text-secondary text-sm ws-nowrap flex="~" gap-1 items-center py1 bg-base>
|
2022-12-13 15:56:00 +01:00
|
|
|
<div i-ri:repeat-fill mr-1 text-primary />
|
|
|
|
<AccountInlineInfo font-bold :account="rebloggedBy" :avatar="!avatarOnAvatar" />
|
2022-12-13 16:03:58 +01:00
|
|
|
</div>
|
2022-12-13 15:56:00 +01:00
|
|
|
<div v-else />
|
|
|
|
</slot>
|
2022-12-29 14:35:28 +01:00
|
|
|
<StatusReplyingTo v-if="!directReply && !collapseReplyingTo" :status="status" :simplified="simplifyReplyingTo" :class="faded ? 'text-secondary-light' : ''" py1 />
|
2022-12-13 15:56:00 +01:00
|
|
|
</div>
|
2022-12-26 09:00:57 +01:00
|
|
|
<div flex gap-3 :class="{ 'text-secondary': faded }">
|
2022-12-06 12:07:17 +01:00
|
|
|
<div relative>
|
2022-12-28 22:34:35 +01:00
|
|
|
<div v-if="showRebloggedByAvatarOnAvatar" absolute top--3px left--0.8 rtl-left-none rtl-right--0.8 z--1 w-25px h-25px rounded-full>
|
|
|
|
<AccountAvatar :account="rebloggedBy" />
|
|
|
|
</div>
|
|
|
|
<div v-else-if="collapseRebloggedBy" absolute left--0.8 rtl-left-none rtl-right--0.8 w-5.5 h-5.5 rounded-full bg-base>
|
|
|
|
<div i-ri:repeat-fill mr-1 text-primary text-sm />
|
|
|
|
</div>
|
2022-12-26 09:00:57 +01:00
|
|
|
<AccountHoverWrapper :account="status.account">
|
2022-11-30 18:15:18 +01:00
|
|
|
<NuxtLink :to="getAccountRoute(status.account)" rounded-full>
|
2022-12-28 22:14:29 +01:00
|
|
|
<AccountBigAvatar :account="status.account" :class="showRebloggedByAvatarOnAvatar ? 'mt-11px ' : 'mt-3px'" />
|
2022-11-27 05:30:21 +01:00
|
|
|
</NuxtLink>
|
|
|
|
</AccountHoverWrapper>
|
2022-12-26 08:37:42 +01:00
|
|
|
<div v-if="connectReply" w-full h-full flex justify-center>
|
|
|
|
<div h-full class="w-2.5px" bg-border />
|
|
|
|
</div>
|
2022-11-27 03:13:18 +01:00
|
|
|
</div>
|
2022-11-25 11:20:01 +01:00
|
|
|
<div flex="~ col 1" min-w-0>
|
2022-12-06 17:37:58 +01:00
|
|
|
<div flex items-center space-x-1>
|
2022-11-27 05:30:21 +01:00
|
|
|
<AccountHoverWrapper :account="status.account">
|
|
|
|
<StatusAccountDetails :account="status.account" />
|
|
|
|
</AccountHoverWrapper>
|
2022-12-29 14:21:11 +01:00
|
|
|
<div v-if="!directReply && collapseReplyingTo" flex="~" pl-1 items-center justify-center>
|
|
|
|
<StatusReplyingTo :collapsed="true" :status="status" :class="faded ? 'text-secondary-light' : ''" />
|
|
|
|
</div>
|
2022-11-24 15:42:44 +01:00
|
|
|
<div flex-auto />
|
2022-12-01 07:46:26 +01:00
|
|
|
<div v-if="!isZenMode" text-sm text-secondary flex="~ row nowrap" hover:underline>
|
2022-12-11 16:43:23 +01:00
|
|
|
<AccountBotIndicator v-if="status.account.bot" mr-2 />
|
2022-12-29 14:14:52 +01:00
|
|
|
<div flex>
|
|
|
|
<CommonTooltip :content="createdAt">
|
|
|
|
<a :title="status.createdAt" :href="getStatusRoute(status).href" @click.prevent="go($event)">
|
|
|
|
<time text-sm ws-nowrap hover:underline :datetime="status.createdAt">
|
|
|
|
{{ timeago }}
|
|
|
|
</time>
|
|
|
|
</a>
|
|
|
|
</CommonTooltip>
|
|
|
|
<StatusEditIndicator :status="status" inline />
|
|
|
|
</div>
|
2022-11-25 17:34:53 +01:00
|
|
|
</div>
|
2022-12-29 15:44:26 +01:00
|
|
|
<StatusActionsMore v-if="actions !== false" :status="status" mr--2 />
|
2022-11-24 15:42:44 +01:00
|
|
|
</div>
|
2022-12-26 08:37:42 +01:00
|
|
|
<StatusContent :status="status" :context="context" mb2 :class="{ mt2: isDM }" />
|
|
|
|
<div>
|
|
|
|
<StatusActions v-if="(actions !== false && !isZenMode)" :status="status" />
|
2022-11-23 01:00:52 +01:00
|
|
|
</div>
|
2022-11-24 15:20:50 +01:00
|
|
|
</div>
|
2022-11-14 15:54:30 +01:00
|
|
|
</div>
|
2022-11-14 03:20:07 +01:00
|
|
|
</div>
|
2022-12-28 21:34:33 +01:00
|
|
|
<div v-else-if="isFiltered" gap-2 p-4 :class="{ 'border-t border-base': newer }">
|
2022-12-09 22:19:26 +01:00
|
|
|
<p text-center text-secondary text-sm>
|
|
|
|
{{ filterPhrase && `${$t('status.filter_removed_phrase')}: ${filterPhrase}` }}
|
|
|
|
</p>
|
2022-12-04 20:28:26 +01:00
|
|
|
</div>
|
2022-11-14 03:20:07 +01:00
|
|
|
</template>
|