mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
48 lines
1,003 B
Vue
48 lines
1,003 B
Vue
<script setup lang="ts">
|
|
import type { ComponentPublicInstance } from 'vue'
|
|
|
|
const avatar = ref<ComponentPublicInstance>()
|
|
const switcher = ref()
|
|
|
|
const router = useRouter()
|
|
|
|
const goProfile = () => {
|
|
router.push(`/@${currentUser.value!.account.username}`)
|
|
}
|
|
|
|
let showSwitcher = $ref(false)
|
|
onLongPress(avatar, () => {
|
|
showSwitcher = true
|
|
})
|
|
|
|
onClickOutside(avatar, () => {
|
|
showSwitcher = false
|
|
}, { ignore: [switcher] })
|
|
</script>
|
|
|
|
<template>
|
|
<VDropdown
|
|
v-if="currentUser"
|
|
v-model:shown="showSwitcher"
|
|
:triggers="[]"
|
|
:auto-hide="false"
|
|
>
|
|
<div style="-webkit-touch-callout: none;">
|
|
<AccountAvatar
|
|
ref="avatar"
|
|
:account="currentUser.account"
|
|
h="2em"
|
|
:draggable="false"
|
|
@click.stop="goProfile"
|
|
/>
|
|
</div>
|
|
|
|
<template #popper>
|
|
<UserSwitcher ref="switcher" />
|
|
</template>
|
|
</VDropdown>
|
|
<button v-else btn-solid text-sm px-2 py-1 text-center @click="openSigninDialog()">
|
|
Sign in
|
|
</button>
|
|
</template>
|