2019-08-11 04:09:06 +08:00
|
|
|
import { Persister } from "../../core/persistence";
|
2019-07-24 22:44:17 +08:00
|
|
|
import { throttle } from "lodash";
|
2019-07-25 05:28:22 +08:00
|
|
|
import GoldenLayout from "golden-layout";
|
2019-07-24 22:44:17 +08:00
|
|
|
|
|
|
|
const LAYOUT_CONFIG_KEY = "QuestEditorUiPersister.layout_config";
|
|
|
|
|
2019-08-23 04:45:01 +08:00
|
|
|
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);
|
|
|
|
},
|
2019-07-25 05:28:22 +08:00
|
|
|
500,
|
2019-12-20 05:14:59 +08:00
|
|
|
{ leading: true, trailing: true },
|
2019-07-24 22:44:17 +08:00
|
|
|
);
|
|
|
|
|
2019-07-25 05:28:22 +08:00
|
|
|
async load_layout_config(
|
2019-12-22 02:40:42 +08:00
|
|
|
components: readonly string[],
|
2019-08-11 04:09:06 +08:00
|
|
|
default_config: GoldenLayout.ItemConfigType[],
|
2019-07-25 05:28:22 +08:00
|
|
|
): Promise<any> {
|
|
|
|
const config = await this.load<GoldenLayout.ItemConfigType[]>(LAYOUT_CONFIG_KEY);
|
2019-07-24 22:44:17 +08:00
|
|
|
|
2019-07-25 05:28:22 +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(
|
2019-07-25 05:28:22 +08:00
|
|
|
config: GoldenLayout.ItemConfigType[],
|
2019-12-22 02:40:42 +08:00
|
|
|
components: readonly string[],
|
2019-07-25 05:28:22 +08:00
|
|
|
): 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>,
|
2019-07-25 05:28:22 +08:00
|
|
|
found: Set<string>,
|
2019-08-11 04:09:06 +08:00
|
|
|
first: boolean,
|
2019-07-24 22:44:17 +08:00
|
|
|
): boolean {
|
|
|
|
if (!config) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-08-23 04:45:01 +08:00
|
|
|
if ("componentName" in config) {
|
|
|
|
if (!components.has(config.componentName)) {
|
2019-07-24 22:44:17 +08:00
|
|
|
return false;
|
|
|
|
} else {
|
2019-08-23 04:45:01 +08:00
|
|
|
found.add(config.componentName);
|
2019-07-24 22:44:17 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config.content) {
|
|
|
|
for (const child of config.content) {
|
2019-07-25 05:28:22 +08:00
|
|
|
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();
|