import React, { CSSProperties } from 'react'; import { observer } from 'mobx-react'; import { NumericInput } from '@blueprintjs/core'; import { VisibleQuestEntity, QuestObject, QuestNpc } from '../domain'; import './EntityInfoComponent.css'; const container_style: CSSProperties = { width: 200, padding: 10, display: 'flex', flexDirection: 'column' }; const table_style: CSSProperties = { borderCollapse: 'collapse' }; interface Props { entity?: VisibleQuestEntity } @observer export class EntityInfoComponent extends React.Component { state = { position: { x: null, y: null, z: null, }, section_position: { x: null, y: null, z: null, } }; componentWillReceiveProps({ entity }: Props) { if (this.props.entity !== entity) { this._clear_position_state(); } } render() { const entity = this.props.entity; if (entity) { const section_id = entity.section ? entity.section.id : entity.sectionId; let name = null; if (entity instanceof QuestObject) { name = ( Object: {entity.type.name} ); } else if (entity instanceof QuestNpc) { name = ( NPC: {entity.type.name} ); } return (
{name}
Section: {section_id}
World position:
{this._coord_row('position', 'x')} {this._coord_row('position', 'y')} {this._coord_row('position', 'z')}
Section position:
{this._coord_row('section_position', 'x')} {this._coord_row('section_position', 'y')} {this._coord_row('section_position', 'z')}
); } else { return
; } } private _coord_row(pos_type: string, coord: string) { if (this.props.entity) { const entity = this.props.entity; const value_str = (this.state as any)[pos_type][coord]; const value = value_str ? value_str // Do multiplication, rounding, division and || with zero to avoid numbers close to zero flickering between 0 and -0. : (Math.round((entity as any)[pos_type][coord] * 10000) / 10000 || 0).toFixed(4); return ( {coord.toUpperCase()}: ); } else { return null; } } private _pos_change = { position: { x: (value: number, value_str: string) => { this._pos_changed('position', 'x', value, value_str); }, y: (value: number, value_str: string) => { this._pos_changed('position', 'y', value, value_str); }, z: (value: number, value_str: string) => { this._pos_changed('position', 'z', value, value_str); } }, section_position: { x: (value: number, value_str: string) => { this._pos_changed('section_position', 'x', value, value_str); }, y: (value: number, value_str: string) => { this._pos_changed('section_position', 'y', value, value_str); }, z: (value: number, value_str: string) => { this._pos_changed('section_position', 'z', value, value_str); } } }; private _pos_changed(pos_type: string, coord: string, value: number, value_str: string) { if (!isNaN(value)) { const entity = this.props.entity as any; if (entity) { const v = entity[pos_type].clone(); v[coord] = value; entity[pos_type] = v; } } this.setState({ [pos_type]: { [coord]: value_str } }); } private _coord_input_blurred = () => { this._clear_position_state(); } private _clear_position_state() { this.setState({ position: { x: null, y: null, z: null, }, section_position: { x: null, y: null, z: null, } }); } }