elk/composables/users.ts

71 wiersze
2.3 KiB
TypeScript
Czysty Zwykły widok Historia

2022-11-22 23:08:36 +00:00
import { login as loginMasto } from 'masto'
import type { AccountCredentials, Instance } from 'masto'
2022-11-22 23:08:36 +00:00
import type { UserLogin } from '~/types'
2022-11-25 14:21:07 +00:00
import { DEFAULT_POST_CHARS_LIMIT, DEFAULT_SERVER, STORAGE_KEY_CURRENT_USER, STORAGE_KEY_SERVERS, STORAGE_KEY_USERS } from '~/constants'
2022-11-22 23:08:36 +00:00
2022-11-23 13:06:27 +00:00
const users = useLocalStorage<UserLogin[]>(STORAGE_KEY_USERS, [], { deep: true })
2022-11-25 14:21:07 +00:00
const servers = useLocalStorage<Record<string, Instance>>(STORAGE_KEY_SERVERS, {}, { deep: true })
2022-11-23 13:06:27 +00:00
const currentUserId = useLocalStorage<string>(STORAGE_KEY_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
2022-11-25 14:21:07 +00:00
export const currentInstance = computed<null | Instance>(() => currentUserId.value ? servers.value[currentUserId.value] ?? null : null)
2022-11-25 14:21:07 +00:00
export const characterLimit = computed(() => currentInstance.value?.configuration.statuses.maxCharacters ?? DEFAULT_POST_CHARS_LIMIT)
2022-11-24 15:48:52 +00:00
export async function loginTo(user: UserLogin & { account?: AccountCredentials }) {
2022-11-25 17:02:12 +00: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-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,
})
2022-11-26 17:56:04 +00:00
const me = await masto.accounts.verifyCredentials()
2022-11-22 23:08:36 +00:00
user.account = me
2022-11-23 04:25:48 +00:00
users.value.push(user)
currentUserId.value = me.id
2022-11-26 17:56:04 +00:00
servers.value[me.id] = await masto.instances.fetch()
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-24 15:48:52 +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
}