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
6c1f8b9c
Unverified
Commit
6c1f8b9c
authored
Dec 17, 2020
by
Peter Holmberg
Committed by
GitHub
Dec 17, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ng Alerting: Remove scroll and fix SplitPane limiters (#29906)
* some layout fixes * use built in limiter
parent
d066da42
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
14 deletions
+31
-14
public/app/core/components/SplitPaneWrapper/SplitPaneWrapper.tsx
+4
-6
public/app/features/alerting/NextGenAlertingPage.tsx
+25
-8
public/app/features/alerting/components/AlertingQueryEditor.tsx
+2
-0
No files found.
public/app/core/components/SplitPaneWrapper/SplitPaneWrapper.tsx
View file @
6c1f8b9c
...
...
@@ -76,15 +76,14 @@ export class SplitPaneWrapper extends PureComponent<Props> {
panel toolbar and editor toolbar (~120px). This is to prevent resizing
the preview window beyond the browser window.
*/
const
maxHeight
=
window
.
innerHeight
-
120
;
if
(
Array
.
isArray
(
leftPaneComponents
))
{
return
(
<
SplitPane
split=
"horizontal"
maxSize=
{
maxHeight
}
maxSize=
{
-
200
}
primary=
"first"
size=
{
topPaneSize
<
200
?
200
:
topPaneSize
}
size=
{
topPaneSize
}
pane2Style=
{
{
minHeight
:
0
}
}
resizerClassName=
{
styles
.
resizerH
}
onDragStarted=
{
this
.
onDragStarted
}
...
...
@@ -101,7 +100,6 @@ export class SplitPaneWrapper extends PureComponent<Props> {
render
()
{
const
{
rightPaneVisible
,
rightPaneComponents
,
uiState
}
=
this
.
props
;
// Limit options pane width to 90% of screen.
const
maxWidth
=
window
.
innerWidth
*
0.9
;
const
styles
=
getStyles
(
config
.
theme
);
// Need to handle when width is relative. ie a percentage of the viewport
...
...
@@ -117,8 +115,8 @@ export class SplitPaneWrapper extends PureComponent<Props> {
return
(
<
SplitPane
split=
"vertical"
maxSize=
{
maxWidth
}
size=
{
rightPaneSize
>=
300
?
rightPaneSize
:
300
}
maxSize=
{
-
300
}
size=
{
rightPaneSize
}
primary=
"second"
resizerClassName=
{
styles
.
resizerV
}
onDragStarted=
{
()
=>
(
document
.
body
.
style
.
cursor
=
'col-resize'
)
}
...
...
public/app/features/alerting/NextGenAlertingPage.tsx
View file @
6c1f8b9c
...
...
@@ -66,12 +66,12 @@ class NextGenAlertingPage extends PureComponent<Props, State> {
<
Button
variant=
"destructive"
key=
"discard"
onClick=
{
this
.
onDiscard
}
>
Discard
</
Button
>,
<
Button
variant=
"primary"
key=
"save"
onClick=
{
this
.
onSaveAlert
}
>
Save
</
Button
>,
<
Button
variant=
"secondary"
key=
"test"
onClick=
{
this
.
onTest
}
>
Test
</
Button
>,
<
Button
variant=
"primary"
key=
"save"
onClick=
{
this
.
onSaveAlert
}
>
Save
</
Button
>,
];
}
...
...
@@ -93,6 +93,7 @@ class NextGenAlertingPage extends PureComponent<Props, State> {
actions=
{
this
.
renderToolbarActions
()
}
titlePadding=
"sm"
/>
<
div
className=
{
styles
.
splitPanesWrapper
}
>
<
SplitPaneWrapper
leftPaneComponents=
{
[
<
AlertingQueryPreview
key=
"queryPreview"
queryRunner=
{
queryRunner
}
/>,
...
...
@@ -109,6 +110,7 @@ class NextGenAlertingPage extends PureComponent<Props, State> {
}
/>
</
div
>
</
div
>
);
}
}
...
...
@@ -131,10 +133,25 @@ const mapDispatchToProps: MapDispatchToProps<DispatchProps, OwnProps> = {
export
default
hot
(
module
)(
connect
(
mapStateToProps
,
mapDispatchToProps
)(
NextGenAlertingPage
));
const
getStyles
=
stylesFactory
((
theme
:
GrafanaTheme
)
=>
{
return
{
const
getStyles
=
stylesFactory
((
theme
:
GrafanaTheme
)
=>
({
wrapper
:
css
`
background-color:
${
theme
.
colors
.
dashboardBg
}
;
width: 100%;
height: 100%;
position: fixed;
z-index:
${
theme
.
zIndex
.
sidemenu
}
;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
${
theme
.
colors
.
dashboardBg
}
;
display: flex;
flex-direction: column;
`
,
};
});
splitPanesWrapper
:
css
`
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
position: relative;
`
,
}));
public/app/features/alerting/components/AlertingQueryEditor.tsx
View file @
6c1f8b9c
...
...
@@ -78,10 +78,12 @@ const getStyles = stylesFactory((theme: GrafanaTheme) => {
return
{
wrapper
:
css
`
padding-left:
${
theme
.
spacing
.
md
}
;
height: 100%;
`
,
container
:
css
`
padding:
${
theme
.
spacing
.
md
}
;
background-color:
${
theme
.
colors
.
panelBg
}
;
height: 100%;
`
,
editorWrapper
:
css
`
border: 1px solid
${
theme
.
colors
.
panelBorder
}
;
...
...
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