mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 03:12:59 +08:00

* MenuItem: Allow react node as label * LinkButton: Expose ButtonLinkProps * Typecheck fix * DashboardLinks: Refactor and use LinkButton and menu * DashbaordLinks scene object * Use flex layout for dashboard controls * Update public/app/features/dashboard/components/SubMenu/DashboardLinksDashboard.tsx Co-authored-by: Alex Khomenko <Clarity-89@users.noreply.github.com> * fix keepTime and includeVars * Add ellipsis to menu item label and description * Use DashboardLink type from grafana/schema * Update dashboard scene controls layout * Fix e2e * Test fix * Bring back keyboard navigation * Remove unused code * One more fix --------- Co-authored-by: Alex Khomenko <Clarity-89@users.noreply.github.com> Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
435 lines
13 KiB
TypeScript
435 lines
13 KiB
TypeScript
import { AdHocVariableModel, TypedVariableModel, VariableModel } from '@grafana/data';
|
|
import { config } from '@grafana/runtime';
|
|
import {
|
|
VizPanel,
|
|
SceneTimePicker,
|
|
SceneGridLayout,
|
|
SceneGridRow,
|
|
SceneTimeRange,
|
|
SceneVariableSet,
|
|
VariableValueSelectors,
|
|
SceneVariable,
|
|
CustomVariable,
|
|
DataSourceVariable,
|
|
QueryVariable,
|
|
ConstantVariable,
|
|
IntervalVariable,
|
|
SceneRefreshPicker,
|
|
SceneGridItem,
|
|
SceneObject,
|
|
VizPanelMenu,
|
|
behaviors,
|
|
VizPanelState,
|
|
SceneGridItemLike,
|
|
SceneDataLayers,
|
|
SceneDataLayerProvider,
|
|
SceneDataLayerControls,
|
|
AdHocFilterSet,
|
|
} from '@grafana/scenes';
|
|
import { DashboardModel, PanelModel } from 'app/features/dashboard/state';
|
|
import { DashboardDTO } from 'app/types';
|
|
|
|
import { AlertStatesDataLayer } from '../scene/AlertStatesDataLayer';
|
|
import { DashboardAnnotationsDataLayer } from '../scene/DashboardAnnotationsDataLayer';
|
|
import { DashboardControls } from '../scene/DashboardControls';
|
|
import { DashboardLinksControls } from '../scene/DashboardLinksControls';
|
|
import { registerDashboardMacro } from '../scene/DashboardMacro';
|
|
import { DashboardScene } from '../scene/DashboardScene';
|
|
import { LibraryVizPanel } from '../scene/LibraryVizPanel';
|
|
import { VizPanelLinks, VizPanelLinksMenu } from '../scene/PanelLinks';
|
|
import { getPanelLinksBehavior, panelMenuBehavior } from '../scene/PanelMenuBehavior';
|
|
import { PanelRepeaterGridItem } from '../scene/PanelRepeaterGridItem';
|
|
import { PanelTimeRange } from '../scene/PanelTimeRange';
|
|
import { RowRepeaterBehavior } from '../scene/RowRepeaterBehavior';
|
|
import { setDashboardPanelContext } from '../scene/setDashboardPanelContext';
|
|
import { createPanelDataProvider } from '../utils/createPanelDataProvider';
|
|
import {
|
|
getCurrentValueForOldIntervalModel,
|
|
getIntervalsFromOldIntervalModel,
|
|
getVizPanelKeyForPanelId,
|
|
} from '../utils/utils';
|
|
|
|
import { getAngularPanelMigrationHandler } from './angularMigration';
|
|
|
|
export interface DashboardLoaderState {
|
|
dashboard?: DashboardScene;
|
|
isLoading?: boolean;
|
|
loadError?: string;
|
|
}
|
|
|
|
export function transformSaveModelToScene(rsp: DashboardDTO): DashboardScene {
|
|
// Just to have migrations run
|
|
const oldModel = new DashboardModel(rsp.dashboard, rsp.meta, {
|
|
autoMigrateOldPanels: false,
|
|
});
|
|
|
|
return createDashboardSceneFromDashboardModel(oldModel);
|
|
}
|
|
|
|
export function createSceneObjectsForPanels(oldPanels: PanelModel[]): SceneGridItemLike[] {
|
|
// collects all panels and rows
|
|
const panels: SceneGridItemLike[] = [];
|
|
|
|
// indicates expanded row that's currently processed
|
|
let currentRow: PanelModel | null = null;
|
|
// collects panels in the currently processed, expanded row
|
|
let currentRowPanels: SceneGridItemLike[] = [];
|
|
|
|
for (const panel of oldPanels) {
|
|
if (panel.type === 'row') {
|
|
if (!currentRow) {
|
|
if (Boolean(panel.collapsed)) {
|
|
// collapsed rows contain their panels within the row model
|
|
panels.push(createRowFromPanelModel(panel, []));
|
|
} else {
|
|
// indicate new row to be processed
|
|
currentRow = panel;
|
|
}
|
|
} else {
|
|
// when a row has been processed, and we hit a next one for processing
|
|
if (currentRow.id !== panel.id) {
|
|
// commit previous row panels
|
|
panels.push(createRowFromPanelModel(currentRow, currentRowPanels));
|
|
|
|
currentRow = panel;
|
|
currentRowPanels = [];
|
|
}
|
|
}
|
|
} else if (panel.libraryPanel?.uid && !('model' in panel.libraryPanel)) {
|
|
const gridItem = buildGridItemForLibPanel(panel);
|
|
if (gridItem) {
|
|
panels.push(gridItem);
|
|
}
|
|
} else {
|
|
const panelObject = buildGridItemForPanel(panel);
|
|
|
|
// when processing an expanded row, collect its panels
|
|
if (currentRow) {
|
|
currentRowPanels.push(panelObject);
|
|
} else {
|
|
panels.push(panelObject);
|
|
}
|
|
}
|
|
}
|
|
|
|
// commit a row if it's the last one
|
|
if (currentRow) {
|
|
panels.push(createRowFromPanelModel(currentRow, currentRowPanels));
|
|
}
|
|
|
|
return panels;
|
|
}
|
|
|
|
function createRowFromPanelModel(row: PanelModel, content: SceneGridItemLike[]): SceneGridItemLike {
|
|
if (Boolean(row.collapsed)) {
|
|
if (row.panels) {
|
|
content = row.panels.map(buildGridItemForPanel);
|
|
}
|
|
}
|
|
|
|
let behaviors: SceneObject[] | undefined;
|
|
let children = content;
|
|
|
|
if (row.repeat) {
|
|
// For repeated rows the children are stored in the behavior
|
|
children = [];
|
|
behaviors = [
|
|
new RowRepeaterBehavior({
|
|
variableName: row.repeat,
|
|
sources: content,
|
|
}),
|
|
];
|
|
}
|
|
|
|
return new SceneGridRow({
|
|
key: getVizPanelKeyForPanelId(row.id),
|
|
title: row.title,
|
|
y: row.gridPos.y,
|
|
isCollapsed: row.collapsed,
|
|
children: children,
|
|
$behaviors: behaviors,
|
|
});
|
|
}
|
|
|
|
export function createDashboardSceneFromDashboardModel(oldModel: DashboardModel) {
|
|
let variables: SceneVariableSet | undefined = undefined;
|
|
let layers: SceneDataLayerProvider[] = [];
|
|
let filtersSets: AdHocFilterSet[] = [];
|
|
|
|
if (oldModel.templating?.list?.length) {
|
|
const variableObjects = oldModel.templating.list
|
|
.map((v) => {
|
|
try {
|
|
if (isAdhocVariable(v)) {
|
|
filtersSets.push(
|
|
new AdHocFilterSet({
|
|
name: v.name,
|
|
datasource: v.datasource,
|
|
filters: v.filters ?? [],
|
|
baseFilters: v.baseFilters ?? [],
|
|
})
|
|
);
|
|
return null;
|
|
}
|
|
|
|
return createSceneVariableFromVariableModel(v);
|
|
} catch (err) {
|
|
console.error(err);
|
|
return null;
|
|
}
|
|
})
|
|
// TODO: Remove filter
|
|
// Added temporarily to allow skipping non-compatible variables
|
|
.filter((v): v is SceneVariable => Boolean(v));
|
|
|
|
variables = new SceneVariableSet({
|
|
variables: variableObjects,
|
|
});
|
|
}
|
|
|
|
if (oldModel.annotations?.list?.length) {
|
|
layers = oldModel.annotations?.list.map((a) => {
|
|
// Each annotation query is an individual data layer
|
|
return new DashboardAnnotationsDataLayer({
|
|
key: `annnotations-${a.name}`,
|
|
query: a,
|
|
name: a.name,
|
|
isEnabled: Boolean(a.enable),
|
|
isHidden: Boolean(a.hide),
|
|
});
|
|
});
|
|
}
|
|
|
|
let shouldUseAlertStatesLayer = config.unifiedAlertingEnabled;
|
|
if (!shouldUseAlertStatesLayer) {
|
|
if (oldModel.panels.find((panel) => Boolean(panel.alert))) {
|
|
shouldUseAlertStatesLayer = true;
|
|
}
|
|
}
|
|
|
|
if (shouldUseAlertStatesLayer) {
|
|
layers.push(
|
|
new AlertStatesDataLayer({
|
|
key: 'alert-states',
|
|
name: 'Alert States',
|
|
})
|
|
);
|
|
}
|
|
|
|
return new DashboardScene({
|
|
title: oldModel.title,
|
|
uid: oldModel.uid,
|
|
id: oldModel.id,
|
|
meta: oldModel.meta,
|
|
body: new SceneGridLayout({
|
|
isLazy: true,
|
|
children: createSceneObjectsForPanels(oldModel.panels),
|
|
}),
|
|
$timeRange: new SceneTimeRange({
|
|
from: oldModel.time.from,
|
|
to: oldModel.time.to,
|
|
fiscalYearStartMonth: oldModel.fiscalYearStartMonth,
|
|
timeZone: oldModel.timezone,
|
|
weekStart: oldModel.weekStart,
|
|
}),
|
|
$variables: variables,
|
|
$behaviors: [
|
|
registerDashboardMacro,
|
|
new behaviors.CursorSync({
|
|
sync: oldModel.graphTooltip,
|
|
}),
|
|
],
|
|
$data:
|
|
layers.length > 0
|
|
? new SceneDataLayers({
|
|
layers,
|
|
})
|
|
: undefined,
|
|
controls: [
|
|
new DashboardControls({
|
|
variableControls: [new VariableValueSelectors({}), ...filtersSets, new SceneDataLayerControls()],
|
|
timeControls: Boolean(oldModel.timepicker.hidden)
|
|
? []
|
|
: [
|
|
new SceneTimePicker({}),
|
|
new SceneRefreshPicker({
|
|
refresh: oldModel.refresh,
|
|
intervals: oldModel.timepicker.refresh_intervals,
|
|
}),
|
|
],
|
|
linkControls: new DashboardLinksControls({
|
|
links: oldModel.links,
|
|
dashboardUID: oldModel.uid,
|
|
}),
|
|
}),
|
|
],
|
|
});
|
|
}
|
|
|
|
export function createSceneVariableFromVariableModel(variable: TypedVariableModel): SceneVariable {
|
|
const commonProperties = {
|
|
name: variable.name,
|
|
label: variable.label,
|
|
};
|
|
if (variable.type === 'custom') {
|
|
return new CustomVariable({
|
|
...commonProperties,
|
|
value: variable.current.value,
|
|
text: variable.current.text,
|
|
description: variable.description,
|
|
query: variable.query,
|
|
isMulti: variable.multi,
|
|
allValue: variable.allValue || undefined,
|
|
includeAll: variable.includeAll,
|
|
defaultToAll: Boolean(variable.includeAll),
|
|
skipUrlSync: variable.skipUrlSync,
|
|
hide: variable.hide,
|
|
});
|
|
} else if (variable.type === 'query') {
|
|
return new QueryVariable({
|
|
...commonProperties,
|
|
value: variable.current.value,
|
|
text: variable.current.text,
|
|
description: variable.description,
|
|
query: variable.query,
|
|
datasource: variable.datasource,
|
|
sort: variable.sort,
|
|
refresh: variable.refresh,
|
|
regex: variable.regex,
|
|
allValue: variable.allValue || undefined,
|
|
includeAll: variable.includeAll,
|
|
defaultToAll: Boolean(variable.includeAll),
|
|
isMulti: variable.multi,
|
|
skipUrlSync: variable.skipUrlSync,
|
|
hide: variable.hide,
|
|
});
|
|
} else if (variable.type === 'datasource') {
|
|
return new DataSourceVariable({
|
|
...commonProperties,
|
|
value: variable.current.value,
|
|
text: variable.current.text,
|
|
description: variable.description,
|
|
regex: variable.regex,
|
|
pluginId: variable.query,
|
|
allValue: variable.allValue || undefined,
|
|
includeAll: variable.includeAll,
|
|
defaultToAll: Boolean(variable.includeAll),
|
|
skipUrlSync: variable.skipUrlSync,
|
|
isMulti: variable.multi,
|
|
hide: variable.hide,
|
|
});
|
|
} else if (variable.type === 'interval') {
|
|
const intervals = getIntervalsFromOldIntervalModel(variable);
|
|
const currentInterval = getCurrentValueForOldIntervalModel(variable, intervals);
|
|
return new IntervalVariable({
|
|
...commonProperties,
|
|
value: currentInterval,
|
|
description: variable.description,
|
|
intervals: intervals,
|
|
autoEnabled: variable.auto,
|
|
autoStepCount: variable.auto_count,
|
|
autoMinInterval: variable.auto_min,
|
|
refresh: variable.refresh,
|
|
skipUrlSync: variable.skipUrlSync,
|
|
hide: variable.hide,
|
|
});
|
|
} else if (variable.type === 'constant') {
|
|
return new ConstantVariable({
|
|
...commonProperties,
|
|
description: variable.description,
|
|
value: variable.query,
|
|
skipUrlSync: variable.skipUrlSync,
|
|
hide: variable.hide,
|
|
});
|
|
} else {
|
|
throw new Error(`Scenes: Unsupported variable type ${variable.type}`);
|
|
}
|
|
}
|
|
|
|
export function buildGridItemForLibPanel(panel: PanelModel) {
|
|
if (!panel.libraryPanel) {
|
|
return null;
|
|
}
|
|
|
|
return new SceneGridItem({
|
|
body: new LibraryVizPanel({
|
|
title: panel.title,
|
|
uid: panel.libraryPanel.uid,
|
|
name: panel.libraryPanel.name,
|
|
key: getVizPanelKeyForPanelId(panel.id),
|
|
}),
|
|
y: panel.gridPos.y,
|
|
x: panel.gridPos.x,
|
|
width: panel.gridPos.w,
|
|
height: panel.gridPos.h,
|
|
});
|
|
}
|
|
|
|
export function buildGridItemForPanel(panel: PanelModel): SceneGridItemLike {
|
|
const hasPanelLinks = panel.links && panel.links.length > 0;
|
|
let panelLinks;
|
|
|
|
if (hasPanelLinks) {
|
|
panelLinks = new VizPanelLinks({
|
|
menu: new VizPanelLinksMenu({ $behaviors: [getPanelLinksBehavior(panel)] }),
|
|
});
|
|
}
|
|
|
|
const vizPanelState: VizPanelState = {
|
|
key: getVizPanelKeyForPanelId(panel.id),
|
|
title: panel.title,
|
|
description: panel.description,
|
|
pluginId: panel.type,
|
|
options: panel.options ?? {},
|
|
fieldConfig: panel.fieldConfig,
|
|
pluginVersion: panel.pluginVersion,
|
|
displayMode: panel.transparent ? 'transparent' : undefined,
|
|
// To be replaced with it's own option persited option instead derived
|
|
hoverHeader: !panel.title && !panel.timeFrom && !panel.timeShift,
|
|
$data: createPanelDataProvider(panel),
|
|
menu: new VizPanelMenu({
|
|
$behaviors: [panelMenuBehavior],
|
|
}),
|
|
titleItems: panelLinks,
|
|
|
|
extendPanelContext: setDashboardPanelContext,
|
|
_UNSAFE_customMigrationHandler: getAngularPanelMigrationHandler(panel),
|
|
};
|
|
|
|
if (panel.timeFrom || panel.timeShift) {
|
|
vizPanelState.$timeRange = new PanelTimeRange({
|
|
timeFrom: panel.timeFrom,
|
|
timeShift: panel.timeShift,
|
|
hideTimeOverride: panel.hideTimeOverride,
|
|
});
|
|
}
|
|
|
|
if (panel.repeat) {
|
|
const repeatDirection = panel.repeatDirection ?? 'h';
|
|
return new PanelRepeaterGridItem({
|
|
key: `grid-item-${panel.id}`,
|
|
x: panel.gridPos.x,
|
|
y: panel.gridPos.y,
|
|
width: repeatDirection === 'h' ? 24 : panel.gridPos.w,
|
|
height: panel.gridPos.h,
|
|
itemHeight: panel.gridPos.h,
|
|
source: new VizPanel(vizPanelState),
|
|
variableName: panel.repeat,
|
|
repeatedPanels: [],
|
|
repeatDirection: panel.repeatDirection,
|
|
maxPerRow: panel.maxPerRow,
|
|
});
|
|
}
|
|
|
|
return new SceneGridItem({
|
|
key: `grid-item-${panel.id}`,
|
|
x: panel.gridPos.x,
|
|
y: panel.gridPos.y,
|
|
width: panel.gridPos.w,
|
|
height: panel.gridPos.h,
|
|
body: new VizPanel(vizPanelState),
|
|
});
|
|
}
|
|
|
|
const isAdhocVariable = (v: VariableModel): v is AdHocVariableModel => v.type === 'adhoc';
|