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
9cb49d14
Commit
9cb49d14
authored
Jan 17, 2019
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made scrollbar have scrollTop and setScrollTop props so we can control scroll position
parent
bc956057
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
68 additions
and
25 deletions
+68
-25
packages/grafana-ui/src/components/CustomScrollbar/CustomScrollbar.tsx
+33
-0
public/app/features/dashboard/panel_editor/EditorTabBody.tsx
+4
-2
public/app/features/dashboard/panel_editor/QueriesTab.tsx
+31
-23
No files found.
packages/grafana-ui/src/components/CustomScrollbar/CustomScrollbar.tsx
View file @
9cb49d14
import
React
,
{
PureComponent
}
from
'react'
;
import
_
from
'lodash'
;
import
Scrollbars
from
'react-custom-scrollbars'
;
interface
Props
{
...
...
@@ -8,6 +9,8 @@ interface Props {
autoHideDuration
?:
number
;
autoMaxHeight
?:
string
;
hideTracksWhenNotNeeded
?:
boolean
;
scrollTop
?:
number
;
setScrollTop
:
(
value
:
React
.
MouseEvent
<
HTMLElement
>
)
=>
void
;
}
/**
...
...
@@ -21,13 +24,43 @@ export class CustomScrollbar extends PureComponent<Props> {
autoHideDuration
:
200
,
autoMaxHeight
:
'100%'
,
hideTracksWhenNotNeeded
:
false
,
scrollTop
:
0
,
setScrollTop
:
()
=>
{},
};
private
ref
:
React
.
RefObject
<
Scrollbars
>
;
constructor
(
props
:
Props
)
{
super
(
props
);
this
.
ref
=
React
.
createRef
<
Scrollbars
>
();
}
updateScroll
()
{
const
ref
=
this
.
ref
.
current
;
if
(
ref
&&
!
_
.
isNil
(
this
.
props
.
scrollTop
))
{
if
(
this
.
props
.
scrollTop
>
10000
)
{
ref
.
scrollToBottom
();
}
else
{
ref
.
scrollTop
(
this
.
props
.
scrollTop
);
}
}
}
componentDidMount
()
{
this
.
updateScroll
();
}
componentDidUpdate
()
{
this
.
updateScroll
();
}
render
()
{
const
{
customClassName
,
children
,
autoMaxHeight
}
=
this
.
props
;
return
(
<
Scrollbars
ref=
{
this
.
ref
}
className=
{
customClassName
}
autoHeight=
{
true
}
// These autoHeightMin & autoHeightMax options affect firefox and chrome differently.
...
...
public/app/features/dashboard/panel_editor/EditorTabBody.tsx
View file @
9cb49d14
...
...
@@ -10,6 +10,8 @@ interface Props {
heading
:
string
;
renderToolbar
?:
()
=>
JSX
.
Element
;
toolbarItems
?:
EditorToolbarView
[];
scrollTop
?:
number
;
setScrollTop
?:
(
value
:
React
.
MouseEvent
<
HTMLElement
>
)
=>
void
;
}
export
interface
EditorToolbarView
{
...
...
@@ -103,7 +105,7 @@ export class EditorTabBody extends PureComponent<Props, State> {
}
render
()
{
const
{
children
,
renderToolbar
,
heading
,
toolbarItems
}
=
this
.
props
;
const
{
children
,
renderToolbar
,
heading
,
toolbarItems
,
scrollTop
,
setScrollTop
}
=
this
.
props
;
const
{
openView
,
fadeIn
,
isOpen
}
=
this
.
state
;
return
(
...
...
@@ -119,7 +121,7 @@ export class EditorTabBody extends PureComponent<Props, State> {
)
}
</
div
>
<
div
className=
"panel-editor__scroll"
>
<
CustomScrollbar
autoHide=
{
false
}
>
<
CustomScrollbar
autoHide=
{
false
}
scrollTop=
{
scrollTop
}
setScrollTop=
{
setScrollTop
}
>
<
div
className=
"panel-editor__content"
>
<
FadeIn
in=
{
isOpen
}
duration=
{
200
}
unmountOnExit=
{
true
}
>
{
openView
&&
this
.
renderOpenView
(
openView
)
}
...
...
public/app/features/dashboard/panel_editor/QueriesTab.tsx
View file @
9cb49d14
...
...
@@ -32,6 +32,7 @@ interface State {
isLoadingHelp
:
boolean
;
isPickerOpen
:
boolean
;
isAddingMixed
:
boolean
;
scrollTop
:
number
;
}
export
class
QueriesTab
extends
PureComponent
<
Props
,
State
>
{
...
...
@@ -44,6 +45,7 @@ export class QueriesTab extends PureComponent<Props, State> {
helpContent
:
null
,
isPickerOpen
:
false
,
isAddingMixed
:
false
,
scrollTop
:
0
,
};
findCurrentDataSource
():
DataSourceSelectItem
{
...
...
@@ -104,7 +106,7 @@ export class QueriesTab extends PureComponent<Props, State> {
}
this
.
props
.
panel
.
addQuery
();
this
.
forceUpdate
(
);
this
.
setState
({
scrollTop
:
this
.
state
.
scrollTop
+
100000
}
);
};
onRemoveQuery
=
(
query
:
DataQuery
)
=>
{
...
...
@@ -127,9 +129,21 @@ export class QueriesTab extends PureComponent<Props, State> {
};
renderToolbar
=
()
=>
{
const
{
currentDS
}
=
this
.
state
;
const
{
currentDS
,
isAddingMixed
}
=
this
.
state
;
return
<
DataSourcePicker
datasources=
{
this
.
datasources
}
onChange=
{
this
.
onChangeDataSource
}
current=
{
currentDS
}
/>;
return
(
<>
<
DataSourcePicker
datasources=
{
this
.
datasources
}
onChange=
{
this
.
onChangeDataSource
}
current=
{
currentDS
}
/>
<
div
className=
"m-l-2"
>
{
!
isAddingMixed
&&
(
<
button
className=
"btn navbar-button navbar-button--primary"
onClick=
{
this
.
onAddQueryClick
}
>
Add Query
</
button
>
)
}
{
isAddingMixed
&&
this
.
renderMixedPicker
()
}
</
div
>
</>
);
};
renderMixedPicker
=
()
=>
{
...
...
@@ -146,16 +160,21 @@ export class QueriesTab extends PureComponent<Props, State> {
onAddMixedQuery
=
datasource
=>
{
this
.
onAddQuery
({
datasource
:
datasource
.
name
});
this
.
setState
({
isAddingMixed
:
false
});
this
.
setState
({
isAddingMixed
:
false
,
scrollTop
:
this
.
state
.
scrollTop
+
10000
});
};
onMixedPickerBlur
=
()
=>
{
this
.
setState
({
isAddingMixed
:
false
});
};
setScrollTop
=
(
event
:
React
.
MouseEvent
<
HTMLElement
>
)
=>
{
const
target
=
event
.
target
as
HTMLElement
;
this
.
setState
({
scrollTop
:
target
.
scrollTop
});
};
render
()
{
const
{
panel
}
=
this
.
props
;
const
{
currentDS
,
isAddingMixed
}
=
this
.
state
;
const
{
currentDS
,
scrollTop
}
=
this
.
state
;
const
queryInspector
:
EditorToolbarView
=
{
title
:
'Query Inspector'
,
...
...
@@ -169,7 +188,13 @@ export class QueriesTab extends PureComponent<Props, State> {
};
return
(
<
EditorTabBody
heading=
"Queries"
renderToolbar=
{
this
.
renderToolbar
}
toolbarItems=
{
[
queryInspector
,
dsHelp
]
}
>
<
EditorTabBody
heading=
"Data Source"
renderToolbar=
{
this
.
renderToolbar
}
toolbarItems=
{
[
queryInspector
,
dsHelp
]
}
setScrollTop=
{
this
.
setScrollTop
}
scrollTop=
{
scrollTop
}
>
<>
<
div
className=
"query-editor-rows"
>
{
panel
.
targets
.
map
((
query
,
index
)
=>
(
...
...
@@ -185,23 +210,6 @@ export class QueriesTab extends PureComponent<Props, State> {
/>
))
}
</
div
>
<
div
className=
"query-editor-box"
>
<
div
className=
"query-editor-row__header"
>
<
div
className=
"query-editor-row__ref-id"
>
<
i
className=
"fa fa-caret-down"
/>
{
' '
}
<
span
>
{
panel
.
getNextQueryLetter
()
}
</
span
>
</
div
>
<
div
className=
"gf-form"
>
{
!
isAddingMixed
&&
(
<
button
className=
"btn btn-secondary gf-form-btn"
onClick=
{
this
.
onAddQueryClick
}
>
Add Query
</
button
>
)
}
{
isAddingMixed
&&
this
.
renderMixedPicker
()
}
</
div
>
</
div
>
</
div
>
<
PanelOptionsGroup
>
<
QueryOptions
panel=
{
panel
}
datasource=
{
currentDS
}
/>
</
PanelOptionsGroup
>
...
...
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