elk/components/status/StatusCard.vue

195 wiersze
7.2 KiB
Vue
Czysty Zwykły widok Historia

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
2022-12-13 14:56:00 +00:00
faded?: boolean
// 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
// Manual overrides
hasOlder?: boolean
hasNewer?: boolean
// 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
)
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
// 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)))
// Use reblogged status, connect it to further replies
2023-01-01 20:16:32 +00:00
const connectReply = $computed(() => props.hasOlder || status.id === props.older?.inReplyToId || status.id === props.older?.reblog?.inReplyToId)
// Open a detailed status, the replies directly to it
const replyToMain = $computed(() => props.main && props.main.id === status.inReplyToId)
2022-11-14 14:54:30 +00:00
const rebloggedBy = $computed(() => props.status.reblog ? props.status.account : null)
const statusRoute = $computed(() => getStatusRoute(status))
2022-11-14 14:54:30 +00:00
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) {
if (evt.metaKey || evt.ctrlKey) {
window.open(statusRoute.href)
}
else {
cacheStatus(status)
router.push(statusRoute)
}
2022-11-14 02:20:07 +00:00
}
2022-11-14 02:56:48 +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)
2023-01-08 06:21:09 +00:00
const filter = $computed(() => filterResult?.filter as mastodon.v2.Filter)
2022-12-04 19:28:26 +00:00
// 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))
const isSelfReply = $computed(() => status.inReplyToAccountId === status.account.id)
2022-12-28 21:34:35 +00:00
const collapseRebloggedBy = $computed(() => rebloggedBy?.id === status.account.id)
2022-12-23 21:53:21 +00:00
const isDM = $computed(() => status.visibility === 'direct')
const showUpperBorder = $computed(() => props.newer && !directReply)
const showReplyTo = $computed(() => !replyToMain && !directReply)
2022-11-14 02:20:07 +00:00
</script>
<template>
<div
v-if="filter?.filterAction !== 'hide'"
:id="`status-${status.id}`"
ref="el"
relative flex="~ col gap1" p="l-3 r-4 b-2"
2023-01-04 23:17:30 +00:00
:class="{ 'hover:bg-active': hover }"
tabindex="0"
focus:outline-none focus-visible:ring="2 primary"
:lang="status.language ?? undefined"
@click="onclick"
@keydown.enter="onclick"
>
<!-- 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"
ml-6 pt-1 pl-5
:status="status"
:is-self-reply="isSelfReply"
:class="faded ? 'text-secondary-light' : ''"
/>
<div flex="~ col gap-1" items-center pos="absolute top-0 left-0" w="20.5" z--1>
<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 09:03:23 +00:00
<!-- Reblog status -->
<div flex="~ col" justify-between>
<div
v-if="rebloggedBy && !collapseRebloggedBy"
flex="~" items-center
p="t-1 b-0.5 x-1px"
relative text-secondary ws-nowrap
>
2023-01-08 09:03:23 +00:00
<div i-ri:repeat-fill me-46px text-green w-16px h-16px />
2023-01-01 19:15:51 +00:00
<div absolute top-1 ms-24px w-32px h-32px rounded-full>
<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>
<div flex gap-3 :class="{ 'text-secondary': faded }">
<!-- Avatar -->
2023-01-01 20:16:32 +00:00
<div relative>
2023-01-01 19:57:00 +00:00
<div v-if="collapseRebloggedBy" absolute flex items-center justify-center top--6px px-2px py-3px rounded-full bg-base>
2023-01-08 09:03:23 +00:00
<div i-ri:repeat-fill text-green w-16px h-16px />
2022-12-28 21:34:35 +00:00
</div>
<AccountHoverWrapper :account="status.account">
<NuxtLink :to="getAccountRoute(status.account)" rounded-full>
2023-01-01 19:15:51 +00:00
<AccountBigAvatar :account="status.account" />
2022-11-27 04:30:21 +00:00
</NuxtLink>
</AccountHoverWrapper>
<div v-if="connectReply" w-full h-full flex mt--3px justify-center>
<div w-1px border="x base" />
2022-12-26 07:37:42 +00:00
</div>
2022-11-27 02:13:18 +00:00
</div>
<!-- Main -->
2022-11-25 10:20:01 +00:00
<div flex="~ col 1" min-w-0>
<!-- Account Info -->
<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 />
<div v-show="!userSettings.zenMode" text-sm text-secondary flex="~ row nowrap" hover:underline>
<AccountBotIndicator v-if="status.account.bot" me-2 />
<div flex>
<CommonTooltip :content="createdAt">
<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>
</div>
<StatusActionsMore v-if="actions !== false" :status="status" me--2 />
2022-11-24 14:42:44 +00:00
</div>
<!-- Content -->
2023-01-01 19:20:13 +00:00
<StatusContent :status="status" :context="context" mb2 :class="{ 'mt-2 mb1': isDM }" />
<StatusActions v-if="actions !== false" v-show="!userSettings.zenMode" :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>
2022-12-28 20:34:33 +00:00
<div v-else-if="isFiltered" gap-2 p-4 :class="{ 'border-t border-base': newer }">
<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>