repeat row: expose scopedVars to row panels

This commit is contained in:
Alexander Zobnin 2017-11-29 16:40:13 +03:00
parent dd9c727e60
commit 36ef186587
2 changed files with 93 additions and 45 deletions

View File

@ -274,7 +274,6 @@ export class DashboardModel {
this.sortPanelsByGridPos();
this.events.emit('repeats-processed');
console.log(this.panels);
}
getPanelRepeatClone(sourcePanel, valueIndex, sourcePanelIndex) {
@ -286,12 +285,33 @@ export class DashboardModel {
let clone = new PanelModel(sourcePanel.getSaveModel());
clone.id = this.getNextPanelId();
if (sourcePanel.type === 'row') {
// insert after source panel + value index
this.panels.splice(sourcePanelIndex+valueIndex, 0, clone);
clone.repeatIteration = this.iteration;
clone.repeatPanelId = sourcePanel.id;
clone.repeat = null;
return clone;
}
getRowRepeatClone(sourcePanel, valueIndex, sourcePanelIndex) {
// if first clone return source
if (valueIndex === 0) {
if (!sourcePanel.collapsed) {
let rowPanels = this.getRowPanels(sourcePanelIndex);
sourcePanel.panels = rowPanels;
}
return sourcePanel;
}
let clone = new PanelModel(sourcePanel.getSaveModel());
clone.id = this.getNextPanelId();
// for row clones we need to figure out panels under row to clone and where to insert clone
let rowPanels, insertPos;
if (sourcePanel.collapsed) {
rowPanels = sourcePanel.panels;
clone.panels = _.cloneDeep(rowPanels);
rowPanels = _.cloneDeep(sourcePanel.panels);
clone.panels = rowPanels;
// insert copied row after preceding row
insertPos = sourcePanelIndex + valueIndex;
} else {
@ -301,10 +321,6 @@ export class DashboardModel {
insertPos = sourcePanelIndex + ((rowPanels.length + 1)*valueIndex);
}
this.panels.splice(insertPos, 0, clone);
} else {
// insert after source panel + value index
this.panels.splice(sourcePanelIndex+valueIndex, 0, clone);
}
clone.repeatIteration = this.iteration;
clone.repeatPanelId = sourcePanel.id;
@ -334,16 +350,17 @@ export class DashboardModel {
for (let index = 0; index < selected.length; index++) {
let option = selected[index];
let copy = this.getPanelRepeatClone(panel, index, panelIndex);
let copy;
if (panel.type === 'row') {
copy = this.getRowRepeatClone(panel, index, panelIndex);
copy.scopedVars = {};
copy.scopedVars[variable.name] = option;
if (copy.type === 'row') {
let rowHeight = this.getRowHeight(copy);
if (rowHeight) {
// if (rowHeight) {
let panelsBelowIndex;
let rowPanels = copy.panels;
let rowPanels = copy.panels || [];
// insert after 'row' panel
let insertPos = panelIndex + ((rowPanels.length + 1) * index) + 1;
@ -351,15 +368,25 @@ export class DashboardModel {
copy.gridPos.y += index;
yPos += index;
panelsBelowIndex = panelIndex + index + 1;
_.each(copy.panels, (panel, i) => {
panel.scopedVars = {};
panel.scopedVars[variable.name] = option;
if (index > 0) {
panel.id = this.getNextPanelId();
panel.repeatIteration = this.iteration;
panel.repeatPanelId = rowPanels[i].id;
panel.repeat = null;
copy.panels[i] = panel;
}
});
} else {
_.each(rowPanels, (rowPanel, i) => {
rowPanel.scopedVars = {};
rowPanel.scopedVars[variable.name] = option;
if (index > 0) {
let cloneRowPanel = new PanelModel(rowPanel);
cloneRowPanel.id = this.getNextPanelId();
cloneRowPanel.repeatIteration = this.iteration;
@ -367,6 +394,7 @@ export class DashboardModel {
cloneRowPanel.repeat = null;
cloneRowPanel.gridPos.y += rowHeight * index;
this.panels.splice(insertPos+i, 0, cloneRowPanel);
}
});
copy.panels = [];
copy.gridPos.y += rowHeight * index;
@ -378,8 +406,11 @@ export class DashboardModel {
for (let i = panelsBelowIndex; i< this.panels.length; i++) {
this.panels[i].gridPos.y += yPos;
}
}
} else {
copy = this.getPanelRepeatClone(panel, index, panelIndex);
copy.scopedVars = {};
copy.scopedVars[variable.name] = option;
if (panel.repeatDirection === REPEAT_DIR_VERTICAL) {
copy.gridPos.y = yPos;
yPos += copy.gridPos.h;

View File

@ -187,6 +187,23 @@ describe('given dashboard with row repeat', function() {
]);
});
it('should set scopedVars for each panel', function() {
dashboardJSON.templating.list[0].options[2].selected = true;
dashboard = new DashboardModel(dashboardJSON);
dashboard.processRepeats();
const scopedVars = _.compact(_.map(dashboard.panels, (panel) => {
if (panel.scopedVars) {
return panel.scopedVars.apps.value;
}
}));
expect(scopedVars).toEqual([
'se1', 'se1', 'se1',
'se2', 'se2', 'se2',
'se3', 'se3', 'se3',
]);
});
it('should repeat only row if it is collapsed', function() {
dashboardJSON.panels = [
{