7ff15816d1
# Conflicts: # .github/workflows/api-misskey-js.yml # .github/workflows/changelog-check.yml # .github/workflows/check-misskey-js-autogen.yml # .github/workflows/get-api-diff.yml # .github/workflows/lint.yml # .github/workflows/locale.yml # .github/workflows/on-release-created.yml # .github/workflows/storybook.yml # .github/workflows/test-backend.yml # .github/workflows/test-federation.yml # .github/workflows/test-frontend.yml # .github/workflows/test-misskey-js.yml # .github/workflows/test-production.yml # .github/workflows/validate-api-json.yml # locales/index.d.ts # package.json # packages/misskey-js/generator/package.json # packages/misskey-js/package.json # pnpm-lock.yaml # scripts/changelog-checker/package-lock.json # scripts/changelog-checker/package.json
71 lines
1.7 KiB
TypeScript
71 lines
1.7 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export type Keys = (
|
|
'v' |
|
|
'lastVersion' |
|
|
'instance' |
|
|
'instanceCachedAt' |
|
|
'account' |
|
|
'latestDonationInfoShownAt' |
|
|
'neverShowDonationInfo' |
|
|
'neverShowLocalOnlyInfo' |
|
|
'modifiedVersionMustProminentlyOfferInAgplV3Section13Read' |
|
|
'lastUsed' |
|
|
'lang' |
|
|
'drafts' |
|
|
'hashtags' |
|
|
'colorScheme' |
|
|
'useSystemFont' |
|
|
'fontSize' |
|
|
'cornerRadius' |
|
|
'ui' |
|
|
'ui_temp' |
|
|
'locale' |
|
|
'localeVersion' |
|
|
'theme' |
|
|
'themeId' |
|
|
'customCss' |
|
|
'chatMessageDrafts' |
|
|
'scratchpad' |
|
|
'debug' |
|
|
'preferences' |
|
|
'latestPreferencesUpdate' |
|
|
'hidePreferencesRestoreSuggestion' |
|
|
`miux:${string}` |
|
|
`ui:folder:${string}` |
|
|
`themes:${string}` | // DEPRECATED
|
|
`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>();
|
|
|
|
export const miLocalStorage = {
|
|
getItem: (key: Keys): string | null => {
|
|
return 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 => {
|
|
miLocalStorage.setItem(key, JSON.stringify(value));
|
|
},
|
|
};
|