/* * Copyright © 2016-2017 The Thingsboard Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import './json-form-ace-editor.scss'; import React from 'react'; import ThingsboardBaseComponent from './json-form-base-component.jsx'; import reactCSS from 'reactcss'; import AceEditor from 'react-ace'; import FlatButton from 'material-ui/FlatButton'; import 'brace/ext/language_tools'; import 'brace/theme/github'; class ThingsboardAceEditor extends React.Component { constructor(props) { super(props); this.onValueChanged = this.onValueChanged.bind(this); this.onBlur = this.onBlur.bind(this); this.onFocus = this.onFocus.bind(this); this.onTidy = this.onTidy.bind(this); var value = props.value ? props.value + '' : ''; this.state = { value: value, focused: false }; } onValueChanged(value) { this.setState({ value: value }); this.props.onChangeValidate({ target: { value: value } }); } onBlur() { this.setState({ focused: false }) } onFocus() { this.setState({ focused: true }) } onTidy() { if (!this.props.form.readonly) { var value = this.state.value; value = this.props.onTidy(value); this.setState({ value: value }) this.props.onChangeValidate({ target: { value: value } }); } } render() { const styles = reactCSS({ 'default': { tidyButtonStyle: { color: '#7B7B7B', minWidth: '32px', minHeight: '15px', lineHeight: '15px', fontSize: '0.800rem', margin: '0', padding: '4px', height: '23px', borderRadius: '5px', marginLeft: '5px' } } }); var labelClass = "tb-label"; if (this.props.form.required) { labelClass += " tb-required"; } if (this.props.form.readonly) { labelClass += " tb-readonly"; } if (this.state.focused) { labelClass += " tb-focused"; } return (