From 791968dd4e7376c7851382a710d8b8ab10d289ce Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Wed, 14 Aug 2019 17:37:06 +0200 Subject: [PATCH] Made quest ID, name, short description and long description undoable. --- src/core/ui/NumberInput.tsx | 24 ++++++ src/core/ui/TextArea.tsx | 23 ++++++ src/core/ui/TextInput.tsx | 22 +++++ src/index.tsx | 17 ++++ .../rendering/QuestEntityControls.ts | 2 +- src/quest_editor/stores/QuestEditorStore.ts | 82 ++++++++++++++++++- src/quest_editor/ui/QuestInfoComponent.tsx | 44 +++++----- 7 files changed, 192 insertions(+), 22 deletions(-) create mode 100644 src/core/ui/NumberInput.tsx create mode 100644 src/core/ui/TextArea.tsx create mode 100644 src/core/ui/TextInput.tsx diff --git a/src/core/ui/NumberInput.tsx b/src/core/ui/NumberInput.tsx new file mode 100644 index 00000000..299fab1a --- /dev/null +++ b/src/core/ui/NumberInput.tsx @@ -0,0 +1,24 @@ +import * as React from "react"; +import { Component, ReactNode, FocusEvent } from "react"; +import { InputNumber } from "antd"; + +export class NumberInput extends Component<{ + value: number; + min?: number; + max?: number; + on_change?: (new_value?: number) => void; + on_blur?: (e: FocusEvent) => void; +}> { + render(): ReactNode { + return ( + + ); + } +} diff --git a/src/core/ui/TextArea.tsx b/src/core/ui/TextArea.tsx new file mode 100644 index 00000000..ff3f8f71 --- /dev/null +++ b/src/core/ui/TextArea.tsx @@ -0,0 +1,23 @@ +import * as React from "react"; +import { ChangeEvent, Component, FocusEvent, ReactNode } from "react"; +import { Input } from "antd"; + +export class TextArea extends Component<{ + value: string; + max_length: number; + rows: number; + on_change?: (e: ChangeEvent) => void; + on_blur?: (e: FocusEvent) => void; +}> { + render(): ReactNode { + return ( + + ); + } +} diff --git a/src/core/ui/TextInput.tsx b/src/core/ui/TextInput.tsx new file mode 100644 index 00000000..67962888 --- /dev/null +++ b/src/core/ui/TextInput.tsx @@ -0,0 +1,22 @@ +import * as React from "react"; +import { ChangeEvent, Component, FocusEvent, ReactNode } from "react"; +import { Input } from "antd"; + +export class TextInput extends Component<{ + value: string; + max_length: number; + on_change: (e: ChangeEvent) => void; + on_blur?: (e: FocusEvent) => void; +}> { + render(): ReactNode { + return ( + + ); + } +} diff --git a/src/index.tsx b/src/index.tsx index a56a8bce..f0b81df7 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -14,6 +14,23 @@ Logger.useDefaults({ defaultLevel: (Logger as any)[process.env["LOG_LEVEL"] || "OFF"], }); +// Disable native undo/redo. +document.addEventListener("keydown", e => { + const kbe = e as KeyboardEvent; + + if (kbe.ctrlKey && !kbe.altKey && kbe.key.toUpperCase() === "Z") { + kbe.preventDefault(); + } +}); +// This doesn't work in FireFox: +document.addEventListener("beforeinput", e => { + const ie = e as any; + + if (ie.inputType === "historyUndo" || ie.inputType === "historyRedo") { + e.preventDefault(); + } +}); + const root_element = document.createElement("div"); root_element.id = styles.phantasmal_world_root; document.body.append(root_element); diff --git a/src/quest_editor/rendering/QuestEntityControls.ts b/src/quest_editor/rendering/QuestEntityControls.ts index c8e9821c..4a2bb181 100644 --- a/src/quest_editor/rendering/QuestEntityControls.ts +++ b/src/quest_editor/rendering/QuestEntityControls.ts @@ -275,7 +275,7 @@ export class QuestEntityControls { quest_editor_store.push_entity_move_action( entity, this.pick.initial_position, - entity.position, + entity.world_position, ); } diff --git a/src/quest_editor/stores/QuestEditorStore.ts b/src/quest_editor/stores/QuestEditorStore.ts index cc31ff48..472d1a58 100644 --- a/src/quest_editor/stores/QuestEditorStore.ts +++ b/src/quest_editor/stores/QuestEditorStore.ts @@ -220,16 +220,94 @@ class QuestEditorStore { this.save_dialog_open = false; }; + @action + push_id_edit_action = (old_id: number, new_id: number) => { + const quest = quest_editor_store.current_quest; + if (quest) quest.set_id(new_id); + + this.undo.push_action( + `Edit ID`, + () => { + const quest = quest_editor_store.current_quest; + if (quest) quest.set_id(old_id); + }, + () => { + const quest = quest_editor_store.current_quest; + if (quest) quest.set_id(new_id); + }, + ); + }; + + @action + push_name_edit_action = (old_name: string, new_name: string) => { + const quest = quest_editor_store.current_quest; + if (quest) quest.set_name(new_name); + + this.undo.push_action( + `Edit name`, + () => { + const quest = quest_editor_store.current_quest; + if (quest) quest.set_name(old_name); + }, + () => { + const quest = quest_editor_store.current_quest; + if (quest) quest.set_name(new_name); + }, + ); + }; + + @action + push_short_description_edit_action = ( + old_short_description: string, + new_short_description: string, + ) => { + const quest = quest_editor_store.current_quest; + if (quest) quest.set_short_description(new_short_description); + + this.undo.push_action( + `Edit short description`, + () => { + const quest = quest_editor_store.current_quest; + if (quest) quest.set_short_description(old_short_description); + }, + () => { + const quest = quest_editor_store.current_quest; + if (quest) quest.set_short_description(new_short_description); + }, + ); + }; + + @action + push_long_description_edit_action = ( + old_long_description: string, + new_long_description: string, + ) => { + const quest = quest_editor_store.current_quest; + if (quest) quest.set_long_description(new_long_description); + + this.undo.push_action( + `Edit long description`, + () => { + const quest = quest_editor_store.current_quest; + if (quest) quest.set_long_description(old_long_description); + }, + () => { + const quest = quest_editor_store.current_quest; + if (quest) quest.set_long_description(new_long_description); + }, + ); + }; + @action push_entity_move_action = ( entity: ObservableQuestEntity, - initial_position: Vec3, + old_position: Vec3, new_position: Vec3, ) => { this.undo.push_action( `Move ${entity_data(entity.type).name}`, () => { - entity.world_position = initial_position; + entity.world_position = old_position; quest_editor_store.set_selected_entity(entity); }, () => { diff --git a/src/quest_editor/ui/QuestInfoComponent.tsx b/src/quest_editor/ui/QuestInfoComponent.tsx index 727914ed..33c605e1 100644 --- a/src/quest_editor/ui/QuestInfoComponent.tsx +++ b/src/quest_editor/ui/QuestInfoComponent.tsx @@ -1,10 +1,12 @@ -import { Input, InputNumber } from "antd"; import { observer } from "mobx-react"; import React, { ChangeEvent, Component, ReactNode } from "react"; 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 { NumberInput } from "../../core/ui/NumberInput"; +import { TextInput } from "../../core/ui/TextInput"; +import { TextArea } from "../../core/ui/TextArea"; @observer export class QuestInfoComponent extends Component { @@ -26,23 +28,21 @@ export class QuestInfoComponent extends Component { ID: - Name: - @@ -51,11 +51,11 @@ export class QuestInfoComponent extends Component { - @@ -64,11 +64,11 @@ export class QuestInfoComponent extends Component { - @@ -90,7 +90,7 @@ export class QuestInfoComponent extends Component { const quest = quest_editor_store.current_quest; if (quest && value != undefined) { - quest.set_id(value); + quest_editor_store.push_id_edit_action(quest.id, value); } } @@ -98,7 +98,7 @@ export class QuestInfoComponent extends Component { const quest = quest_editor_store.current_quest; if (quest) { - quest.set_name(e.target.value); + quest_editor_store.push_name_edit_action(quest.name, e.currentTarget.value); } } @@ -106,7 +106,10 @@ export class QuestInfoComponent extends Component { const quest = quest_editor_store.current_quest; if (quest) { - quest.set_short_description(e.target.value); + quest_editor_store.push_short_description_edit_action( + quest.short_description, + e.currentTarget.value, + ); } } @@ -114,7 +117,10 @@ export class QuestInfoComponent extends Component { const quest = quest_editor_store.current_quest; if (quest) { - quest.set_long_description(e.target.value); + quest_editor_store.push_long_description_edit_action( + quest.long_description, + e.currentTarget.value, + ); } } }