import React, { ChangeEvent, KeyboardEvent } from 'react'; import { observer } from 'mobx-react'; import { Button, Dialog, Intent } from '@blueprintjs/core'; import { applicationState } from '../store'; import { currentAreaIdChanged, loadFile, saveCurrentQuestToFile } from '../actions'; import { Area3DComponent } from './Area3DComponent'; import { EntityInfoComponent } from './EntityInfoComponent'; import { QuestInfoComponent } from './QuestInfoComponent'; import './ApplicationComponent.css'; @observer export class ApplicationComponent extends React.Component<{}, { filename?: string, save_dialog_open: boolean, save_dialog_filename: string }> { state = { filename: undefined, save_dialog_open: false, save_dialog_filename: 'Untitled' }; render() { const quest = applicationState.currentQuest; const model = applicationState.currentModel; const areas = quest ? Array.from(quest.areaVariants).map(a => a.area) : undefined; const area = applicationState.currentArea; const area_id = area ? String(area.id) : undefined; return (
); } private _on_file_change = (e: ChangeEvent) => { if (e.currentTarget.files) { const file = e.currentTarget.files[0]; if (file) { this.setState({ filename: file.name }); loadFile(file); } } } private _on_area_select_change = (e: ChangeEvent) => { const area_id = parseInt(e.currentTarget.value, 10); currentAreaIdChanged(area_id); } private _on_save_as_click = () => { let name = this.state.filename || 'Untitled'; name = name.endsWith('.qst') ? name.slice(0, -4) : name; this.setState({ save_dialog_open: true, save_dialog_filename: name }); } private _on_save_dialog_name_change = (e: ChangeEvent) => { this.setState({ save_dialog_filename: e.currentTarget.value }); } private _on_save_dialog_name_key_up = (e: KeyboardEvent) => { if (e.key === 'Enter') { this._on_save_dialog_save_click(); } } private _on_save_dialog_save_click = () => { saveCurrentQuestToFile(this.state.save_dialog_filename); this.setState({ save_dialog_open: false }); } private _on_save_dialog_close = () => { this.setState({ save_dialog_open: false }); } }