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

57 lines
1.4 KiB
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
2023-01-07 01:13:02 +00:00
type Keys =
'v' |
'lastVersion' |
'instance' |
'instanceCachedAt' |
2023-01-07 01:13:02 +00:00
'account' |
'accounts' |
2023-01-07 02:49:00 +00:00
'latestDonationInfoShownAt' |
'neverShowDonationInfo' |
'neverShowLocalOnlyInfo' |
'modifiedVersionMustProminentlyOfferInAgplV3Section13Read' |
2023-01-07 01:13:02 +00:00
'lastUsed' |
'lang' |
'drafts' |
'hashtags' |
'wallpaper' |
'theme' |
2023-06-05 01:55:18 +00:00
'colorScheme' |
'useSystemFont' |
2023-01-07 01:13:02 +00:00
'fontSize' |
2023-10-31 18:21:29 +00:00
'cornerRadius' |
2023-01-07 01:13:02 +00:00
'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~);
`channelLastReadedAt:${string}`
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),
getItemAsJson: (key: Keys): any | undefined => {
const item = miLocalStorage.getItem(key);
if (item === null) {
return undefined;
}
return JSON.parse(item);
},
setItemAsJson: (key: Keys, value: any): void => window.localStorage.setItem(key, JSON.stringify(value)),
2023-01-07 01:13:02 +00:00
};