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