all files / src/SqlLab/components/ TemplateParamsEditor.jsx

95.65% Statements 44/46
58.33% Branches 7/12
85.71% Functions 6/7
95.56% Lines 43/45
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130                                                                                                                                                                              
import React from 'react';
import PropTypes from 'prop-types';
import { Badge } from 'react-bootstrap';
 
import AceEditor from 'react-ace';
import 'brace/mode/sql';
import 'brace/mode/json';
import 'brace/mode/html';
import 'brace/mode/markdown';
import 'brace/theme/textmate';
 
import ModalTrigger from '../../components/ModalTrigger';
import InfoTooltipWithTrigger from '../../components/InfoTooltipWithTrigger';
import Button from '../../components/Button';
import { t } from '../../locales';
 
const propTypes = {
  onChange: PropTypes.func,
  code: PropTypes.string,
  language: PropTypes.oneOf(['yaml', 'json']),
};
 
const defaultProps = {
  label: null,
  description: null,
  onChange: () => {},
  code: '{}',
};
 
export default class TemplateParamsEditor extends React.Component {
  constructor(props) {
    super(props);
    const codeText = props.code || '{}';
    this.state = {
      codeText,
      parsedJSON: null,
      isValid: true,
    };
    this.onChange = this.onChange.bind(this);
  }
  componentDidMount() {
    this.onChange(this.state.codeText);
  }
  onChange(value) {
    const codeText = value;
    let isValid;
    let parsedJSON = {};
    try {
      parsedJSON = JSON.parse(value);
      isValid = true;
    } catch (e) {
      isValid = false;
    }
    this.setState({ parsedJSON, isValid, codeText });
    if (EisValid) {
      this.props.onChange(codeText);
    } else {
      this.props.onChange('{}');
    }
  }
  renderDoc() {
    return (
      <p>
        Assign a set of parameters as <code>JSON</code> below
        (example: <code>{'{"my_table": "foo"}'}</code>),
        and they become available
        in your SQL (example: <code>SELECT * FROM {'{{ my_table }}'} </code>)
        by using
        <a
          href="http://superset.apache.org/sqllab.html#templating-with-jinja"
          target="_blank"
          rel="noopener noreferrer"
        >
          Jinja templating
        </a> syntax.
      </p>
    );
  }
  renderModalBody() {
    return (
      <div>
        {this.renderDoc()}
        <AceEditor
          mode={this.props.language}
          theme="textmate"
          style={{ border: '1px solid #CCC' }}
          minLines={25}
          maxLines={50}
          onChange={this.onChange}
          width="100%"
          editorProps={{ $blockScrolling: true }}
          enableLiveAutocompletion
          value={this.state.codeText}
        />
      </div>
    );
  }
  render() {
    const paramCount = this.state.parsedJSON ? Object.keys(this.state.parsedJSON).length : 0;
    return (
      <ModalTrigger
        modalTitle={t('Template Parameters')}
        triggerNode={
          <Button
            className="m-r-5"
            tooltip={t('Edit template parameters')}
          >
            {`${t('parameters')} `}
            {paramCount > 0 &&
              <Badge>{paramCount}</Badge>
            }
            {!this.state.isValid &&
              <InfoTooltipWithTrigger
                icon="exclamation-triangle"
                bsStyle="danger"
                tooltip={t('Invalid JSON')}
                label="invalid-json"
              />
            }
          </Button>
        }
        modalBody={this.renderModalBody(true)}
      />
    );
  }
}
 
TemplateParamsEditor.propTypes = propTypes;
TemplateParamsEditor.defaultProps = defaultProps;