mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 16:39:58 +00:00
perf: cache userSettings, improve #1013
This commit is contained in:
parent
55aff4778b
commit
d2ef57bcfa
3 changed files with 36 additions and 17 deletions
|
@ -1,6 +1,6 @@
|
|||
import { createClient, fetchV1Instance } from 'masto'
|
||||
import type { mastodon } from 'masto'
|
||||
import type { Ref } from 'vue'
|
||||
import type { EffectScope, Ref } from 'vue'
|
||||
import type { MaybeComputedRef, RemovableRef } from '@vueuse/core'
|
||||
import type { ElkMasto, UserLogin } from '~/types'
|
||||
import {
|
||||
|
@ -266,18 +266,34 @@ export function checkLogin() {
|
|||
return true
|
||||
}
|
||||
|
||||
interface UseUserLocalStorageCache {
|
||||
scope: EffectScope
|
||||
value: Ref<Record<string, any>>
|
||||
}
|
||||
|
||||
/**
|
||||
* Create reactive storage for the current user
|
||||
*/
|
||||
export function useUserLocalStorage<T extends object>(key: string, initial: () => T) {
|
||||
const all = useLocalStorage<Record<string, T>>(key, {}, { deep: true })
|
||||
return computed(() => {
|
||||
const id = currentUser.value?.account.id
|
||||
? currentUser.value.account.acct
|
||||
: '[anonymous]'
|
||||
all.value[id] = Object.assign(initial(), all.value[id] || {})
|
||||
return all.value[id]
|
||||
})
|
||||
// @ts-expect-error bind value to the function
|
||||
const map: Map<string, UseUserLocalStorageCache> = useUserLocalStorage._ = useUserLocalStorage._ || new Map()
|
||||
|
||||
if (!map.has(key)) {
|
||||
const scope = effectScope(true)
|
||||
const value = scope.run(() => {
|
||||
const all = useLocalStorage<Record<string, T>>(key, {}, { deep: true })
|
||||
return computed(() => {
|
||||
const id = currentUser.value?.account.id
|
||||
? currentUser.value.account.acct
|
||||
: '[anonymous]'
|
||||
all.value[id] = Object.assign(initial(), all.value[id] || {})
|
||||
return all.value[id]
|
||||
})
|
||||
})
|
||||
map.set(key, { scope, value: value! })
|
||||
}
|
||||
|
||||
return map.get(key)!.value
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -290,10 +306,12 @@ export function clearUserLocalStorage(account?: mastodon.v1.Account) {
|
|||
return
|
||||
|
||||
const id = `${account.acct}@${currentInstance.value?.uri || currentServer.value}`
|
||||
|
||||
// @ts-expect-error bind value to the function
|
||||
;(useUserLocalStorage._ as Map<string, Ref<Record<string, any>>> | undefined)?.forEach((storage) => {
|
||||
if (storage.value[id])
|
||||
delete storage.value[id]
|
||||
const cacheMap = useUserLocalStorage._ as Map<string, UseUserLocalStorageCache> | undefined
|
||||
cacheMap?.forEach(({ value }) => {
|
||||
if (value.value[id])
|
||||
delete value.value[id]
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
@ -11,6 +11,9 @@ const errorCodes: Record<number, string> = {
|
|||
404: 'Page not found',
|
||||
}
|
||||
|
||||
if (process.dev)
|
||||
console.error(error)
|
||||
|
||||
const defaultMessage = 'Something went wrong'
|
||||
|
||||
const message = error.message ?? errorCodes[error.statusCode!] ?? defaultMessage
|
||||
|
|
|
@ -11,15 +11,13 @@ export default defineNuxtPlugin(() => {
|
|||
innerHTML: `
|
||||
;(function() {
|
||||
const handle = localStorage.getItem('${STORAGE_KEY_CURRENT_USER_HANDLE}')
|
||||
if (!handle)
|
||||
return
|
||||
if (!handle) { return }
|
||||
const allSettings = JSON.parse(localStorage.getItem('${STORAGE_KEY_SETTINGS}') || '{}')
|
||||
const settings = allSettings[handle]
|
||||
if (!settings)
|
||||
return
|
||||
if (!settings) { return }
|
||||
|
||||
const html = document.querySelector('html')
|
||||
${process.dev ? 'console.log(\'settings\', settings)' : ''}
|
||||
${process.dev ? 'console.log({ settings })' : ''}
|
||||
|
||||
const { fontSize, language } = settings || {}
|
||||
|
||||
|
|
Loading…
Reference in a new issue