mirror of https://github.com/grafana/grafana.git
209 lines
7.2 KiB
TypeScript
209 lines
7.2 KiB
TypeScript
import React from 'react';
|
|
|
|
import { SelectableValue } from '@grafana/data';
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
import { config } from '@grafana/runtime';
|
|
import { VizPanel } from '@grafana/scenes';
|
|
import { RadioButtonGroup, Select, DataLinksInlineEditor, Input, TextArea, Switch } from '@grafana/ui';
|
|
import { GenAIPanelDescriptionButton } from 'app/features/dashboard/components/GenAI/GenAIPanelDescriptionButton';
|
|
import { GenAIPanelTitleButton } from 'app/features/dashboard/components/GenAI/GenAIPanelTitleButton';
|
|
import { OptionsPaneCategoryDescriptor } from 'app/features/dashboard/components/PanelEditor/OptionsPaneCategoryDescriptor';
|
|
import { OptionsPaneItemDescriptor } from 'app/features/dashboard/components/PanelEditor/OptionsPaneItemDescriptor';
|
|
import { RepeatRowSelect2 } from 'app/features/dashboard/components/RepeatRowSelect/RepeatRowSelect';
|
|
import { getPanelLinksVariableSuggestions } from 'app/features/panel/panellinks/link_srv';
|
|
|
|
import { VizPanelLinks } from '../scene/PanelLinks';
|
|
import { vizPanelToPanel, transformSceneToSaveModel } from '../serialization/transformSceneToSaveModel';
|
|
import { dashboardSceneGraph } from '../utils/dashboardSceneGraph';
|
|
import { getDashboardSceneFor } from '../utils/utils';
|
|
|
|
import { VizPanelManager, VizPanelManagerState } from './VizPanelManager';
|
|
|
|
export function getPanelFrameCategory2(
|
|
vizManager: VizPanelManager,
|
|
panel: VizPanel,
|
|
repeat?: string
|
|
): OptionsPaneCategoryDescriptor {
|
|
const descriptor = new OptionsPaneCategoryDescriptor({
|
|
title: 'Panel options',
|
|
id: 'Panel options',
|
|
isOpenDefault: true,
|
|
});
|
|
|
|
const panelLinksObject = dashboardSceneGraph.getPanelLinks(panel);
|
|
const links = panelLinksObject?.state.rawLinks ?? [];
|
|
const dashboard = getDashboardSceneFor(panel);
|
|
|
|
return descriptor
|
|
.addItem(
|
|
new OptionsPaneItemDescriptor({
|
|
title: 'Title',
|
|
value: panel.state.title,
|
|
popularRank: 1,
|
|
render: function renderTitle() {
|
|
return <PanelFrameTitle vizManager={vizManager} />;
|
|
},
|
|
addon: config.featureToggles.dashgpt && (
|
|
<GenAIPanelTitleButton
|
|
onGenerate={(title) => vizManager.setPanelTitle(title)}
|
|
panel={vizPanelToPanel(panel)}
|
|
dashboard={transformSceneToSaveModel(dashboard)}
|
|
/>
|
|
),
|
|
})
|
|
)
|
|
.addItem(
|
|
new OptionsPaneItemDescriptor({
|
|
title: 'Description',
|
|
value: panel.state.description,
|
|
render: function renderDescription() {
|
|
return <DescriptionTextArea panel={panel} />;
|
|
},
|
|
addon: config.featureToggles.dashgpt && (
|
|
<GenAIPanelDescriptionButton
|
|
onGenerate={(description) => panel.setState({ description })}
|
|
panel={vizPanelToPanel(panel)}
|
|
/>
|
|
),
|
|
})
|
|
)
|
|
.addItem(
|
|
new OptionsPaneItemDescriptor({
|
|
title: 'Transparent background',
|
|
render: function renderTransparent() {
|
|
return (
|
|
<Switch
|
|
value={panel.state.displayMode === 'transparent'}
|
|
id="transparent-background"
|
|
onChange={() => {
|
|
panel.setState({
|
|
displayMode: panel.state.displayMode === 'transparent' ? 'default' : 'transparent',
|
|
});
|
|
}}
|
|
/>
|
|
);
|
|
},
|
|
})
|
|
)
|
|
.addCategory(
|
|
new OptionsPaneCategoryDescriptor({
|
|
title: 'Panel links',
|
|
id: 'Panel links',
|
|
isOpenDefault: false,
|
|
itemsCount: links?.length,
|
|
}).addItem(
|
|
new OptionsPaneItemDescriptor({
|
|
title: 'Panel links',
|
|
render: () => <ScenePanelLinksEditor panelLinks={panelLinksObject ?? undefined} />,
|
|
})
|
|
)
|
|
)
|
|
.addCategory(
|
|
new OptionsPaneCategoryDescriptor({
|
|
title: 'Repeat options',
|
|
id: 'Repeat options',
|
|
isOpenDefault: false,
|
|
})
|
|
.addItem(
|
|
new OptionsPaneItemDescriptor({
|
|
title: 'Repeat by variable',
|
|
description:
|
|
'Repeat this panel for each value in the selected variable. This is not visible while in edit mode. You need to go back to dashboard and then update the variable or reload the dashboard.',
|
|
render: function renderRepeatOptions() {
|
|
return (
|
|
<RepeatRowSelect2
|
|
id="repeat-by-variable-select"
|
|
parent={panel}
|
|
repeat={repeat}
|
|
onChange={(value?: string) => {
|
|
const stateUpdate: Partial<VizPanelManagerState> = { repeat: value };
|
|
if (value && !vizManager.state.repeatDirection) {
|
|
stateUpdate.repeatDirection = 'h';
|
|
}
|
|
vizManager.setState(stateUpdate);
|
|
}}
|
|
/>
|
|
);
|
|
},
|
|
})
|
|
)
|
|
.addItem(
|
|
new OptionsPaneItemDescriptor({
|
|
title: 'Repeat direction',
|
|
showIf: () => !!vizManager.state.repeat,
|
|
render: function renderRepeatOptions() {
|
|
const directionOptions: Array<SelectableValue<'h' | 'v'>> = [
|
|
{ label: 'Horizontal', value: 'h' },
|
|
{ label: 'Vertical', value: 'v' },
|
|
];
|
|
|
|
return (
|
|
<RadioButtonGroup
|
|
options={directionOptions}
|
|
value={vizManager.state.repeatDirection ?? 'h'}
|
|
onChange={(value) => vizManager.setState({ repeatDirection: value })}
|
|
/>
|
|
);
|
|
},
|
|
})
|
|
)
|
|
.addItem(
|
|
new OptionsPaneItemDescriptor({
|
|
title: 'Max per row',
|
|
showIf: () => Boolean(vizManager.state.repeat && vizManager.state.repeatDirection === 'h'),
|
|
render: function renderOption() {
|
|
const maxPerRowOptions = [2, 3, 4, 6, 8, 12].map((value) => ({ label: value.toString(), value }));
|
|
return (
|
|
<Select
|
|
options={maxPerRowOptions}
|
|
value={vizManager.state.maxPerRow}
|
|
onChange={(value) => vizManager.setState({ maxPerRow: value.value })}
|
|
/>
|
|
);
|
|
},
|
|
})
|
|
)
|
|
);
|
|
}
|
|
|
|
interface ScenePanelLinksEditorProps {
|
|
panelLinks?: VizPanelLinks;
|
|
}
|
|
|
|
function ScenePanelLinksEditor({ panelLinks }: ScenePanelLinksEditorProps) {
|
|
const { rawLinks: links } = panelLinks ? panelLinks.useState() : { rawLinks: [] };
|
|
|
|
return (
|
|
<DataLinksInlineEditor
|
|
links={links}
|
|
onChange={(links) => panelLinks?.setState({ rawLinks: links })}
|
|
getSuggestions={getPanelLinksVariableSuggestions}
|
|
data={[]}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function PanelFrameTitle({ vizManager }: { vizManager: VizPanelManager }) {
|
|
const { title } = vizManager.state.panel.useState();
|
|
|
|
return (
|
|
<Input
|
|
data-testid={selectors.components.PanelEditor.OptionsPane.fieldInput('Title')}
|
|
value={title}
|
|
onChange={(e) => vizManager.setPanelTitle(e.currentTarget.value)}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function DescriptionTextArea({ panel }: { panel: VizPanel }) {
|
|
const { description } = panel.useState();
|
|
|
|
return (
|
|
<TextArea
|
|
id="description-text-area"
|
|
value={description}
|
|
onChange={(e) => panel.setState({ description: e.currentTarget.value })}
|
|
/>
|
|
);
|
|
}
|