From 6c17c36b6175974791888731f3650b8eaaf97dcd Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Sun, 11 Aug 2019 21:59:36 +0200 Subject: [PATCH] Split NPC counts off into its own dockable component. --- src/quest_editor/ui/NpcCountsComponent.css | 8 + src/quest_editor/ui/NpcCountsComponent.tsx | 43 ++++++ src/quest_editor/ui/QuestEditorComponent.tsx | 21 ++- src/quest_editor/ui/QuestInfoComponent.css | 6 - src/quest_editor/ui/QuestInfoComponent.tsx | 148 +++++++------------ 5 files changed, 125 insertions(+), 101 deletions(-) create mode 100644 src/quest_editor/ui/NpcCountsComponent.css create mode 100644 src/quest_editor/ui/NpcCountsComponent.tsx diff --git a/src/quest_editor/ui/NpcCountsComponent.css b/src/quest_editor/ui/NpcCountsComponent.css new file mode 100644 index 00000000..1df368c1 --- /dev/null +++ b/src/quest_editor/ui/NpcCountsComponent.css @@ -0,0 +1,8 @@ +.main { + height: 100%; + overflow: auto; +} + +.main > table { + margin: 5px; +} diff --git a/src/quest_editor/ui/NpcCountsComponent.tsx b/src/quest_editor/ui/NpcCountsComponent.tsx new file mode 100644 index 00000000..5eb1b6a6 --- /dev/null +++ b/src/quest_editor/ui/NpcCountsComponent.tsx @@ -0,0 +1,43 @@ +import React, { Component, ReactNode } from "react"; +import styles from "./NpcCountsComponent.css"; +import { npc_data, NpcType } from "../../core/data_formats/parsing/quest/npc_types"; +import { quest_editor_store } from "../stores/QuestEditorStore"; +import { observer } from "mobx-react"; + +@observer +export class NpcCountsComponent extends Component { + render(): ReactNode { + const quest = quest_editor_store.current_quest; + const npc_counts = new Map(); + + if (quest) { + for (const npc of quest.npcs) { + const val = npc_counts.get(npc.type) || 0; + npc_counts.set(npc.type, val + 1); + } + } + + const extra_canadines = (npc_counts.get(NpcType.Canane) || 0) * 8; + + // Sort by canonical order. + const sorted_npc_counts = [...npc_counts].sort((a, b) => a[0] - b[0]); + + const npc_count_rows = sorted_npc_counts.map(([npc_type, count]) => { + const extra = npc_type === NpcType.Canadine ? extra_canadines : 0; + return ( + + {npc_data(npc_type).name}: + {count + extra} + + ); + }); + + return ( +
+ + {npc_count_rows} +
+
+ ); + } +} diff --git a/src/quest_editor/ui/QuestEditorComponent.tsx b/src/quest_editor/ui/QuestEditorComponent.tsx index ca13a04a..279bd809 100644 --- a/src/quest_editor/ui/QuestEditorComponent.tsx +++ b/src/quest_editor/ui/QuestEditorComponent.tsx @@ -10,12 +10,14 @@ import styles from "./QuestEditorComponent.css"; import { QuestInfoComponent } from "./QuestInfoComponent"; import { QuestRendererComponent } from "./QuestRendererComponent"; import { Toolbar } from "./Toolbar"; +import { NpcCountsComponent } from "./NpcCountsComponent"; const logger = Logger.get("ui/quest_editor/QuestEditorComponent"); // Don't change these ids, as they are persisted in the user's browser. const CMP_TO_NAME = new Map([ [QuestInfoComponent, "quest_info"], + [NpcCountsComponent, "npc_counts"], [QuestRendererComponent, "quest_renderer"], [AssemblyEditorComponent, "assembly_editor"], [EntityInfoComponent, "entity_info"], @@ -41,11 +43,22 @@ const DEFAULT_LAYOUT_CONTENT: ItemConfigType[] = [ type: "row", content: [ { - title: "Info", - type: "react-component", - component: CMP_TO_NAME.get(QuestInfoComponent), - isClosable: false, + type: "stack", width: 3, + content: [ + { + title: "Info", + type: "react-component", + component: CMP_TO_NAME.get(QuestInfoComponent), + isClosable: false, + }, + { + title: "NPC Counts", + type: "react-component", + component: CMP_TO_NAME.get(NpcCountsComponent), + isClosable: false, + }, + ], }, { type: "stack", diff --git a/src/quest_editor/ui/QuestInfoComponent.css b/src/quest_editor/ui/QuestInfoComponent.css index 6c36d03e..775df906 100644 --- a/src/quest_editor/ui/QuestInfoComponent.css +++ b/src/quest_editor/ui/QuestInfoComponent.css @@ -15,9 +15,3 @@ .main textarea { font-family: 'Courier New', Courier, monospace } - -.npc_counts_container { - overflow: auto; - min-height: 50px; - margin-top: 5px; -} \ No newline at end of file diff --git a/src/quest_editor/ui/QuestInfoComponent.tsx b/src/quest_editor/ui/QuestInfoComponent.tsx index 78b5b96d..727914ed 100644 --- a/src/quest_editor/ui/QuestInfoComponent.tsx +++ b/src/quest_editor/ui/QuestInfoComponent.tsx @@ -5,7 +5,6 @@ import { quest_editor_store } from "../stores/QuestEditorStore"; import { DisabledTextComponent } from "../../core/ui/DisabledTextComponent"; import styles from "./QuestInfoComponent.css"; import { Episode } from "../../core/data_formats/parsing/quest/Episode"; -import { npc_data, NpcType } from "../../core/data_formats/parsing/quest/npc_types"; @observer export class QuestInfoComponent extends Component { @@ -16,98 +15,65 @@ export class QuestInfoComponent extends Component { if (quest) { const episode = quest.episode === Episode.IV ? "IV" : quest.episode === Episode.II ? "II" : "I"; - const npc_counts = new Map(); - - for (const npc of quest.npcs) { - const val = npc_counts.get(npc.type) || 0; - npc_counts.set(npc.type, val + 1); - } - - const extra_canadines = (npc_counts.get(NpcType.Canane) || 0) * 8; - - // Sort by canonical order. - const sorted_npc_counts = [...npc_counts].sort((a, b) => a[0] - b[0]); - - const npc_count_rows = sorted_npc_counts.map(([npc_type, count]) => { - const extra = npc_type === NpcType.Canadine ? extra_canadines : 0; - return ( - - {npc_data(npc_type).name}: - {count + extra} - - ); - }); body = ( - <> - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Episode:{episode}
ID: - -
Name: - -
Short description:
- -
Long description:
- -
-
- - - - - - - {npc_count_rows} -
NPC Counts
-
- + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Episode:{episode}
ID: + +
Name: + +
Short description:
+ +
Long description:
+ +
); } else { body = No quest loaded.;