mirror of
https://github.com/apache/superset.git
synced 2026-04-09 19:35:21 +00:00
* Adding annotations to backend * Auto fetching Annotations on the backend * Closing the loop * Adding missing files * annotation layers UI for https://github.com/apache/incubator-superset/issues/3502 * a few fixes per code review. - add annotation input sanity check before add and before update. - make SelectAsyncControl component statelesis, and generic - add annotation description in d3 tool tip - use less variable to replace hard-coded color
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
/* global notify */
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import Select from '../../../components/AsyncSelect';
|
|
import { t } from '../../../locales';
|
|
|
|
const propTypes = {
|
|
dataEndpoint: PropTypes.string.isRequired,
|
|
multi: PropTypes.bool,
|
|
mutator: PropTypes.func,
|
|
onAsyncErrorMessage: PropTypes.string,
|
|
onChange: PropTypes.func,
|
|
placeholder: PropTypes.string,
|
|
value: PropTypes.oneOfType([
|
|
PropTypes.string,
|
|
PropTypes.number,
|
|
PropTypes.arrayOf(PropTypes.string),
|
|
PropTypes.arrayOf(PropTypes.number),
|
|
]),
|
|
};
|
|
|
|
const defaultProps = {
|
|
multi: true,
|
|
onAsyncErrorMessage: t('Error while fetching data'),
|
|
onChange: () => {},
|
|
placeholder: t('Select ...'),
|
|
};
|
|
|
|
const SelectAsyncControl = ({ value, onChange, dataEndpoint,
|
|
multi, mutator, placeholder, onAsyncErrorMessage }) => {
|
|
const onSelectionChange = (options) => {
|
|
const optionValues = options.map(option => option.value);
|
|
onChange(optionValues);
|
|
};
|
|
|
|
return (
|
|
<Select
|
|
dataEndpoint={dataEndpoint}
|
|
onChange={onSelectionChange}
|
|
onAsyncError={() => notify.error(onAsyncErrorMessage)}
|
|
mutator={mutator}
|
|
multi={multi}
|
|
value={value}
|
|
placeholder={placeholder}
|
|
valueRenderer={v => (<div>{v.label}</div>)}
|
|
/>
|
|
);
|
|
};
|
|
|
|
SelectAsyncControl.propTypes = propTypes;
|
|
SelectAsyncControl.defaultProps = defaultProps;
|
|
|
|
export default SelectAsyncControl;
|