2022-11-23 03:48:01 +00:00
|
|
|
<script setup lang="ts">
|
2022-11-28 07:12:13 +00:00
|
|
|
import type { UserLogin } from '~/types'
|
2022-11-28 07:03:26 +00:00
|
|
|
|
2022-12-15 13:50:11 +00:00
|
|
|
const emits = defineEmits<{
|
|
|
|
(event: 'click'): void
|
|
|
|
}>()
|
|
|
|
|
2022-11-23 04:25:48 +00:00
|
|
|
const all = useUsers()
|
2022-11-23 04:20:59 +00:00
|
|
|
|
2022-11-23 04:25:48 +00:00
|
|
|
const sorted = computed(() => {
|
2022-11-23 04:20:59 +00:00
|
|
|
return [
|
|
|
|
currentUser.value!,
|
2022-11-23 04:25:48 +00:00
|
|
|
...all.value.filter(account => account.token !== currentUser.value?.token),
|
2022-11-23 04:20:59 +00:00
|
|
|
].filter(Boolean)
|
|
|
|
})
|
2022-11-28 07:03:26 +00:00
|
|
|
|
|
|
|
const router = useRouter()
|
|
|
|
const switchUser = (user: UserLogin) => {
|
|
|
|
if (user.account.id === currentUser.value?.account.id)
|
2022-11-30 17:15:18 +00:00
|
|
|
router.push(getAccountRoute(user.account))
|
2022-11-30 00:22:35 +00:00
|
|
|
else
|
|
|
|
loginTo(user)
|
2022-11-28 07:03:26 +00:00
|
|
|
}
|
2022-11-23 03:48:01 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-12-15 13:50:11 +00:00
|
|
|
<div sm:min-w-80 max-w-100vw mxa py2 flex="~ col" @click="emits('click')">
|
2022-11-27 03:34:55 +00:00
|
|
|
<template v-for="user of sorted" :key="user.id">
|
2022-11-28 07:03:26 +00:00
|
|
|
<button
|
2022-11-27 03:34:55 +00:00
|
|
|
flex rounded px4 py3 text-left
|
2022-11-28 07:03:26 +00:00
|
|
|
hover:bg-active cursor-pointer transition-100
|
2022-11-29 21:24:26 +00:00
|
|
|
aria-label="Switch user"
|
2022-11-28 07:03:26 +00:00
|
|
|
@click="switchUser(user)"
|
2022-11-27 03:34:55 +00:00
|
|
|
>
|
2022-11-30 07:30:17 +00:00
|
|
|
<AccountInfo :account="user.account" :hover-card="false" />
|
2022-11-27 03:34:55 +00:00
|
|
|
<div flex-auto />
|
|
|
|
<div v-if="user.token === currentUser?.token" i-ri:check-line text-primary mya text-2xl />
|
2022-11-28 07:03:26 +00:00
|
|
|
</button>
|
2022-11-27 03:34:55 +00:00
|
|
|
</template>
|
|
|
|
<div border="t base" pt2>
|
2022-11-29 23:25:29 +00:00
|
|
|
<CommonDropdownItem
|
2022-12-05 05:48:23 +00:00
|
|
|
:text="$t('user.add_existing')"
|
2022-11-29 23:25:29 +00:00
|
|
|
icon="i-ri:user-add-line"
|
|
|
|
@click="openSigninDialog"
|
|
|
|
/>
|
|
|
|
<CommonDropdownItem
|
2022-12-17 16:55:29 +00:00
|
|
|
v-if="isMastoInitialised && currentUser"
|
2022-11-29 23:25:29 +00:00
|
|
|
:text="$t('user.sign_out_account', [getFullHandle(currentUser.account)])"
|
|
|
|
icon="i-ri:logout-box-line"
|
2022-11-23 04:20:59 +00:00
|
|
|
@click="signout"
|
2022-11-29 23:25:29 +00:00
|
|
|
/>
|
2022-11-23 04:20:59 +00:00
|
|
|
</div>
|
2022-11-23 03:48:01 +00:00
|
|
|
</div>
|
|
|
|
</template>
|