2022-12-11 10:52:36 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import type { Account } from 'masto'
|
|
|
|
const { account, as = 'div' } = $defineProps<{
|
|
|
|
account: Account
|
|
|
|
as?: string
|
|
|
|
}>()
|
|
|
|
|
|
|
|
cacheAccount(account)
|
|
|
|
|
|
|
|
defineOptions({
|
|
|
|
inheritAttrs: false,
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<component :is="as" block focus:outline-none focus-visible:ring="2 primary" v-bind="$attrs">
|
|
|
|
<!-- Banner -->
|
|
|
|
<div px2 pt2>
|
|
|
|
<div rounded of-hidden bg="gray-500/20" aspect="3.19">
|
|
|
|
<img h-full w-full object-cover :src="account.header" :alt="$t('account.profile_description', [account.username])">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div px-4 pb-4 space-y-2>
|
|
|
|
<!-- User info -->
|
|
|
|
<div flex sm:flex-row flex-col flex-gap-2>
|
|
|
|
<div flex items-center justify-between>
|
2023-01-01 14:29:11 +00:00
|
|
|
<div w-17 h-17 rounded-full border-4 border-bg-base z-2 mt--2 ms--1>
|
2022-12-11 10:52:36 +00:00
|
|
|
<AccountAvatar :account="account" />
|
|
|
|
</div>
|
|
|
|
<a block sm:hidden href="javascript:;" @click.stop>
|
|
|
|
<AccountFollowButton :account="account" />
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div sm:mt-2>
|
|
|
|
<div>
|
|
|
|
<ContentRich
|
|
|
|
font-bold text-lg line-clamp-1 ws-pre-wrap break-all
|
|
|
|
:content="getDisplayName(account, { rich: true })"
|
|
|
|
:emojis="account.emojis"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<AccountHandle text-sm :account="account" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- Note -->
|
2022-12-30 20:54:23 +00:00
|
|
|
<div v-if="account.note" max-h-100 overflow-y-auto>
|
2022-12-11 10:52:36 +00:00
|
|
|
<ContentRich
|
|
|
|
:content="account.note" :emojis="account.emojis"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<!-- Follow info -->
|
|
|
|
<div flex justify-between items-center>
|
|
|
|
<AccountPostsFollowers text-sm :account="account" />
|
|
|
|
<a sm:block hidden href="javascript:;" @click.stop>
|
|
|
|
<AccountFollowButton :account="account" />
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</component>
|
|
|
|
</template>
|