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
624f3a01
Commit
624f3a01
authored
Aug 05, 2018
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor: take submenu into account PR #12796
parent
b1b8a380
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
6 deletions
+11
-6
public/app/features/dashboard/dashboard_ctrl.ts
+1
-2
public/app/features/dashboard/dashboard_model.ts
+10
-4
No files found.
public/app/features/dashboard/dashboard_ctrl.ts
View file @
624f3a01
...
...
@@ -62,6 +62,7 @@ export class DashboardCtrl implements PanelContainer {
.
finally
(()
=>
{
this
.
dashboard
=
dashboard
;
this
.
dashboard
.
processRepeats
();
this
.
dashboard
.
updateSubmenuVisibility
();
this
.
dashboard
.
autoFitPanels
(
window
.
innerHeight
);
this
.
unsavedChangesSrv
.
init
(
dashboard
,
this
.
$scope
);
...
...
@@ -71,8 +72,6 @@ export class DashboardCtrl implements PanelContainer {
this
.
dashboardViewState
=
this
.
dashboardViewStateSrv
.
create
(
this
.
$scope
);
this
.
keybindingSrv
.
setupDashboardBindings
(
this
.
$scope
,
dashboard
);
this
.
dashboard
.
updateSubmenuVisibility
();
this
.
setWindowTitleAndTheme
();
this
.
$scope
.
appEvent
(
'dashboard-initialized'
,
dashboard
);
...
...
public/app/features/dashboard/dashboard_model.ts
View file @
624f3a01
...
...
@@ -836,16 +836,22 @@ export class DashboardModel {
return
;
}
le
t
currentGridHeight
=
Math
.
max
(
cons
t
currentGridHeight
=
Math
.
max
(
...
this
.
panels
.
map
(
panel
=>
{
return
panel
.
gridPos
.
h
+
panel
.
gridPos
.
y
;
})
);
//Consider navbar and submenu controls, padding and margin
//
Consider navbar and submenu controls, padding and margin
let
visibleHeight
=
window
.
innerHeight
-
55
-
20
;
let
visibleGridHeight
=
Math
.
floor
(
visibleHeight
/
(
GRID_CELL_HEIGHT
+
GRID_CELL_VMARGIN
));
let
scaleFactor
=
currentGridHeight
/
visibleGridHeight
;
// Remove submenu if visible
if
(
this
.
meta
.
submenuEnabled
)
{
visibleHeight
-=
50
;
}
const
visibleGridHeight
=
Math
.
floor
(
visibleHeight
/
(
GRID_CELL_HEIGHT
+
GRID_CELL_VMARGIN
));
const
scaleFactor
=
currentGridHeight
/
visibleGridHeight
;
this
.
panels
.
forEach
((
panel
,
i
)
=>
{
panel
.
gridPos
.
y
=
Math
.
round
(
panel
.
gridPos
.
y
/
scaleFactor
)
||
1
;
...
...
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