feat: a11y account info (#98)
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
This commit is contained in:
parent
49b63aa3b2
commit
f5ca6c22a4
|
@ -9,6 +9,8 @@ const { account, link = true, fullServer = false } = defineProps<{
|
|||
}>()
|
||||
</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 cursor-default>
|
||||
<div flex-shrink-0>
|
||||
|
|
|
@ -13,7 +13,7 @@ const props = defineProps<{
|
|||
const emojiObject = emojisArrayToObject(props.emojis || [])
|
||||
|
||||
export default () => h(
|
||||
'div',
|
||||
'span',
|
||||
{ class: 'content-rich' },
|
||||
contentToVNode(props.content, emojiObject),
|
||||
)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div h-full :class="{ zen: isZenMode }">
|
||||
<main flex w-full mxa lg:max-w-80rem>
|
||||
<div class="hidden md:block w-1/4 zen-hide" relative>
|
||||
<aside class="hidden md:block w-1/4 zen-hide" relative>
|
||||
<div sticky top-0 h-screen flex="~ col">
|
||||
<slot name="left">
|
||||
<NavTitle mx3 mt4 mb2 self-start />
|
||||
|
@ -12,18 +12,17 @@
|
|||
</div>
|
||||
</slot>
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
<NavBottom md:hidden />
|
||||
<div class="w-full mb14 md:(w-2/4 mb0) min-h-screen" border="l r base">
|
||||
<slot />
|
||||
</div>
|
||||
<div class="hidden md:block w-1/4 zen-hide">
|
||||
<aside class="hidden md:block w-1/4 zen-hide">
|
||||
<div sticky top-0 h-screen flex="~ col">
|
||||
<slot name="right">
|
||||
<UserSignInEntry v-if="!currentUser" />
|
||||
<AccountInfo
|
||||
v-if="currentUser"
|
||||
tabindex="0"
|
||||
m5 p2 rounded-full
|
||||
hover:bg-active cursor-pointer transition-100
|
||||
:account="currentUser.account"
|
||||
|
@ -36,7 +35,7 @@
|
|||
<NavFooter />
|
||||
</slot>
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
</main>
|
||||
<ModalContainer />
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue