mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
121 lines
3.4 KiB
TypeScript
121 lines
3.4 KiB
TypeScript
import React, { useCallback, useState } from 'react';
|
|
import { css } from 'emotion';
|
|
import { GrafanaTheme, PanelPlugin, PanelPluginMeta } from '@grafana/data';
|
|
import { useTheme, stylesFactory, Icon, Input } from '@grafana/ui';
|
|
import { changePanelPlugin } from '../../state/actions';
|
|
import { StoreState } from 'app/types';
|
|
import { PanelModel } from '../../state/PanelModel';
|
|
import { connect, MapStateToProps, MapDispatchToProps } from 'react-redux';
|
|
import { VizTypePicker, getAllPanelPluginMeta, filterPluginList } from '../VizTypePicker/VizTypePicker';
|
|
import { Field } from '@grafana/ui/src/components/Forms/Field';
|
|
|
|
interface OwnProps {
|
|
panel: PanelModel;
|
|
onToggleOptionGroup: (expand: boolean) => void;
|
|
}
|
|
|
|
interface ConnectedProps {
|
|
plugin: PanelPlugin;
|
|
}
|
|
|
|
interface DispatchProps {
|
|
changePanelPlugin: typeof changePanelPlugin;
|
|
}
|
|
|
|
type Props = OwnProps & ConnectedProps & DispatchProps;
|
|
|
|
export const VisualizationTabUnconnected = React.forwardRef<HTMLInputElement, Props>(
|
|
({ panel, plugin, changePanelPlugin, onToggleOptionGroup }, ref) => {
|
|
const [searchQuery, setSearchQuery] = useState('');
|
|
const theme = useTheme();
|
|
const styles = getStyles(theme);
|
|
|
|
const onPluginTypeChange = (meta: PanelPluginMeta) => {
|
|
if (meta.id === plugin.meta.id) {
|
|
onToggleOptionGroup(false);
|
|
} else {
|
|
changePanelPlugin(panel, meta.id);
|
|
}
|
|
};
|
|
|
|
const onKeyPress = useCallback(
|
|
(e: React.KeyboardEvent<HTMLInputElement>) => {
|
|
if (e.key === 'Enter') {
|
|
const query = e.currentTarget.value;
|
|
const plugins = getAllPanelPluginMeta();
|
|
const match = filterPluginList(plugins, query, plugin.meta);
|
|
if (match && match.length) {
|
|
onPluginTypeChange(match[0]);
|
|
}
|
|
}
|
|
},
|
|
[onPluginTypeChange]
|
|
);
|
|
|
|
const suffix =
|
|
searchQuery !== '' ? (
|
|
<span className={styles.searchClear} onClick={() => setSearchQuery('')}>
|
|
<Icon name="times" />
|
|
Clear filter
|
|
</span>
|
|
) : null;
|
|
|
|
if (!plugin) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className={styles.wrapper}>
|
|
<Field>
|
|
<Input
|
|
value={searchQuery}
|
|
onChange={(e) => setSearchQuery(e.currentTarget.value)}
|
|
onKeyPress={onKeyPress}
|
|
prefix={<Icon name="filter" className={styles.icon} />}
|
|
suffix={suffix}
|
|
placeholder="Filter visualizations"
|
|
ref={ref}
|
|
/>
|
|
</Field>
|
|
|
|
<VizTypePicker
|
|
current={plugin.meta}
|
|
onTypeChange={onPluginTypeChange}
|
|
searchQuery={searchQuery}
|
|
onClose={() => {}}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
);
|
|
|
|
VisualizationTabUnconnected.displayName = 'VisualizationTabUnconnected';
|
|
|
|
const getStyles = stylesFactory((theme: GrafanaTheme) => {
|
|
return {
|
|
icon: css`
|
|
color: ${theme.palette.gray33};
|
|
`,
|
|
wrapper: css`
|
|
display: flex;
|
|
flex-direction: column;
|
|
`,
|
|
searchClear: css`
|
|
color: ${theme.palette.gray60};
|
|
cursor: pointer;
|
|
`,
|
|
};
|
|
});
|
|
|
|
const mapStateToProps: MapStateToProps<ConnectedProps, OwnProps, StoreState> = (state, props) => {
|
|
return {
|
|
plugin: state.plugins.panels[props.panel.type],
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps: MapDispatchToProps<DispatchProps, OwnProps> = { changePanelPlugin };
|
|
|
|
export const VisualizationTab = connect(mapStateToProps, mapDispatchToProps, undefined, { forwardRef: true })(
|
|
VisualizationTabUnconnected
|
|
);
|