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
cfe81510
Unverified
Commit
cfe81510
authored
Aug 07, 2018
by
Marcus Efraimsson
Committed by
GitHub
Aug 07, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #12796 from dehrax/12768-panel-heights
WIP: Fit panels to screen height
parents
f43735ac
2ad35821
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
51 additions
and
7 deletions
+51
-7
public/app/core/services/keybindingSrv.ts
+16
-1
public/app/features/dashboard/dashboard_ctrl.ts
+2
-2
public/app/features/dashboard/dashboard_model.ts
+29
-1
public/app/routes/dashboard_loaders.ts
+3
-2
public/sass/pages/_dashboard.scss
+1
-1
No files found.
public/app/core/services/keybindingSrv.ts
View file @
cfe81510
...
...
@@ -15,7 +15,14 @@ export class KeybindingSrv {
timepickerOpen
=
false
;
/** @ngInject */
constructor
(
private
$rootScope
,
private
$location
,
private
datasourceSrv
,
private
timeSrv
,
private
contextSrv
)
{
constructor
(
private
$rootScope
,
private
$location
,
private
datasourceSrv
,
private
timeSrv
,
private
contextSrv
,
private
$route
)
{
// clear out all shortcuts on route change
$rootScope
.
$on
(
'$routeChangeSuccess'
,
()
=>
{
Mousetrap
.
reset
();
...
...
@@ -259,6 +266,14 @@ export class KeybindingSrv {
this
.
bind
(
'd v'
,
()
=>
{
appEvents
.
emit
(
'toggle-view-mode'
);
});
//Autofit panels
this
.
bind
(
'd a'
,
()
=>
{
this
.
$location
.
search
(
'autofitpanels'
,
this
.
$location
.
search
().
autofitpanels
?
null
:
true
);
//Force reload
this
.
$route
.
reload
();
});
}
}
...
...
public/app/features/dashboard/dashboard_ctrl.ts
View file @
cfe81510
...
...
@@ -62,6 +62,8 @@ 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
);
...
...
@@ -70,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 @
cfe81510
import
moment
from
'moment'
;
import
_
from
'lodash'
;
import
{
GRID_COLUMN_COUNT
,
REPEAT_DIR_VERTICAL
}
from
'app/core/constants'
;
import
{
GRID_COLUMN_COUNT
,
REPEAT_DIR_VERTICAL
,
GRID_CELL_HEIGHT
,
GRID_CELL_VMARGIN
}
from
'app/core/constants'
;
import
{
DEFAULT_ANNOTATION_COLOR
}
from
'app/core/utils/colors'
;
import
{
Emitter
}
from
'app/core/utils/emitter'
;
import
{
contextSrv
}
from
'app/core/services/context_srv'
;
...
...
@@ -830,4 +830,32 @@ export class DashboardModel {
return
!
_
.
isEqual
(
updated
,
this
.
originalTemplating
);
}
autoFitPanels
(
viewHeight
:
number
)
{
if
(
!
this
.
meta
.
autofitpanels
)
{
return
;
}
const
currentGridHeight
=
Math
.
max
(
...
this
.
panels
.
map
(
panel
=>
{
return
panel
.
gridPos
.
h
+
panel
.
gridPos
.
y
;
})
);
// Consider navbar and submenu controls, padding and margin
let
visibleHeight
=
window
.
innerHeight
-
55
-
20
;
// 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
;
panel
.
gridPos
.
h
=
Math
.
round
(
panel
.
gridPos
.
h
/
scaleFactor
)
||
1
;
});
}
}
public/app/routes/dashboard_loaders.ts
View file @
cfe81510
...
...
@@ -38,9 +38,10 @@ export class LoadDashboardCtrl {
}
}
if
(
$routeParams
.
keepRow
s
)
{
result
.
meta
.
keepRow
s
=
true
;
if
(
$routeParams
.
autofitpanel
s
)
{
result
.
meta
.
autofitpanel
s
=
true
;
}
$scope
.
initDashboard
(
result
,
$scope
);
});
}
...
...
public/sass/pages/_dashboard.scss
View file @
cfe81510
.dashboard-container
{
padding
:
$dashboard-padding
;
padding
:
$dashboard-padding
$dashboard-padding
0
$dashboard-padding
;
width
:
100%
;
min-height
:
100%
;
}
...
...
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