2022-11-23 04:48:01 +01:00
|
|
|
<script setup lang="ts">
|
2023-01-01 23:06:27 +01:00
|
|
|
const emit = defineEmits<{
|
2022-12-15 14:50:11 +01:00
|
|
|
(event: 'click'): void
|
|
|
|
}>()
|
|
|
|
|
2022-11-23 05:25:48 +01:00
|
|
|
const all = useUsers()
|
2022-11-23 05:20:59 +01:00
|
|
|
|
2022-11-23 05:25:48 +01:00
|
|
|
const sorted = computed(() => {
|
2023-01-03 03:14:54 +01:00
|
|
|
return all.value.sort((a, b) => isSameUser(a, currentUser.value) ? -1 : isSameUser(b, currentUser.value) ? 1 : 0)
|
2022-11-23 05:20:59 +01:00
|
|
|
})
|
2022-11-28 08:03:26 +01:00
|
|
|
|
2022-12-20 16:56:54 +01:00
|
|
|
const masto = useMasto()
|
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')">
|
2022-11-27 04:34:55 +01:00
|
|
|
<template v-for="user of sorted" :key="user.id">
|
2022-11-28 08:03:26 +01:00
|
|
|
<button
|
2022-11-27 04:34:55 +01:00
|
|
|
flex rounded px4 py3 text-left
|
2022-11-28 08:03:26 +01:00
|
|
|
hover:bg-active cursor-pointer transition-100
|
2022-11-29 22:24:26 +01:00
|
|
|
aria-label="Switch user"
|
2023-01-03 03:14:54 +01:00
|
|
|
@click="switchUser(user, masto)"
|
2022-11-27 04:34:55 +01:00
|
|
|
>
|
2023-01-03 03:14:54 +01:00
|
|
|
<AccountInfo v-if="!user.guest" :account="user.account" :hover-card="false" />
|
2023-01-03 10:39:00 +01:00
|
|
|
<AccountGuest v-else :user="user" />
|
2022-11-27 04:34:55 +01:00
|
|
|
<div flex-auto />
|
2023-01-03 03:14:54 +01:00
|
|
|
<div v-if="isSameUser(user, currentUser)" i-ri:check-line text-primary mya text-2xl />
|
2022-11-28 08:03:26 +01:00
|
|
|
</button>
|
2022-11-27 04:34:55 +01:00
|
|
|
</template>
|
|
|
|
<div border="t base" pt2>
|
2022-12-28 00:03:50 +01:00
|
|
|
<CommonDropdownItem
|
|
|
|
:text="$t('user.add_existing')"
|
|
|
|
icon="i-ri:user-add-line"
|
|
|
|
@click="openSigninDialog"
|
|
|
|
/>
|
2022-11-30 00:25:29 +01:00
|
|
|
<CommonDropdownItem
|
2023-01-03 10:39:00 +01:00
|
|
|
v-if="isMastoInitialised && canSignOut"
|
2023-01-03 03:14:54 +01:00
|
|
|
:text="$t('user.sign_out_account', [getFullHandle(currentUser)])"
|
2023-01-01 15:29:11 +01:00
|
|
|
icon="i-ri:logout-box-line rtl-flip"
|
2022-11-23 05:20:59 +01:00
|
|
|
@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>
|