mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import { autorun, observable, reaction } from "mobx";
|
|
import { autobind, createStorage } from "../../utils";
|
|
import { dockStore, TabId } from "./dock.store";
|
|
|
|
interface Options<T = any> {
|
|
storageName?: string; // name to sync data with localStorage
|
|
storageSerializer?: (data: T) => Partial<T>; // allow to customize data before saving to localStorage
|
|
}
|
|
|
|
@autobind()
|
|
export class DockTabStore<T = any> {
|
|
protected data = observable.map<TabId, T>([]);
|
|
|
|
constructor(protected options: Options<T> = {}) {
|
|
const { storageName } = options;
|
|
|
|
// auto-save to local-storage
|
|
if (storageName) {
|
|
const storage = createStorage<[TabId, T][]>(storageName, []);
|
|
this.data.replace(storage.get());
|
|
reaction(() => this.serializeData(), (data: T | any) => storage.set(data));
|
|
}
|
|
|
|
// clear data for closed tabs
|
|
autorun(() => {
|
|
const currentTabs = dockStore.tabs.map(tab => tab.id);
|
|
Array.from(this.data.keys()).forEach(tabId => {
|
|
if (!currentTabs.includes(tabId)) {
|
|
this.clearData(tabId);
|
|
}
|
|
})
|
|
});
|
|
}
|
|
|
|
protected serializeData() {
|
|
const { storageSerializer } = this.options;
|
|
return Array.from(this.data).map(([tabId, tabData]) => {
|
|
if (storageSerializer) return [tabId, storageSerializer(tabData)]
|
|
return [tabId, tabData];
|
|
})
|
|
}
|
|
|
|
getData(tabId: TabId) {
|
|
return this.data.get(tabId);
|
|
}
|
|
|
|
setData(tabId: TabId, data: T) {
|
|
this.data.set(tabId, data);
|
|
}
|
|
|
|
clearData(tabId: TabId) {
|
|
this.data.delete(tabId);
|
|
}
|
|
|
|
reset() {
|
|
this.data.clear();
|
|
}
|
|
}
|