47 lines
1.5 KiB
Svelte
47 lines
1.5 KiB
Svelte
<script lang="ts">
|
|
import {displayPubkey, getPubkeyTagValues, getListTags} from "@welshman/util"
|
|
import {
|
|
session,
|
|
userFollows,
|
|
deriveUserWotScore,
|
|
deriveProfile,
|
|
deriveHandleForPubkey,
|
|
displayHandle,
|
|
deriveProfileDisplay,
|
|
} from "@welshman/app"
|
|
import Button from "@lib/components/Button.svelte"
|
|
import Avatar from "@lib/components/Avatar.svelte"
|
|
import WotScore from "@lib/components/WotScore.svelte"
|
|
import ProfileDetail from "@app/components/ProfileDetail.svelte"
|
|
import {pushModal} from "@app/modal"
|
|
|
|
export let pubkey
|
|
|
|
const profile = deriveProfile(pubkey)
|
|
const profileDisplay = deriveProfileDisplay(pubkey)
|
|
const handle = deriveHandleForPubkey(pubkey)
|
|
const score = deriveUserWotScore(pubkey)
|
|
|
|
const openProfile = () => pushModal(ProfileDetail, {pubkey})
|
|
|
|
$: following =
|
|
pubkey === $session!.pubkey || getPubkeyTagValues(getListTags($userFollows)).includes(pubkey)
|
|
</script>
|
|
|
|
<div class="flex max-w-full gap-3">
|
|
<Button on:click={openProfile} class="py-1">
|
|
<Avatar src={$profile?.picture} size={10} />
|
|
</Button>
|
|
<div class="flex min-w-0 flex-col">
|
|
<div class="flex items-center gap-2">
|
|
<Button on:click={openProfile} class="text-bold overflow-hidden text-ellipsis">
|
|
{$profileDisplay}
|
|
</Button>
|
|
<WotScore score={$score} active={following} />
|
|
</div>
|
|
<div class="overflow-hidden text-ellipsis text-sm opacity-75">
|
|
{$handle ? displayHandle($handle) : displayPubkey(pubkey)}
|
|
</div>
|
|
</div>
|
|
</div>
|