2022-11-23 03:48:01 +00:00
|
|
|
<script setup lang="ts">
|
2022-11-23 04:25:48 +00:00
|
|
|
const all = useUsers()
|
2022-11-23 04:20:59 +00:00
|
|
|
|
2022-11-23 04:25:48 +00:00
|
|
|
const sorted = computed(() => {
|
2022-11-23 04:20:59 +00:00
|
|
|
return [
|
|
|
|
currentUser.value!,
|
2022-11-23 04:25:48 +00:00
|
|
|
...all.value.filter(account => account.token !== currentUser.value?.token),
|
2022-11-23 04:20:59 +00:00
|
|
|
].filter(Boolean)
|
|
|
|
})
|
2022-11-23 03:48:01 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-27 03:34:55 +00:00
|
|
|
<div min-w-80 mxa py2 flex="~ col">
|
|
|
|
<template v-for="user of sorted" :key="user.id">
|
|
|
|
<Component
|
|
|
|
:is="user.token !== currentUser?.token ? 'button' : 'div'"
|
|
|
|
flex rounded px4 py3 text-left
|
|
|
|
:class="user.token !== currentUser?.token ? 'hover:bg-active cursor-pointer transition-100' : ''"
|
|
|
|
@click="loginTo(user)"
|
|
|
|
>
|
|
|
|
<AccountInfo :account="user.account" />
|
|
|
|
<div flex-auto />
|
|
|
|
<div v-if="user.token === currentUser?.token" i-ri:check-line text-primary mya text-2xl />
|
|
|
|
</Component>
|
|
|
|
</template>
|
|
|
|
<div border="t base" pt2>
|
2022-11-23 04:20:59 +00:00
|
|
|
<button btn-text flex="~ gap-1" items-center @click="openSigninDialog">
|
|
|
|
<div i-ri:user-add-line />
|
2022-11-23 08:58:07 +00:00
|
|
|
Add an existing account
|
2022-11-23 04:20:59 +00:00
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
v-if="currentUser" btn-text hover:text-red4 flex="~ gap-1" items-center
|
|
|
|
@click="signout"
|
|
|
|
>
|
|
|
|
<div i-ri:logout-box-line />
|
2022-11-26 16:42:53 +00:00
|
|
|
Sign out {{ getFullHandle(currentUser.account) }}
|
2022-11-23 04:20:59 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
2022-11-23 03:48:01 +00:00
|
|
|
</div>
|
|
|
|
</template>
|