elk/composables/users.ts

64 wiersze
1.7 KiB
TypeScript
Czysty Zwykły widok Historia

2022-11-22 23:08:36 +00:00
import { login as loginMasto } from 'masto'
import type { UserLogin } from '~/types'
import { DEFAULT_SERVER } from '~/constants'
2022-11-23 04:25:48 +00:00
const users = useLocalStorage<UserLogin[]>('nuxtodon-accounts', [], { deep: true })
const currentUserId = useLocalStorage<string>('nuxtodon-current-user', '')
2022-11-22 23:08:36 +00:00
export const currentUser = computed<UserLogin | undefined>(() => {
let user: UserLogin | undefined
2022-11-23 04:25:48 +00:00
if (currentUserId.value) {
user = users.value.find(user => user.account?.id === currentUserId.value)
2022-11-22 23:08:36 +00:00
if (user)
return user
}
// Fallback to the first account
2022-11-23 04:25:48 +00:00
return users.value[0]
2022-11-22 23:08:36 +00:00
})
export const currentServer = computed<string>(() => currentUser.value?.server || DEFAULT_SERVER)
2022-11-23 04:25:48 +00:00
export const useUsers = () => users
2022-11-23 03:48:01 +00:00
export async function loginTo(user: UserLogin) {
2022-11-23 04:25:48 +00:00
const existing = users.value.findIndex(u => u.server === user.server && u.token === user.token)
2022-11-22 23:08:36 +00:00
if (existing !== -1) {
2022-11-23 04:25:48 +00:00
if (currentUserId.value === users.value[existing].account?.id)
2022-11-22 23:08:36 +00:00
return null
2022-11-23 04:25:48 +00:00
currentUserId.value = user.account?.id
2022-11-23 04:20:59 +00:00
await reloadPage()
2022-11-22 23:08:36 +00:00
return true
}
const masto = await loginMasto({
url: `https://${user.server}`,
accessToken: user.token,
})
const me = await masto.accounts.verifyCredentials()
user.account = me
2022-11-23 04:25:48 +00:00
users.value.push(user)
currentUserId.value = me.id
2022-11-23 04:20:59 +00:00
await reloadPage()
2022-11-22 23:08:36 +00:00
return true
}
2022-11-23 04:20:59 +00:00
export async function signout() {
// TODO: confirm
if (!currentUser.value)
return
2022-11-23 04:25:48 +00:00
const index = users.value.findIndex(u => u.account?.id === currentUser.value?.account?.id)
2022-11-23 04:20:59 +00:00
if (index === -1)
return
2022-11-23 04:25:48 +00:00
users.value.splice(index, 1)
currentUserId.value = users.value[0]?.account?.id
2022-11-23 04:20:59 +00:00
await reloadPage()
}
export async function reloadPage(path = '/') {
await nextTick()
location.pathname = path
}