2022-11-15 18:56:11 +03:00
|
|
|
<script setup lang="ts">
|
2023-01-08 09:21:09 +03:00
|
|
|
import type { mastodon } from 'masto'
|
2022-11-15 18:56:11 +03:00
|
|
|
|
2022-11-22 16:03:36 +03:00
|
|
|
const { account } = defineProps<{
|
2023-01-08 09:21:09 +03:00
|
|
|
account: mastodon.v1.Account
|
2022-11-28 20:24:39 +03:00
|
|
|
hoverCard?: boolean
|
2023-01-10 10:49:49 +03:00
|
|
|
relationshipContext?: 'followedBy' | 'following'
|
2022-11-15 18:56:11 +03:00
|
|
|
}>()
|
2022-11-24 10:53:27 +03:00
|
|
|
|
|
|
|
cacheAccount(account)
|
2022-11-15 18:56:11 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-23 17:39:48 +03:00
|
|
|
<div flex justify-between hover:bg-active transition-100>
|
2022-11-28 20:24:39 +03:00
|
|
|
<AccountInfo
|
|
|
|
:account="account" hover p1 as="router-link"
|
|
|
|
:hover-card="hoverCard"
|
2022-12-01 00:38:18 +03:00
|
|
|
shrink
|
|
|
|
overflow-hidden
|
2022-11-30 20:15:18 +03:00
|
|
|
:to="getAccountRoute(account)"
|
2022-11-28 20:24:39 +03:00
|
|
|
/>
|
2023-10-22 19:11:00 +03:00
|
|
|
<slot>
|
|
|
|
<div h-full p1 shrink-0>
|
|
|
|
<AccountFollowButton :account="account" :context="relationshipContext" />
|
|
|
|
</div>
|
|
|
|
</slot>
|
2022-11-15 18:56:11 +03:00
|
|
|
</div>
|
|
|
|
</template>
|