import * as React from "react"; import { Observable } from "babylonjs/Misc/observable"; import { PropertyChangedEvent } from "../../propertyChangedEvent"; interface ISliderLineComponentProps { label: string; target?: any; propertyName?: string; minimum: number; maximum: number; step: number; directValue?: number; onChange?: (value: number) => void; onInput?: (value: number) => void; onPropertyChangedObservable?: Observable; decimalCount?: number; } export class SliderLineComponent extends React.Component { private _localChange = false; constructor(props: ISliderLineComponentProps) { super(props); if (this.props.directValue !== undefined) { this.state = { value: this.props.directValue } } else { let value = this.props.target![this.props.propertyName!]; if (value === undefined) { value = this.props.maximum; } this.state = { value: value }; } } shouldComponentUpdate(nextProps: ISliderLineComponentProps, nextState: { value: number }) { if (nextProps.directValue !== undefined) { nextState.value = nextProps.directValue; return true; } let currentState = nextProps.target![nextProps.propertyName!]; if (currentState === undefined) { currentState = nextProps.maximum; } if (currentState !== nextState.value || this._localChange) { nextState.value = currentState; this._localChange = false; return true; } return false; } onChange(newValueString: any) { this._localChange = true; const newValue = parseFloat(newValueString); if (this.props.target) { if (this.props.onPropertyChangedObservable) { this.props.onPropertyChangedObservable.notifyObservers({ object: this.props.target, property: this.props.propertyName!, value: newValue, initialValue: this.state.value }); } this.props.target[this.props.propertyName!] = newValue; } if (this.props.onChange) { this.props.onChange(newValue); } this.setState({ value: newValue }); } onInput(newValueString: any) { const newValue = parseFloat(newValueString); if (this.props.onInput) { this.props.onInput(newValue); } } render() { let decimalCount = this.props.decimalCount !== undefined ? this.props.decimalCount : 2; return (
{this.props.label}
{this.state.value ? this.state.value.toFixed(decimalCount) : "0"}  this.onInput((evt.target as HTMLInputElement).value)} onChange={evt => this.onChange(evt.target.value)} />
); } }