elk/components/user/UserSwitcher.vue

66 lines
1.7 KiB
Vue
Raw Normal View History

2022-11-23 04:48:01 +01:00
<script setup lang="ts">
2022-11-28 08:12:13 +01:00
import type { UserLogin } from '~/types'
2022-11-28 08:03:26 +01:00
2023-01-01 23:06:27 +01:00
const emit = defineEmits<{
(event: 'click'): void
}>()
2022-11-23 05:25:48 +01:00
const all = useUsers()
2023-03-19 13:12:20 +01:00
const { singleInstanceServer, oauth } = useSignIn()
2022-11-23 05:20:59 +01:00
2022-11-23 05:25:48 +01:00
const sorted = computed(() => {
2022-11-23 05:20:59 +01:00
return [
currentUser.value!,
2022-11-23 05:25:48 +01:00
...all.value.filter(account => account.token !== currentUser.value?.token),
2022-11-23 05:20:59 +01:00
].filter(Boolean)
})
2022-11-28 08:03:26 +01:00
const router = useRouter()
function clickUser(user: UserLogin) {
2022-11-28 08:03:26 +01:00
if (user.account.id === currentUser.value?.account.id)
router.push(getAccountRoute(user.account))
2022-11-30 01:22:35 +01:00
else
2023-01-15 09:38:02 +01:00
switchUser(user)
2022-11-28 08:03:26 +01:00
}
function processSignIn() {
if (singleInstanceServer)
oauth()
else
openSigninDialog()
}
2022-11-23 04:48:01 +01:00
</script>
<template>
2023-01-01 23:06:27 +01:00
<div sm:min-w-80 max-w-100vw mxa py2 flex="~ col" @click="emit('click')">
<template v-for="user of sorted" :key="user.id">
2022-11-28 08:03:26 +01:00
<button
flex rounded px4 py3 text-left
2022-11-28 08:03:26 +01:00
hover:bg-active cursor-pointer transition-100
:aria-label="$t('action.switch_account')"
2023-01-15 09:38:02 +01:00
@click="clickUser(user)"
>
2023-01-05 13:17:44 +01:00
<AccountInfo :account="user.account" :hover-card="false" square />
<div flex-auto />
<div v-if="user.token === currentUser?.token" i-ri:check-line text-primary mya text-2xl />
2022-11-28 08:03:26 +01:00
</button>
</template>
<div border="t base" pt2>
<CommonDropdownItem
2023-01-22 10:57:30 +01:00
is="button"
:text="$t('user.add_existing')"
icon="i-ri:user-add-line"
w-full
@click="processSignIn"
/>
2022-11-30 00:25:29 +01:00
<CommonDropdownItem
2023-01-22 10:57:30 +01:00
is="button"
2023-01-15 09:38:02 +01:00
v-if="isHydrated && currentUser"
2022-11-30 00:25:29 +01:00
:text="$t('user.sign_out_account', [getFullHandle(currentUser.account)])"
icon="i-ri:logout-box-line rtl-flip"
w-full
@click="signOut"
2022-11-30 00:25:29 +01:00
/>
2022-11-23 05:20:59 +01:00
</div>
2022-11-23 04:48:01 +01:00
</div>
</template>