elk/composables/users.ts

82 lines
2.6 KiB
TypeScript
Raw Normal View History

2022-11-23 00:08:36 +01:00
import { login as loginMasto } from 'masto'
import type { AccountCredentials, Instance } from 'masto'
2022-11-26 20:33:36 +01:00
import { clearUserDrafts } from './statusDrafts'
2022-11-23 00:08:36 +01:00
import type { UserLogin } from '~/types'
2022-11-25 15:21:07 +01:00
import { DEFAULT_POST_CHARS_LIMIT, DEFAULT_SERVER, STORAGE_KEY_CURRENT_USER, STORAGE_KEY_SERVERS, STORAGE_KEY_USERS } from '~/constants'
2022-11-23 00:08:36 +01:00
2022-11-23 14:06:27 +01:00
const users = useLocalStorage<UserLogin[]>(STORAGE_KEY_USERS, [], { deep: true })
2022-11-25 15:21:07 +01:00
const servers = useLocalStorage<Record<string, Instance>>(STORAGE_KEY_SERVERS, {}, { deep: true })
2022-11-23 14:06:27 +01:00
const currentUserId = useLocalStorage<string>(STORAGE_KEY_CURRENT_USER, '')
2022-11-23 00:08:36 +01:00
export const currentUser = computed<UserLogin | undefined>(() => {
let user: UserLogin | undefined
2022-11-23 05:25:48 +01:00
if (currentUserId.value) {
user = users.value.find(user => user.account?.id === currentUserId.value)
2022-11-23 00:08:36 +01:00
if (user)
return user
}
// Fallback to the first account
2022-11-23 05:25:48 +01:00
return users.value[0]
2022-11-23 00:08:36 +01:00
})
export const currentServer = computed<string>(() => currentUser.value?.server || DEFAULT_SERVER)
2022-11-23 05:25:48 +01:00
export const useUsers = () => users
2022-11-23 04:48:01 +01:00
2022-11-25 15:21:07 +01:00
export const currentInstance = computed<null | Instance>(() => currentUserId.value ? servers.value[currentUserId.value] ?? null : null)
2022-11-25 15:21:07 +01:00
export const characterLimit = computed(() => currentInstance.value?.configuration.statuses.maxCharacters ?? DEFAULT_POST_CHARS_LIMIT)
2022-11-24 16:48:52 +01:00
export async function loginTo(user: UserLogin & { account?: AccountCredentials }) {
2022-11-25 18:02:12 +01:00
const existing = users.value.find(u => u.server === user.server && u.token === user.token)
if (existing) {
if (currentUserId.value === existing.account?.id)
2022-11-23 00:08:36 +01:00
return null
2022-11-23 05:25:48 +01:00
currentUserId.value = user.account?.id
2022-11-23 05:20:59 +01:00
await reloadPage()
2022-11-23 00:08:36 +01:00
return true
}
const masto = await loginMasto({
url: `https://${user.server}`,
accessToken: user.token,
})
2022-11-26 18:56:04 +01:00
const me = await masto.accounts.verifyCredentials()
2022-11-23 00:08:36 +01:00
user.account = me
2022-11-23 05:25:48 +01:00
users.value.push(user)
currentUserId.value = me.id
2022-11-26 18:56:04 +01:00
servers.value[me.id] = await masto.instances.fetch()
2022-11-23 05:20:59 +01:00
await reloadPage()
2022-11-23 00:08:36 +01:00
return true
}
2022-11-23 05:20:59 +01:00
export async function signout() {
// TODO: confirm
if (!currentUser.value)
return
2022-11-26 20:33:36 +01:00
const _currentUserId = currentUser.value.account.id
const index = users.value.findIndex(u => u.account?.id === _currentUserId)
if (index !== -1) {
// Clear stale data
delete servers.value[_currentUserId]
clearUserDrafts()
2022-11-23 05:20:59 +01:00
2022-11-26 20:33:36 +01:00
// Remove the current user from the users
users.value.splice(index, 1)
}
// Set currentUserId to next user if available
2022-11-23 05:25:48 +01:00
currentUserId.value = users.value[0]?.account?.id
2022-11-26 20:33:36 +01:00
2022-11-23 05:20:59 +01:00
await reloadPage()
}
export async function reloadPage(path = '/') {
await nextTick()
location.pathname = path
}