import * as React from "react"; import { Vector4 } from "babylonjs/Maths/math.vector"; import { Observable } from "babylonjs/Misc/observable"; import { NumericInputComponent } from "./numericInputComponent"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faMinus, faPlus } from "@fortawesome/free-solid-svg-icons"; import { PropertyChangedEvent } from "./propertyChangedEvent"; import { GlobalState } from '../globalState'; interface IVector4LineComponentProps { label: string; target?: any; propertyName?: string; value?: Vector4; step?: number; onChange?: (newvalue: Vector4) => void; onPropertyChangedObservable?: Observable; globalState: GlobalState; } export class Vector4LineComponent extends React.Component { static defaultProps = { step: 0.001, // cm }; private _localChange = false; constructor(props: IVector4LineComponentProps) { super(props); this.state = { isExpanded: false, value: (this.props.value || this.props.target[this.props.propertyName!]).clone() } } shouldComponentUpdate(nextProps: IVector4LineComponentProps, nextState: { isExpanded: boolean, value: Vector4 }) { const nextPropsValue = nextProps.value || nextProps.target[nextProps.propertyName!]; if (!nextPropsValue.equals(nextState.value) || this._localChange) { nextState.value = nextPropsValue.clone(); this._localChange = false; return true; } return false; } switchExpandState() { this._localChange = true; this.setState({ isExpanded: !this.state.isExpanded }); } raiseOnPropertyChanged(previousValue: Vector4) { if (this.props.onChange) { this.props.onChange(this.state.value); } if (!this.props.onPropertyChangedObservable || !this.props.propertyName) { return; } this.props.onPropertyChangedObservable.notifyObservers({ object: this.props.target, property: this.props.propertyName, value: this.state.value, initialValue: previousValue }); } updateVector4() { const store = (this.props.value || this.props.target[this.props.propertyName!]).clone(); if (this.props.value) { this.props.value.copyFrom(this.state.value); } else { this.props.target[this.props.propertyName!] = this.state.value; } this.forceUpdate(); this.raiseOnPropertyChanged(store); } updateStateX(value: number) { this._localChange = true; this.state.value.x = value; this.updateVector4(); } updateStateY(value: number) { this._localChange = true; this.state.value.y = value; this.updateVector4(); } updateStateZ(value: number) { this._localChange = true; this.state.value.z = value; this.updateVector4(); } updateStateW(value: number) { this._localChange = true; this.state.value.w = value; this.updateVector4(); } render() { const chevron = this.state.isExpanded ? : return (
{this.props.label}
{`X: ${this.state.value.x.toFixed(2)}, Y: ${this.state.value.y.toFixed(2)}, Z: ${this.state.value.z.toFixed(2)}, W: ${this.state.value.w.toFixed(2)}`}
this.switchExpandState()} title="Expand"> {chevron}
{ this.state.isExpanded &&
this.updateStateX(value)} /> this.updateStateY(value)} /> this.updateStateZ(value)} /> this.updateStateW(value)} />
}
); } }