2016-12-01 11:40:28 +02:00
|
|
|
/*
|
2019-02-01 16:39:33 +02:00
|
|
|
* Copyright © 2016-2019 The Thingsboard Authors
|
2016-12-01 11:40:28 +02:00
|
|
|
*
|
|
|
|
|
* 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';
|
2019-03-27 14:50:23 +02:00
|
|
|
import 'brace/ext/searchbox';
|
2016-12-01 11:40:28 +02:00
|
|
|
import 'brace/theme/github';
|
|
|
|
|
|
2018-03-23 16:40:27 +02:00
|
|
|
import fixAceEditor from './../ace-editor-fix';
|
|
|
|
|
|
2016-12-01 11:40:28 +02:00
|
|
|
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);
|
2018-03-23 16:40:27 +02:00
|
|
|
this.onLoad = this.onLoad.bind(this);
|
2019-03-15 16:49:14 +02:00
|
|
|
this.onToggleFull = this.onToggleFull.bind(this);
|
2016-12-01 11:40:28 +02:00
|
|
|
var value = props.value ? props.value + '' : '';
|
|
|
|
|
this.state = {
|
2019-03-15 16:49:14 +02:00
|
|
|
isFull: false,
|
2016-12-01 11:40:28 +02:00
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-23 16:40:27 +02:00
|
|
|
onLoad(editor) {
|
2019-03-15 16:49:14 +02:00
|
|
|
this.aceEditor = editor;
|
2018-03-23 16:40:27 +02:00
|
|
|
fixAceEditor(editor);
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-15 16:49:14 +02:00
|
|
|
onToggleFull() {
|
|
|
|
|
this.setState({ isFull: !this.state.isFull });
|
|
|
|
|
this.props.onToggleFullscreen();
|
|
|
|
|
this.updateAceEditorSize = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
componentDidUpdate() {
|
|
|
|
|
if (this.updateAceEditorSize) {
|
|
|
|
|
if (this.aceEditor) {
|
|
|
|
|
this.aceEditor.resize();
|
|
|
|
|
this.aceEditor.renderer.updateFull();
|
|
|
|
|
}
|
|
|
|
|
this.updateAceEditorSize = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-01 11:40:28 +02:00
|
|
|
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";
|
|
|
|
|
}
|
2019-03-15 16:49:14 +02:00
|
|
|
var containerClass = "tb-container";
|
|
|
|
|
var style = this.props.form.style || {width: '100%'};
|
|
|
|
|
if (this.state.isFull) {
|
|
|
|
|
containerClass += " fullscreen-form-field";
|
|
|
|
|
}
|
2016-12-01 11:40:28 +02:00
|
|
|
return (
|
2019-03-15 16:49:14 +02:00
|
|
|
<div className={containerClass}>
|
2016-12-01 11:40:28 +02:00
|
|
|
<label className={labelClass}>{this.props.form.title}</label>
|
|
|
|
|
<div className="json-form-ace-editor">
|
|
|
|
|
<div className="title-panel">
|
|
|
|
|
<label>{this.props.mode}</label>
|
|
|
|
|
<FlatButton style={ styles.tidyButtonStyle } className="tidy-button" label={'Tidy'} onTouchTap={this.onTidy}/>
|
2019-03-15 16:49:14 +02:00
|
|
|
<FlatButton style={ styles.tidyButtonStyle } className="tidy-button" label={this.state.isFull ? 'Exit fullscreen' : 'Fullscreen'} onTouchTap={this.onToggleFull}/>
|
2016-12-01 11:40:28 +02:00
|
|
|
</div>
|
|
|
|
|
<AceEditor mode={this.props.mode}
|
2019-03-15 16:49:14 +02:00
|
|
|
height={this.state.isFull ? "100%" : "150px"}
|
|
|
|
|
width={this.state.isFull ? "100%" : "300px"}
|
2016-12-01 11:40:28 +02:00
|
|
|
theme="github"
|
|
|
|
|
onChange={this.onValueChanged}
|
|
|
|
|
onFocus={this.onFocus}
|
|
|
|
|
onBlur={this.onBlur}
|
2018-03-23 16:40:27 +02:00
|
|
|
onLoad={this.onLoad}
|
2016-12-01 11:40:28 +02:00
|
|
|
name={this.props.form.title}
|
|
|
|
|
value={this.state.value}
|
|
|
|
|
readOnly={this.props.form.readonly}
|
2017-10-24 11:48:37 +03:00
|
|
|
editorProps={{$blockScrolling: Infinity}}
|
2016-12-01 11:40:28 +02:00
|
|
|
enableBasicAutocompletion={true}
|
|
|
|
|
enableSnippets={true}
|
|
|
|
|
enableLiveAutocompletion={true}
|
2019-03-15 16:49:14 +02:00
|
|
|
style={style}/>
|
2016-12-01 11:40:28 +02:00
|
|
|
</div>
|
|
|
|
|
<div className="json-form-error"
|
2019-03-15 16:49:14 +02:00
|
|
|
style={{opacity: this.props.valid ? '0' : '1'}}>{this.props.error}</div>
|
2016-12-01 11:40:28 +02:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default ThingsboardBaseComponent(ThingsboardAceEditor);
|