105 lines
2.7 KiB
TypeScript
105 lines
2.7 KiB
TypeScript
/*
|
||
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||
* SPDX-License-Identifier: AGPL-3.0-only
|
||
*/
|
||
|
||
/**
|
||
* A typesafe enum of keys for localStorage.
|
||
*/
|
||
export type Keys =
|
||
'v' |
|
||
'lastVersion' |
|
||
'instance' |
|
||
'instanceCachedAt' |
|
||
'account' |
|
||
'accounts' |
|
||
'latestDonationInfoShownAt' |
|
||
'neverShowDonationInfo' |
|
||
'neverShowLocalOnlyInfo' |
|
||
'modifiedVersionMustProminentlyOfferInAgplV3Section13Read' |
|
||
'lastUsed' |
|
||
'lang' |
|
||
'drafts' |
|
||
'hashtags' |
|
||
'wallpaper' |
|
||
'theme' |
|
||
'colorScheme' |
|
||
'useSystemFont' |
|
||
'fontSize' |
|
||
'ui' |
|
||
'ui_temp' |
|
||
'locale' |
|
||
'localeVersion' |
|
||
'theme' |
|
||
'customCss' |
|
||
'message_drafts' |
|
||
'scratchpad' |
|
||
'debug' |
|
||
`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}` |
|
||
`idbfallback::${string}`
|
||
|
||
// セッション毎に廃棄されるLocalStorage代替(セーフモードなどで使用できそう)
|
||
//const safeSessionStorage = new Map<Keys, string>();
|
||
|
||
|
||
/**
|
||
* A utility object for interacting with the browser's localStorage.
|
||
*
|
||
* It's mostly a small wrapper around window.localStorage, but it validates
|
||
* keys with a typesafe enum, and provides a few convenience methods for JSON.
|
||
*/
|
||
export const miLocalStorage = {
|
||
/**
|
||
* Retrieves an item from localStorage.
|
||
* @param {Keys} key - The key of the item to retrieve.
|
||
* @returns {string | null} The value of the item, or null if the item does not exist.
|
||
*/
|
||
getItem: (key: Keys): string | null => {
|
||
return window.localStorage.getItem(key);
|
||
},
|
||
|
||
/**
|
||
* Stores an item in localStorage.
|
||
* @param {Keys} key - The key of the item to store.
|
||
* @param {string} value - The value of the item to store.
|
||
*/
|
||
setItem: (key: Keys, value: string): void => {
|
||
window.localStorage.setItem(key, value);
|
||
},
|
||
|
||
/**
|
||
* Removes an item from localStorage.
|
||
* @param {Keys} key - The key of the item to remove.
|
||
*/
|
||
removeItem: (key: Keys): void => {
|
||
window.localStorage.removeItem(key);
|
||
},
|
||
|
||
/**
|
||
* Retrieves an item from localStorage and parses it as JSON.
|
||
* @param {Keys} key - The key of the item to retrieve.
|
||
* @returns {any | undefined} The parsed value of the item, or undefined if the item does not exist.
|
||
*/
|
||
getItemAsJson: (key: Keys): any | undefined => {
|
||
const item = miLocalStorage.getItem(key);
|
||
if (item === null) {
|
||
return undefined;
|
||
}
|
||
return JSON.parse(item);
|
||
},
|
||
|
||
/**
|
||
* Stores an item in localStorage as a JSON string.
|
||
* @param {Keys} key - The key of the item to store.
|
||
* @param {any} value - The value of the item to store.
|
||
*/
|
||
setItemAsJson: (key: Keys, value: any): void => {
|
||
miLocalStorage.setItem(key, JSON.stringify(value));
|
||
},
|
||
};
|