import { InputNumber } from 'antd'; import { observer } from 'mobx-react'; import React from 'react'; import { QuestNpc, QuestObject, VisibleQuestEntity } from '../../domain'; import './EntityInfoComponent.css'; interface Props { entity?: VisibleQuestEntity; } @observer export class EntityInfoComponent extends React.Component { render() { const entity = this.props.entity; if (entity) { const sectionId = 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: {sectionId}
World position:
Section position:
); } else { return
; } } } @observer class CoordRow extends React.Component<{ entity: VisibleQuestEntity, positionType: 'position' | 'sectionPosition', coord: 'x' | 'y' | 'z' }> { render() { const entity = this.props.entity; const value = entity[this.props.positionType][this.props.coord]; return ( {this.props.coord.toUpperCase()}: ); } private changed = (value?: number) => { if (value != null) { const entity = this.props.entity; const posType = this.props.positionType; const pos = entity[posType].clone(); pos[this.props.coord] = value; entity[posType] = pos; } } }