feat: link to account from single follow notification
parent
139a2ea3b6
commit
c830b8087a
|
@ -9,18 +9,20 @@ const { notification } = defineProps<{
|
||||||
<template>
|
<template>
|
||||||
<article flex flex-col relative>
|
<article flex flex-col relative>
|
||||||
<template v-if="notification.type === 'follow'">
|
<template v-if="notification.type === 'follow'">
|
||||||
<div flex items-center absolute px-3 py-3 bg-base rounded-br-3 top-0 left-0>
|
<NuxtLink :to="getAccountRoute(notification.account)">
|
||||||
<div i-ri:user-follow-fill mr-1 color-primary />
|
<div flex items-center absolute pl-3 pr-4 py-3 bg-base rounded-br-3 top-0 left-0>
|
||||||
<ContentRich
|
<div i-ri:user-follow-fill mr-1 color-primary />
|
||||||
text-primary mr-1 font-bold line-clamp-1 ws-pre-wrap break-all
|
<ContentRich
|
||||||
:content="getDisplayName(notification.account, { rich: true })"
|
text-primary mr-1 font-bold line-clamp-1 ws-pre-wrap break-all
|
||||||
:emojis="notification.account.emojis"
|
:content="getDisplayName(notification.account, { rich: true })"
|
||||||
/>
|
:emojis="notification.account.emojis"
|
||||||
<span ws-nowrap>
|
/>
|
||||||
{{ $t('notification.followed_you') }}
|
<span ws-nowrap>
|
||||||
</span>
|
{{ $t('notification.followed_you') }}
|
||||||
</div>
|
</span>
|
||||||
<AccountBigCard :account="notification.account" />
|
</div>
|
||||||
|
<AccountBigCard :account="notification.account" />
|
||||||
|
</NuxtLink>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="notification.type === 'admin.sign_up'">
|
<template v-else-if="notification.type === 'admin.sign_up'">
|
||||||
<div flex p3 items-center bg-shaded>
|
<div flex p3 items-center bg-shaded>
|
||||||
|
|
Loading…
Reference in New Issue