2022-11-14 02:20:07 +00:00
|
|
|
<script setup lang="ts">
|
2022-12-07 15:55:45 +00:00
|
|
|
import type { FilterContext, Status } from 'masto'
|
2022-11-14 02:20:07 +00:00
|
|
|
|
2022-11-14 14:54:30 +00:00
|
|
|
const props = withDefaults(
|
|
|
|
defineProps<{
|
|
|
|
status: Status
|
|
|
|
actions?: boolean
|
2022-12-04 19:28:26 +00:00
|
|
|
context?: FilterContext
|
2022-11-24 11:35:26 +00:00
|
|
|
hover?: boolean
|
2022-12-13 14:56:00 +00:00
|
|
|
faded?: boolean
|
2022-12-06 11:07:17 +00:00
|
|
|
showReplyTo?: boolean
|
2022-12-26 07:37:42 +00:00
|
|
|
connectReply?: boolean
|
2022-11-14 14:54:30 +00:00
|
|
|
}>(),
|
2022-12-06 11:07:17 +00:00
|
|
|
{ actions: true, showReplyTo: 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
|
|
|
|
2022-11-28 11:03:56 +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()))
|
2022-11-28 16:31:09 +00:00
|
|
|
const text = window.getSelection()?.toString()
|
2022-11-28 20:21:32 +00:00
|
|
|
if (!el && !text)
|
2022-11-28 11:03:56 +00:00
|
|
|
go(evt)
|
2022-11-24 04:02:18 +00:00
|
|
|
}
|
|
|
|
|
2022-11-28 11:03:56 +00:00
|
|
|
function go(evt: MouseEvent | KeyboardEvent) {
|
2022-11-30 17:15:18 +00:00
|
|
|
const route = getStatusRoute(status)
|
2022-11-28 11:03:56 +00:00
|
|
|
if (evt.metaKey || evt.ctrlKey) {
|
2022-11-30 17:15:18 +00:00
|
|
|
window.open(route.href)
|
2022-11-28 11:03:56 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
cacheStatus(status)
|
2022-11-30 17:15:18 +00:00
|
|
|
router.push(route)
|
2022-11-28 11:03:56 +00:00
|
|
|
}
|
2022-11-14 02:20:07 +00:00
|
|
|
}
|
2022-11-14 02:56:48 +00:00
|
|
|
|
2022-11-25 08:57:34 +00:00
|
|
|
const createdAt = useFormattedDateTime(status.createdAt)
|
2022-12-02 08:16:06 +00:00
|
|
|
const timeAgoOptions = useTimeAgoOptions(true)
|
2022-11-26 05:05:44 +00:00
|
|
|
const timeago = useTimeAgo(() => status.createdAt, timeAgoOptions)
|
2022-12-04 19:28:26 +00: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 11:07:17 +00:00
|
|
|
|
|
|
|
const avatarOnAvatar = $(computedEager(() => useFeatureFlags().experimentalAvatarOnAvatar))
|
2022-12-17 13:55:59 +00:00
|
|
|
const showRebloggedByAvatarOnAvatar = $computed(() => rebloggedBy && avatarOnAvatar && rebloggedBy.id !== status.account.id)
|
2022-12-23 21:53:21 +00:00
|
|
|
|
|
|
|
const isDM = $computed(() => status.visibility === 'direct')
|
2022-12-26 07:37:42 +00:00
|
|
|
const isSelf = $computed(() => status.account.id === currentUser.value?.account.id)
|
2022-11-14 02:20:07 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-12-23 21:53:21 +00: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 :class="{ 'hover:bg-active': hover }" tabindex="0" focus:outline-none focus-visible:ring="2 primary" @click="onclick" @keydown.enter="onclick">
|
|
|
|
<div flex justify-between>
|
2022-12-13 14:56:00 +00:00
|
|
|
<slot name="meta">
|
2022-12-23 21:53:21 +00:00
|
|
|
<div v-if="rebloggedBy" text-secondary text-sm ws-nowrap flex="~" gap-1 items-center py1>
|
2022-12-13 14:56:00 +00:00
|
|
|
<div i-ri:repeat-fill mr-1 text-primary />
|
|
|
|
<AccountInlineInfo font-bold :account="rebloggedBy" :avatar="!avatarOnAvatar" />
|
2022-12-13 15:03:58 +00:00
|
|
|
</div>
|
2022-12-13 14:56:00 +00:00
|
|
|
<div v-else />
|
|
|
|
</slot>
|
2022-12-23 21:53:21 +00:00
|
|
|
<StatusReplyingTo v-if="showReplyTo" :status="status" :class="faded ? 'text-secondary-light' : ''" py1 />
|
2022-12-13 14:56:00 +00:00
|
|
|
</div>
|
|
|
|
<div flex gap-4 :class="faded ? 'text-secondary' : ''">
|
2022-12-06 11:07:17 +00:00
|
|
|
<div relative>
|
2022-12-12 20:23:18 +00:00
|
|
|
<AccountHoverWrapper :account="status.account" :class="showRebloggedByAvatarOnAvatar ? 'mt-4' : 'mt-1'">
|
2022-11-30 17:15:18 +00:00
|
|
|
<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-12-23 22:47:13 +00:00
|
|
|
<div v-if="showRebloggedByAvatarOnAvatar" absolute class="-top-1 -left-2" w-9 h-9 border-bg-base border-3 rounded-full>
|
2022-12-06 11:07:17 +00:00
|
|
|
<AccountAvatar :account="rebloggedBy" />
|
|
|
|
</div>
|
2022-12-26 07:37:42 +00: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 02:13:18 +00:00
|
|
|
</div>
|
2022-11-25 10:20:01 +00:00
|
|
|
<div flex="~ col 1" min-w-0>
|
2022-12-06 16:37:58 +00:00
|
|
|
<div flex items-center space-x-1>
|
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>
|
2022-12-11 15:43:23 +00:00
|
|
|
<AccountBotIndicator v-if="status.account.bot" mr-2 />
|
2022-11-25 16:34:53 +00:00
|
|
|
<CommonTooltip :content="createdAt">
|
2022-11-30 17:15:18 +00:00
|
|
|
<a :title="status.createdAt" :href="getStatusRoute(status).href" @click.prevent="go($event)">
|
2022-12-06 16:37:58 +00:00
|
|
|
<time text-sm ws-nowrap hover:underline :datetime="status.createdAt">
|
2022-11-25 16:48:49 +00:00
|
|
|
{{ timeago }}
|
|
|
|
</time>
|
|
|
|
</a>
|
2022-11-25 16:34:53 +00:00
|
|
|
</CommonTooltip>
|
2022-11-26 05:05:44 +00:00
|
|
|
<StatusEditIndicator :status="status" inline />
|
2022-11-25 16:34:53 +00:00
|
|
|
</div>
|
2022-12-01 06:46:26 +00:00
|
|
|
<StatusActionsMore :status="status" mr--2 />
|
2022-11-24 14:42:44 +00:00
|
|
|
</div>
|
2022-12-26 07:37:42 +00:00
|
|
|
<StatusContent :status="status" :context="context" mb2 :class="{ mt2: isDM }" />
|
|
|
|
<div>
|
|
|
|
<StatusActions v-if="(actions !== false && !isZenMode)" :status="status" />
|
2022-11-23 00:00:52 +00:00
|
|
|
</div>
|
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>
|
2022-12-09 21:19:26 +00:00
|
|
|
<div v-else-if="isFiltered" gap-2 p-4>
|
|
|
|
<p text-center text-secondary text-sm>
|
|
|
|
{{ filterPhrase && `${$t('status.filter_removed_phrase')}: ${filterPhrase}` }}
|
|
|
|
</p>
|
2022-12-04 19:28:26 +00:00
|
|
|
</div>
|
2022-11-14 02:20:07 +00:00
|
|
|
</template>
|