egirlskey/packages/frontend/src/local-storage.ts

40 lines
900 B
TypeScript
Raw Normal View History

2023-01-07 01:13:02 +00:00
type Keys =
'v' |
'lastVersion' |
'instance' |
'account' |
'accounts' |
2023-01-07 02:49:00 +00:00
'latestDonationInfoShownAt' |
'neverShowDonationInfo' |
'neverShowLocalOnlyInfo' |
2023-01-07 01:13:02 +00:00
'lastUsed' |
'lang' |
'drafts' |
'hashtags' |
'wallpaper' |
'theme' |
'colorSchema' |
'useSystemFont' |
'fontSize' |
'ui' |
'ui_temp' |
2023-01-07 01:13:02 +00:00
'locale' |
'localeVersion' |
2023-01-07 01:13:02 +00:00
'theme' |
'customCss' |
'message_drafts' |
'scratchpad' |
'debug' |
2023-01-07 01:13:02 +00:00
`miux:${string}` |
`ui:folder:${string}` |
`themes:${string}` |
`aiscript:${string}` |
'lastEmojisFetchedAt' | // DEPRECATED, stored in indexeddb (13.9.0~)
'emojis' // DEPRECATED, stored in indexeddb (13.9.0~);
2023-01-07 01:13:02 +00:00
export const miLocalStorage = {
getItem: (key: Keys): string | null => window.localStorage.getItem(key),
setItem: (key: Keys, value: string): void => window.localStorage.setItem(key, value),
removeItem: (key: Keys): void => window.localStorage.removeItem(key),
2023-01-07 01:13:02 +00:00
};