2021-09-15 02:50:55 +00:00
|
|
|
import React from 'react';
|
2021-11-17 17:59:00 +00:00
|
|
|
import cx from 'classnames';
|
2021-09-15 02:50:55 +00:00
|
|
|
import Input from '@/_ui/Input';
|
2021-10-25 09:16:46 +00:00
|
|
|
import Textarea from '@/_ui/Textarea';
|
2021-09-15 02:50:55 +00:00
|
|
|
import Select from '@/_ui/Select';
|
|
|
|
|
import Headers from '@/_ui/HttpHeaders';
|
|
|
|
|
import OAuth from '@/_ui/OAuth';
|
|
|
|
|
import Toggle from '@/_ui/Toggle';
|
2021-11-17 17:59:00 +00:00
|
|
|
import { CodeHinter } from '@/Editor/CodeBuilder/CodeHinter';
|
2021-09-15 02:50:55 +00:00
|
|
|
|
2021-09-15 07:40:11 +00:00
|
|
|
import GoogleSheets from '@/_components/Googlesheets';
|
2021-09-15 02:50:55 +00:00
|
|
|
import Slack from '@/_components/Slack';
|
|
|
|
|
|
2021-11-17 17:59:00 +00:00
|
|
|
import { find, isEmpty } from 'lodash';
|
2021-09-15 02:50:55 +00:00
|
|
|
|
2021-11-17 17:59:00 +00:00
|
|
|
const DynamicForm = ({
|
|
|
|
|
schema,
|
|
|
|
|
optionchanged,
|
|
|
|
|
createDataSource,
|
|
|
|
|
options,
|
|
|
|
|
isSaving,
|
|
|
|
|
selectedDataSource,
|
|
|
|
|
currentState,
|
|
|
|
|
}) => {
|
2021-09-15 02:50:55 +00:00
|
|
|
// if(schema.properties) todo add empty check
|
|
|
|
|
|
|
|
|
|
const getElement = (type) => {
|
|
|
|
|
switch (type) {
|
|
|
|
|
case 'password':
|
|
|
|
|
case 'text':
|
|
|
|
|
return Input;
|
2021-10-25 09:16:46 +00:00
|
|
|
case 'textarea':
|
|
|
|
|
return Textarea;
|
2021-09-15 02:50:55 +00:00
|
|
|
case 'dropdown':
|
|
|
|
|
return Select;
|
|
|
|
|
case 'toggle':
|
|
|
|
|
return Toggle;
|
|
|
|
|
case 'react-component-headers':
|
|
|
|
|
return Headers;
|
|
|
|
|
case 'react-component-oauth-authentication':
|
|
|
|
|
return OAuth;
|
|
|
|
|
case 'react-component-google-sheets':
|
|
|
|
|
return GoogleSheets;
|
|
|
|
|
case 'react-component-slack':
|
|
|
|
|
return Slack;
|
2021-11-17 17:59:00 +00:00
|
|
|
case 'codehinter':
|
|
|
|
|
return CodeHinter;
|
2021-09-15 02:50:55 +00:00
|
|
|
default:
|
|
|
|
|
return <div>Type is invalid</div>;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2021-11-17 17:59:00 +00:00
|
|
|
const getElementProps = ({
|
|
|
|
|
$key,
|
|
|
|
|
$options,
|
|
|
|
|
$rows = 5,
|
|
|
|
|
$hasSearch,
|
|
|
|
|
helpText,
|
|
|
|
|
description,
|
|
|
|
|
type,
|
|
|
|
|
placeholder = '',
|
|
|
|
|
mode = 'sql',
|
|
|
|
|
lineNumbers = true,
|
|
|
|
|
initialValue,
|
|
|
|
|
}) => {
|
|
|
|
|
const darkMode = localStorage.getItem('darkMode') === 'true';
|
|
|
|
|
|
2021-09-15 02:50:55 +00:00
|
|
|
switch (type) {
|
|
|
|
|
case 'password':
|
|
|
|
|
case 'text':
|
|
|
|
|
case 'textarea':
|
|
|
|
|
return {
|
|
|
|
|
type,
|
|
|
|
|
placeholder: description,
|
|
|
|
|
className: 'form-control',
|
|
|
|
|
value: options[$key].value,
|
|
|
|
|
...(type === 'textarea' && { rows: $rows }),
|
|
|
|
|
...(helpText && { helpText }),
|
|
|
|
|
onChange: (e) => optionchanged($key, e.target.value),
|
|
|
|
|
};
|
|
|
|
|
case 'toggle':
|
|
|
|
|
return {
|
|
|
|
|
defaultChecked: options[$key],
|
2021-10-15 02:10:08 +00:00
|
|
|
onChange: () => optionchanged($key, !options[$key].value),
|
2021-09-15 02:50:55 +00:00
|
|
|
};
|
|
|
|
|
case 'dropdown':
|
|
|
|
|
case 'dropdown-component-flip':
|
|
|
|
|
return {
|
|
|
|
|
options: $options,
|
2021-11-17 17:59:00 +00:00
|
|
|
value: options[$key]?.value || options[$key],
|
2021-09-15 02:50:55 +00:00
|
|
|
hasSearch: $hasSearch,
|
|
|
|
|
onChange: (value) => optionchanged($key, value),
|
|
|
|
|
};
|
|
|
|
|
case 'react-component-headers':
|
|
|
|
|
return {
|
|
|
|
|
getter: $key,
|
|
|
|
|
options: options[$key].value,
|
|
|
|
|
optionchanged,
|
|
|
|
|
};
|
|
|
|
|
case 'react-component-oauth-authentication':
|
|
|
|
|
return {
|
|
|
|
|
grant_type: options.grant_type.value,
|
|
|
|
|
auth_type: options.auth_type.value,
|
|
|
|
|
add_token_to: options.add_token_to.value,
|
|
|
|
|
header_prefix: options.header_prefix.value,
|
|
|
|
|
access_token_url: options.access_token_url.value,
|
|
|
|
|
client_id: options.client_id.value,
|
|
|
|
|
client_secret: options.client_secret.value,
|
|
|
|
|
client_auth: options.client_auth.value,
|
|
|
|
|
scopes: options.scopes.value,
|
|
|
|
|
auth_url: options.auth_url.value,
|
|
|
|
|
custom_auth_params: options.custom_auth_params.value,
|
|
|
|
|
optionchanged,
|
|
|
|
|
};
|
|
|
|
|
case 'react-component-google-sheets':
|
|
|
|
|
case 'react-component-slack':
|
|
|
|
|
return { optionchanged, createDataSource, options, isSaving, selectedDataSource };
|
2021-11-17 17:59:00 +00:00
|
|
|
case 'codehinter':
|
|
|
|
|
return {
|
|
|
|
|
currentState,
|
|
|
|
|
initialValue: options[$key]
|
|
|
|
|
? typeof options[$key] === 'string'
|
|
|
|
|
? options[$key]
|
|
|
|
|
: JSON.stringify(options[$key])
|
|
|
|
|
: initialValue,
|
|
|
|
|
mode,
|
|
|
|
|
lineNumbers,
|
|
|
|
|
className: lineNumbers ? 'query-hinter' : 'codehinter-query-editor-input',
|
|
|
|
|
onChange: (value) => optionchanged($key, value),
|
|
|
|
|
theme: darkMode ? 'monokai' : lineNumbers ? 'duotone-light' : 'default',
|
|
|
|
|
placeholder,
|
|
|
|
|
};
|
2021-09-15 02:50:55 +00:00
|
|
|
default:
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const getLayout = (obj) => {
|
2021-11-17 17:59:00 +00:00
|
|
|
if (isEmpty(obj)) return null;
|
|
|
|
|
const flipComponentDropdown = isFlipComponentDropdown(obj);
|
|
|
|
|
|
|
|
|
|
if (flipComponentDropdown) {
|
|
|
|
|
return flipComponentDropdown;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-15 02:50:55 +00:00
|
|
|
return (
|
|
|
|
|
<div className="row">
|
|
|
|
|
{Object.keys(obj).map((key) => {
|
2021-11-17 17:59:00 +00:00
|
|
|
const { $label, type, $encrypted, className } = obj[key];
|
2021-09-15 02:50:55 +00:00
|
|
|
|
|
|
|
|
const Element = getElement(type);
|
|
|
|
|
|
|
|
|
|
return (
|
2021-11-17 17:59:00 +00:00
|
|
|
<div className={cx('my-2', { 'col-md-12': !className, [className]: !!className })} key={key}>
|
2021-09-15 02:50:55 +00:00
|
|
|
{$label && (
|
|
|
|
|
<label className="form-label">
|
|
|
|
|
{$label}
|
2021-10-25 09:16:46 +00:00
|
|
|
{(type === 'password' || $encrypted) && (
|
2021-09-15 02:50:55 +00:00
|
|
|
<small className="text-green mx-2">
|
|
|
|
|
<img
|
|
|
|
|
className="mx-2 encrypted-icon"
|
|
|
|
|
src="/assets/images/icons/padlock.svg"
|
|
|
|
|
width="12"
|
|
|
|
|
height="12"
|
|
|
|
|
/>
|
|
|
|
|
Encrypted
|
|
|
|
|
</small>
|
|
|
|
|
)}
|
|
|
|
|
</label>
|
|
|
|
|
)}
|
|
|
|
|
<Element {...getElementProps(obj[key])} />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2021-11-17 17:59:00 +00:00
|
|
|
const isFlipComponentDropdown = (obj) => {
|
|
|
|
|
const flipComponentDropdown = find(obj, ['type', 'dropdown-component-flip']);
|
|
|
|
|
if (flipComponentDropdown) {
|
|
|
|
|
// options[key].value for datasource
|
|
|
|
|
// options[key] for dataquery
|
|
|
|
|
const selector = options[flipComponentDropdown.$key]?.value || options[flipComponentDropdown.$key];
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<div className="row">
|
|
|
|
|
<div className="col-md-12 my-2">
|
|
|
|
|
{flipComponentDropdown.$label && <label className="form-label">{flipComponentDropdown.$label}</label>}
|
|
|
|
|
<Select {...getElementProps(flipComponentDropdown)} />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{getLayout(obj[selector])}
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const flipComponentDropdown = isFlipComponentDropdown(schema.properties);
|
2021-09-15 02:50:55 +00:00
|
|
|
|
|
|
|
|
if (flipComponentDropdown) {
|
2021-11-17 17:59:00 +00:00
|
|
|
return flipComponentDropdown;
|
2021-09-15 02:50:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return getLayout(schema.properties);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default DynamicForm;
|