diff --git a/src/persistence/QuestEditorUiPersister.ts b/src/persistence/QuestEditorUiPersister.ts index d02a6cba..772bc07b 100644 --- a/src/persistence/QuestEditorUiPersister.ts +++ b/src/persistence/QuestEditorUiPersister.ts @@ -1,5 +1,6 @@ import { Persister } from "./Persister"; import { throttle } from "lodash"; +import GoldenLayout from "golden-layout"; const LAYOUT_CONFIG_KEY = "QuestEditorUiPersister.layout_config"; @@ -8,16 +9,17 @@ class QuestEditorUiPersister extends Persister { (config: any) => { this.persist(LAYOUT_CONFIG_KEY, config); }, - 1000, + 500, { leading: false, trailing: true } ); - async load_layout_config(components: string[], default_config: any): Promise { - const config = await this.load(LAYOUT_CONFIG_KEY); + async load_layout_config( + components: string[], + default_config: GoldenLayout.ItemConfigType[] + ): Promise { + const config = await this.load(LAYOUT_CONFIG_KEY); - let valid = this.verify_layout_config(config, new Set(components)); - - if (valid) { + if (config && this.verify_layout_config(config, components)) { return config; } else { return default_config; @@ -25,16 +27,31 @@ class QuestEditorUiPersister extends Persister { } private verify_layout_config( - config: any, + config: GoldenLayout.ItemConfigType[], + components: 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, components: Set, - found: Set = new Set(), - first: boolean = true + found: Set, + first: boolean ): boolean { if (!config) { return false; } - if (config.component) { + if ("component" in config) { if (!components.has(config.component)) { return false; } else { @@ -44,7 +61,7 @@ class QuestEditorUiPersister extends Persister { if (config.content) { for (const child of config.content) { - if (!this.verify_layout_config(child, components, found, false)) { + if (!this.verify_layout_child(child, components, found, false)) { return false; } } diff --git a/src/ui/quest_editor/QuestEditorComponent.tsx b/src/ui/quest_editor/QuestEditorComponent.tsx index 8ffc65fd..50b08602 100644 --- a/src/ui/quest_editor/QuestEditorComponent.tsx +++ b/src/ui/quest_editor/QuestEditorComponent.tsx @@ -1,4 +1,4 @@ -import GoldenLayout from "golden-layout"; +import GoldenLayout, { ItemConfigType } from "golden-layout"; import Logger from "js-logger"; import { observer } from "mobx-react"; import React, { Component, createRef, FocusEvent, ReactNode } from "react"; @@ -28,7 +28,7 @@ const DEFAULT_LAYOUT_CONFIG = { }, }; -const DEFAULT_LAYOUT_CONTENT = [ +const DEFAULT_LAYOUT_CONTENT: ItemConfigType[] = [ { type: "row", content: [ @@ -90,7 +90,7 @@ export class QuestEditorComponent extends Component { DEFAULT_LAYOUT_CONTENT ); - const config = { + const config: GoldenLayout.Config = { ...DEFAULT_LAYOUT_CONFIG, content, };