phantasmal-world/src/quest_editor/persistence/QuestEditorUiPersister.ts

75 lines
2.0 KiB
TypeScript
Raw Normal View History

import { Persister } from "../../core/persistence";
2019-07-24 22:44:17 +08:00
import { throttle } from "lodash";
import GoldenLayout from "golden-layout";
2019-07-24 22:44:17 +08:00
const LAYOUT_CONFIG_KEY = "QuestEditorUiPersister.layout_config";
export class QuestEditorUiPersister extends Persister {
2019-07-24 22:44:17 +08:00
persist_layout_config = throttle(
(config: any) => {
this.persist(LAYOUT_CONFIG_KEY, config);
},
500,
{ leading: true, trailing: true },
2019-07-24 22:44:17 +08:00
);
async load_layout_config(
components: readonly string[],
default_config: GoldenLayout.ItemConfigType[],
): Promise<any> {
const config = await this.load<GoldenLayout.ItemConfigType[]>(LAYOUT_CONFIG_KEY);
2019-07-24 22:44:17 +08:00
if (config && this.verify_layout_config(config, components)) {
2019-07-24 22:44:17 +08:00
return config;
} else {
return default_config;
}
}
private verify_layout_config(
config: GoldenLayout.ItemConfigType[],
components: readonly string[],
): boolean {
const set = new Set(components);
for (const child of config) {
if (!this.verify_layout_child(child, set, new Set(), true)) {
return false;
}
}
return true;
}
private verify_layout_child(
config: GoldenLayout.ItemConfigType,
2019-07-24 22:44:17 +08:00
components: Set<string>,
found: Set<string>,
first: boolean,
2019-07-24 22:44:17 +08:00
): boolean {
if (!config) {
return false;
}
if ("componentName" in config) {
if (!components.has(config.componentName)) {
2019-07-24 22:44:17 +08:00
return false;
} else {
found.add(config.componentName);
2019-07-24 22:44:17 +08:00
}
}
if (config.content) {
for (const child of config.content) {
if (!this.verify_layout_child(child, components, found, false)) {
2019-07-24 22:44:17 +08:00
return false;
}
}
}
return first ? components.size === found.size : true;
}
}
export const quest_editor_ui_persister = new QuestEditorUiPersister();