mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
95 lines
2.8 KiB
TypeScript
Executable File
95 lines
2.8 KiB
TypeScript
Executable File
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
// Keeps window.localStorage state in external JSON-files.
|
|
// Because app creates random port between restarts => storage session wiped out each time.
|
|
import path from "path";
|
|
import { comparer, observable, reaction, toJS, when } from "mobx";
|
|
import { StorageHelper } from "../storageHelper";
|
|
import logger from "../../../main/logger";
|
|
import { isTestEnv } from "../../../common/vars";
|
|
|
|
import { getHostedClusterId } from "../../../common/utils";
|
|
import type { JsonObject } from "type-fest";
|
|
|
|
const storage = observable({
|
|
initialized: false,
|
|
loaded: false,
|
|
data: {} as Record<string/*key*/, any>, // json-serializable
|
|
});
|
|
|
|
interface Dependencies {
|
|
directoryForLensLocalStorage: string;
|
|
readJsonFile: (filePath: string) => Promise<JsonObject>;
|
|
writeJsonFile: (filePath: string, contentObject: JsonObject) => Promise<void>;
|
|
}
|
|
|
|
/**
|
|
* Creates a helper for saving data under the "key" intended for window.localStorage
|
|
*/
|
|
export const createStorage = ({ directoryForLensLocalStorage, readJsonFile, writeJsonFile }: Dependencies) => <T>(key: string, defaultValue: T) => {
|
|
const { logPrefix } = StorageHelper;
|
|
|
|
if (!storage.initialized) {
|
|
storage.initialized = true;
|
|
|
|
(async () => {
|
|
const filePath = path.resolve(directoryForLensLocalStorage, `${getHostedClusterId() || "app"}.json`);
|
|
|
|
try {
|
|
storage.data = await readJsonFile(filePath);
|
|
}
|
|
|
|
// eslint-disable-next-line no-empty
|
|
catch {}
|
|
|
|
finally {
|
|
if (!isTestEnv) {
|
|
logger.info(`${logPrefix} loading finished for ${filePath}`);
|
|
}
|
|
|
|
storage.loaded = true;
|
|
}
|
|
|
|
// bind auto-saving data changes to %storage-file.json
|
|
reaction(() => toJS(storage.data), saveFile, {
|
|
delay: 250, // lazy, avoid excessive writes to fs
|
|
equals: comparer.structural, // save only when something really changed
|
|
});
|
|
|
|
async function saveFile(state: Record<string, any> = {}) {
|
|
logger.info(`${logPrefix} saving ${filePath}`);
|
|
|
|
try {
|
|
await writeJsonFile(filePath, state);
|
|
} catch (error) {
|
|
logger.error(`${logPrefix} saving failed: ${error}`, {
|
|
json: state, jsonFilePath: filePath,
|
|
});
|
|
}
|
|
}
|
|
})()
|
|
.catch(error => logger.error(`${logPrefix} Failed to initialize storage: ${error}`));
|
|
}
|
|
|
|
return new StorageHelper<T>(key, {
|
|
autoInit: true,
|
|
defaultValue,
|
|
storage: {
|
|
async getItem(key: string) {
|
|
await when(() => storage.loaded);
|
|
|
|
return storage.data[key];
|
|
},
|
|
setItem(key: string, value: any) {
|
|
storage.data[key] = value;
|
|
},
|
|
removeItem(key: string) {
|
|
delete storage.data[key];
|
|
},
|
|
},
|
|
});
|
|
};
|