mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Fixed bug in Disposer. Fixed linting issue in QuestEditorToolBarController and improved error message.
This commit is contained in:
parent
1ea0d0f1db
commit
44ae05cf90
@ -43,7 +43,9 @@ export class Disposer implements Disposable {
|
||||
* Insert a single disposable at the given index and return the given disposable.
|
||||
*/
|
||||
insert<T extends Disposable>(index: number, disposable: T): T {
|
||||
if (!this._disposed) {
|
||||
if (this._disposed) {
|
||||
disposable.dispose();
|
||||
} else {
|
||||
this.disposables.splice(index, 0, disposable);
|
||||
}
|
||||
|
||||
@ -53,9 +55,13 @@ export class Disposer implements Disposable {
|
||||
/**
|
||||
* Add 0 or more disposables.
|
||||
*/
|
||||
add_all(...disposable: Disposable[]): this {
|
||||
if (!this._disposed) {
|
||||
this.disposables.push(...disposable);
|
||||
add_all(...disposables: Disposable[]): this {
|
||||
if (this._disposed) {
|
||||
for (const disposable of disposables) {
|
||||
disposable.dispose();
|
||||
}
|
||||
} else {
|
||||
this.disposables.push(...disposables);
|
||||
}
|
||||
|
||||
return this;
|
||||
|
@ -22,7 +22,7 @@ import { LogManager } from "../../core/Logger";
|
||||
import { basename } from "../../core/util";
|
||||
import { Version } from "../../core/data_formats/parsing/quest/Version";
|
||||
import { WritableProperty } from "../../core/observable/property/WritableProperty";
|
||||
import { Result, failure } from "../../core/Result";
|
||||
import { failure, Result } from "../../core/Result";
|
||||
import { Severity } from "../../core/Severity";
|
||||
|
||||
const logger = LogManager.get("quest_editor/controllers/QuestEditorToolBarController");
|
||||
@ -151,7 +151,6 @@ export class QuestEditorToolBarController extends Controller {
|
||||
this.quest_editor_store.set_current_quest(create_new_quest(this.area_store, episode));
|
||||
};
|
||||
|
||||
// TODO: notify user of problems.
|
||||
parse_files = async (files: File[]): Promise<void> => {
|
||||
try {
|
||||
if (files.length === 0) return;
|
||||
@ -183,11 +182,11 @@ export class QuestEditorToolBarController extends Controller {
|
||||
new ArrayBufferCursor(dat_buffer, Endianness.Little),
|
||||
);
|
||||
if (!quest) {
|
||||
throw new Error("Couldn't parse bin or dat file.");
|
||||
throw new Error("Couldn't parse .bin or .dat file.");
|
||||
}
|
||||
this.set_filename(basename(bin.name || dat.name));
|
||||
} else {
|
||||
throw new Error("Invalid File Type.");
|
||||
throw new Error("Please select one .bin and one .dat file.");
|
||||
}
|
||||
}
|
||||
|
||||
@ -196,9 +195,7 @@ export class QuestEditorToolBarController extends Controller {
|
||||
);
|
||||
} catch (e) {
|
||||
logger.error("Couldn't read file.", e);
|
||||
this.set_result(
|
||||
failure([{ severity: Severity.Error, ui_message: e.message }]),
|
||||
);
|
||||
this.set_result(failure([{ severity: Severity.Error, ui_message: e.message }]));
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user