Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
46fa09fd
Commit
46fa09fd
authored
Mar 04, 2019
by
Jon Ferreira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a keybinding that toggles all legends in a dashboard
parent
c3604767
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
49 additions
and
0 deletions
+49
-0
public/app/core/components/help/help.ts
+1
-0
public/app/core/services/keybindingSrv.ts
+5
-0
public/app/features/dashboard/state/DashboardModel.test.ts
+28
-0
public/app/features/dashboard/state/DashboardModel.ts
+14
-0
public/app/features/dashboard/state/PanelModel.ts
+1
-0
No files found.
public/app/core/components/help/help.ts
View file @
46fa09fd
...
...
@@ -27,6 +27,7 @@ export class HelpCtrl {
{
keys
:
[
'd'
,
'C'
],
description
:
'Collapse all rows'
},
{
keys
:
[
'd'
,
'a'
],
description
:
'Toggle auto fit panels (experimental feature)'
},
{
keys
:
[
'mod+o'
],
description
:
'Toggle shared graph crosshair'
},
{
keys
:
[
'd'
,
'l'
],
description
:
'Toggle all panel legends'
},
],
'Focused Panel'
:
[
{
keys
:
[
'e'
],
description
:
'Toggle panel edit view'
},
...
...
public/app/core/services/keybindingSrv.ts
View file @
46fa09fd
...
...
@@ -256,6 +256,11 @@ export class KeybindingSrv {
}
});
// toggle all panel legends
this
.
bind
(
'd l'
,
()
=>
{
dashboard
.
toggleLegendsForAll
();
});
// collapse all rows
this
.
bind
(
'd shift+c'
,
()
=>
{
dashboard
.
collapseRows
();
...
...
public/app/features/dashboard/state/DashboardModel.test.ts
View file @
46fa09fd
...
...
@@ -635,4 +635,32 @@ describe('DashboardModel', () => {
expect
(
saveModel
.
templating
.
list
[
0
].
filters
[
0
].
value
).
toBe
(
'server 1'
);
});
});
describe
(
'Given a dashboard with one panel legend on and two off'
,
()
=>
{
let
model
;
beforeEach
(()
=>
{
const
data
=
{
panels
:
[
{
id
:
1
,
type
:
'graph'
,
gridPos
:
{
x
:
0
,
y
:
0
,
w
:
24
,
h
:
2
},
legend
:
{
show
:
true
}
},
{
id
:
3
,
type
:
'graph'
,
gridPos
:
{
x
:
0
,
y
:
4
,
w
:
12
,
h
:
2
},
legend
:
{
show
:
false
}
},
{
id
:
4
,
type
:
'graph'
,
gridPos
:
{
x
:
12
,
y
:
4
,
w
:
12
,
h
:
2
},
legend
:
{
show
:
false
}
},
],
};
model
=
new
DashboardModel
(
data
);
});
it
(
'toggleLegendsForAll should toggle all legends on on first execution'
,
()
=>
{
model
.
toggleLegendsForAll
();
const
legendsOn
=
model
.
panels
.
filter
(
panel
=>
panel
.
legend
.
show
===
true
);
expect
(
legendsOn
.
length
).
toBe
(
3
);
});
it
(
'toggleLegendsForAll should toggle all legends off on second execution'
,
()
=>
{
model
.
toggleLegendsForAll
();
model
.
toggleLegendsForAll
();
const
legendsOn
=
model
.
panels
.
filter
(
panel
=>
panel
.
legend
.
show
===
true
);
expect
(
legendsOn
.
length
).
toBe
(
0
);
});
});
});
public/app/features/dashboard/state/DashboardModel.ts
View file @
46fa09fd
...
...
@@ -917,4 +917,18 @@ export class DashboardModel {
}
}
}
toggleLegendsForAll
()
{
const
panels
=
this
.
panels
.
filter
(
panel
=>
{
return
panel
.
legend
!==
undefined
&&
panel
.
legend
!==
null
;
});
// determine if more panels are displaying legends or not
const
onCount
=
panels
.
filter
(
panel
=>
panel
.
legend
.
show
).
length
;
const
offCount
=
panels
.
length
-
onCount
;
const
panelLegendsOn
=
onCount
>=
offCount
;
panels
.
forEach
(
panel
=>
{
panel
.
legend
.
show
=
!
panelLegendsOn
;
panel
.
render
();
});
}
}
public/app/features/dashboard/state/PanelModel.ts
View file @
46fa09fd
...
...
@@ -106,6 +106,7 @@ export class PanelModel {
events
:
Emitter
;
cacheTimeout
?:
any
;
cachedPluginOptions
?:
any
;
legend
?:
{
show
:
boolean
};
constructor
(
model
)
{
this
.
events
=
new
Emitter
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment