mirror of
https://github.com/apache/superset.git
synced 2026-04-27 03:55:47 +00:00
121 lines
3.5 KiB
JavaScript
121 lines
3.5 KiB
JavaScript
/**
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you 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 React, { useState, useEffect } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import Badge from 'src/common/components/Badge';
|
|
import { t, styled } from '@superset-ui/core';
|
|
import { InfoTooltipWithTrigger } from '@superset-ui/chart-controls';
|
|
import { debounce } from 'lodash';
|
|
|
|
import ModalTrigger from 'src/components/ModalTrigger';
|
|
import { ConfigEditor } from 'src/components/AsyncAceEditor';
|
|
import { FAST_DEBOUNCE } from 'src/constants';
|
|
|
|
const propTypes = {
|
|
onChange: PropTypes.func,
|
|
code: PropTypes.string,
|
|
language: PropTypes.oneOf(['yaml', 'json']),
|
|
};
|
|
|
|
const defaultProps = {
|
|
onChange: () => {},
|
|
code: '{}',
|
|
};
|
|
|
|
const StyledConfigEditor = styled(ConfigEditor)`
|
|
&.ace_editor {
|
|
border: 1px solid ${({ theme }) => theme.colors.grayscale.light2};
|
|
}
|
|
`;
|
|
|
|
function TemplateParamsEditor({ code, language, onChange }) {
|
|
const [parsedJSON, setParsedJSON] = useState();
|
|
const [isValid, setIsValid] = useState(true);
|
|
|
|
useEffect(() => {
|
|
try {
|
|
setParsedJSON(JSON.parse(code));
|
|
setIsValid(true);
|
|
} catch {
|
|
setParsedJSON({});
|
|
setIsValid(false);
|
|
}
|
|
}, [code]);
|
|
|
|
const modalBody = (
|
|
<div>
|
|
<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="https://superset.apache.org/sqllab.html#templating-with-jinja"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
Jinja templating
|
|
</a>{' '}
|
|
syntax.
|
|
</p>
|
|
<StyledConfigEditor
|
|
keywords={[]}
|
|
mode={language}
|
|
minLines={25}
|
|
maxLines={50}
|
|
onChange={debounce(onChange, FAST_DEBOUNCE)}
|
|
width="100%"
|
|
editorProps={{ $blockScrolling: true }}
|
|
enableLiveAutocompletion
|
|
value={code}
|
|
/>
|
|
</div>
|
|
);
|
|
|
|
const paramCount = parsedJSON ? Object.keys(parsedJSON).length : 0;
|
|
|
|
return (
|
|
<ModalTrigger
|
|
modalTitle={t('Template parameters')}
|
|
triggerNode={
|
|
<div tooltip={t('Edit template parameters')} buttonSize="small">
|
|
{`${t('Parameters')} `}
|
|
<Badge count={paramCount} />
|
|
{!isValid && (
|
|
<InfoTooltipWithTrigger
|
|
icon="exclamation-triangle"
|
|
bsStyle="danger"
|
|
tooltip={t('Invalid JSON')}
|
|
label="invalid-json"
|
|
/>
|
|
)}
|
|
</div>
|
|
}
|
|
modalBody={modalBody}
|
|
/>
|
|
);
|
|
}
|
|
|
|
TemplateParamsEditor.propTypes = propTypes;
|
|
TemplateParamsEditor.defaultProps = defaultProps;
|
|
|
|
export default TemplateParamsEditor;
|