elk/components/user/UserPicker.vue

30 lines
885 B
Vue
Raw Normal View History

<script setup lang="ts">
const all = useUsers()
const masto = useMasto()
</script>
<template>
2022-12-27 23:07:19 +03:00
<div flex justify-start items-end px-2 gap-5>
<div flex="~ wrap-reverse" gap-5>
<template v-for="user of all" :key="user.id">
<button
flex rounded
cursor-pointer
aria-label="Switch user"
2023-01-03 03:11:10 +03:00
:class="user.account?.id === currentUser?.account?.id ? '' : 'op25 grayscale'"
2022-12-27 23:07:19 +03:00
hover="filter-none op100"
2023-01-03 05:14:54 +03:00
@click="switchUser(user, masto)"
2022-12-27 23:07:19 +03:00
>
2023-01-03 04:23:16 +03:00
<AccountAvatar v-if="!user.guest" w-13 h-13 :account="user.account" />
2023-01-03 12:39:00 +03:00
<div v-else bg="gray/40" rounded-full w-13 h-13 flex shrink-0 items-center justify-center text-5>
G
</div>
2022-12-27 23:07:19 +03:00
</button>
</template>
</div>
<div flex items-center justify-center w-13 h-13>
<UserDropdown />
</div>
</div>
</template>