elk/components/user/UserSwitcher.vue

45 lines
1.3 KiB
Vue
Raw Normal View History

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