feat: clickable notification account (#184)
parent
5ac225fd11
commit
fa35d73d56
|
@ -10,7 +10,7 @@ cacheAccount(account)
|
|||
|
||||
<template>
|
||||
<div flex justify-between hover:bg-active transition-100>
|
||||
<AccountInfo :account="account" hover p1 />
|
||||
<AccountInfo :account="account" hover p1 as="router-link" :to="getAccountPath(account)" />
|
||||
<div h-full p1>
|
||||
<AccountFollowButton :account="account" />
|
||||
</div>
|
||||
|
|
|
@ -1,19 +1,24 @@
|
|||
<script setup lang="ts">
|
||||
import type { Account } from 'masto'
|
||||
|
||||
const { account } = defineProps<{
|
||||
const { account, as = 'div' } = defineProps<{
|
||||
account: Account
|
||||
as?: string
|
||||
}>()
|
||||
|
||||
defineOptions({
|
||||
inheritAttrs: false,
|
||||
})
|
||||
</script>
|
||||
|
||||
<!-- TODO: Make this work for both buttons and links -->
|
||||
<!-- This is sometimes (like in the sidebar) used directly as a button, and sometimes, like in follow notifications, as a link. I think this component may need a second refactor that either lets an implementation pass in a link or an action and adapt to what's passed in, or the implementations need to be updated to wrap in the action they want to take and this be just the layout for these items -->
|
||||
<template>
|
||||
<div flex gap-3>
|
||||
<component :is="as" flex gap-3 v-bind="$attrs">
|
||||
<AccountAvatar :account="account" w-12 h-12 />
|
||||
<div flex="~ col">
|
||||
<ContentRich font-bold :content="getDisplayName(account, { rich: true })" :emojis="account.emojis" />
|
||||
<AccountHandle :account="account" text-sm />
|
||||
</div>
|
||||
</div>
|
||||
</component>
|
||||
</template>
|
||||
|
|
Loading…
Reference in New Issue