mirror of
https://github.com/grafana/grafana.git
synced 2025-09-23 16:33:31 +08:00

* Fix panel option bugs and make tooltip options work * Support multiple series in explicit mode. Rename XY/Explicit to Auto/Manual * Fixes * Fix * Legend improvements * Rewrite Pure Component to Function Component * Add datalinks support * Legend fixes and CR modifications * Fix bugs that crash panel
156 lines
4.6 KiB
TypeScript
156 lines
4.6 KiB
TypeScript
import { css, cx } from '@emotion/css';
|
|
import React, { FC, useState } from 'react';
|
|
|
|
import { GrafanaTheme, StandardEditorProps } from '@grafana/data';
|
|
import { Button, Field, IconButton, useStyles } from '@grafana/ui';
|
|
import { FieldNamePicker } from '@grafana/ui/src/components/MatchersUI/FieldNamePicker';
|
|
import { LayerName } from 'app/core/components/Layers/LayerName';
|
|
import { ColorDimensionEditor, ScaleDimensionEditor } from 'app/features/dimensions/editors';
|
|
|
|
import { XYChartOptions, ScatterSeriesConfig, defaultScatterConfig } from './models.gen';
|
|
|
|
export const ManualEditor: FC<StandardEditorProps<ScatterSeriesConfig[], any, XYChartOptions>> = ({
|
|
value,
|
|
onChange,
|
|
context,
|
|
}) => {
|
|
const [selected, setSelected] = useState<number>(-1);
|
|
const style = useStyles(getStyles);
|
|
|
|
const onFieldChange = (val: any | undefined, index: number, field: string) => {
|
|
onChange(
|
|
value.map((obj, i) => {
|
|
if (i === index) {
|
|
return { ...obj, [field]: val };
|
|
}
|
|
return obj;
|
|
})
|
|
);
|
|
};
|
|
|
|
const createNewSeries = () => {
|
|
onChange([
|
|
...value,
|
|
{
|
|
pointColor: {} as any,
|
|
pointSize: defaultScatterConfig.pointSize,
|
|
},
|
|
]);
|
|
};
|
|
|
|
const onSeriesDelete = (index: number) => {
|
|
onChange(value.filter((_, i) => i !== index));
|
|
};
|
|
|
|
const { options } = context;
|
|
|
|
const getRowStyle = (index: number) => {
|
|
return index === selected ? `${style.row} ${style.sel}` : style.row;
|
|
};
|
|
|
|
if (options === undefined || !options.series) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Button icon="plus" size="sm" variant="secondary" onClick={createNewSeries} className={style.marginBot}>
|
|
Add series
|
|
</Button>
|
|
|
|
<div className={style.marginBot}>
|
|
{options.series.map((series, index) => {
|
|
return (
|
|
<div key={`series/${index}`} className={getRowStyle(index)} onMouseDown={() => setSelected(index)}>
|
|
<LayerName
|
|
name={series.name ?? `Series ${index + 1}`}
|
|
onChange={(v) => onFieldChange(v, index, 'name')}
|
|
/>
|
|
|
|
<IconButton
|
|
name="trash-alt"
|
|
title={'remove'}
|
|
className={cx(style.actionIcon)}
|
|
onClick={() => onSeriesDelete(index)}
|
|
/>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
|
|
{selected >= 0 && options.series[selected] && (
|
|
<>
|
|
<div key={`series/${selected}`}>
|
|
<Field label={'X Field'}>
|
|
<FieldNamePicker
|
|
value={options.series[selected].x ?? ''}
|
|
context={context}
|
|
onChange={(field) => onFieldChange(field, selected, 'x')}
|
|
item={{} as any}
|
|
/>
|
|
</Field>
|
|
<Field label={'Y Field'}>
|
|
<FieldNamePicker
|
|
value={options.series[selected].y ?? ''}
|
|
context={context}
|
|
onChange={(field) => onFieldChange(field, selected, 'y')}
|
|
item={{} as any}
|
|
/>
|
|
</Field>
|
|
<Field label={'Point color'}>
|
|
<ColorDimensionEditor
|
|
value={options.series[selected].pointColor!}
|
|
context={context}
|
|
onChange={(field) => onFieldChange(field, selected, 'pointColor')}
|
|
item={{} as any}
|
|
/>
|
|
</Field>
|
|
<Field label={'Point size'}>
|
|
<ScaleDimensionEditor
|
|
value={options.series[selected].pointSize!}
|
|
context={context}
|
|
onChange={(field) => onFieldChange(field, selected, 'pointSize')}
|
|
item={{ settings: { min: 1, max: 50 } } as any}
|
|
/>
|
|
</Field>
|
|
</div>
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme) => ({
|
|
marginBot: css`
|
|
margin-bottom: 20px;
|
|
`,
|
|
row: css`
|
|
padding: ${theme.spacing.xs} ${theme.spacing.sm};
|
|
border-radius: ${theme.border.radius.sm};
|
|
background: ${theme.colors.bg2};
|
|
min-height: ${theme.spacing.formInputHeight}px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 3px;
|
|
cursor: pointer;
|
|
|
|
border: 1px solid ${theme.colors.formInputBorder};
|
|
&:hover {
|
|
border: 1px solid ${theme.colors.formInputBorderHover};
|
|
}
|
|
`,
|
|
sel: css`
|
|
border: 1px solid ${theme.colors.formInputBorderActive};
|
|
&:hover {
|
|
border: 1px solid ${theme.colors.formInputBorderActive};
|
|
}
|
|
`,
|
|
actionIcon: css`
|
|
color: ${theme.colors.textWeak};
|
|
&:hover {
|
|
color: ${theme.colors.text};
|
|
}
|
|
`,
|
|
});
|