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
ae5bc366
Commit
ae5bc366
authored
Dec 10, 2018
by
Johannes Schill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Start adding keyboard navigation to VizPicker
parent
74b3a509
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
105 additions
and
18 deletions
+105
-18
public/app/features/dashboard/dashgrid/VizTypePicker.tsx
+59
-17
public/app/features/dashboard/dashgrid/VizTypePickerPlugin.tsx
+34
-0
public/sass/components/_panel_editor.scss
+12
-1
No files found.
public/app/features/dashboard/dashgrid/VizTypePicker.tsx
View file @
ae5bc366
import
React
,
{
PureComponent
}
from
'react'
;
import
classNames
from
'classnames'
;
import
_
from
'lodash'
;
import
config
from
'app/core/config'
;
import
{
PanelPlugin
}
from
'app/types/plugins'
;
import
VizTypePickerPlugin
from
'./VizTypePickerPlugin'
;
interface
Props
{
current
:
PanelPlugin
;
...
...
@@ -12,6 +12,7 @@ interface Props {
interface
State
{
searchQuery
:
string
;
selected
:
number
;
}
export
class
VizTypePicker
extends
PureComponent
<
Props
,
State
>
{
...
...
@@ -23,9 +24,56 @@ export class VizTypePicker extends PureComponent<Props, State> {
this
.
state
=
{
searchQuery
:
''
,
selected
:
0
,
};
}
get
filteredPluginListCount
()
{
const
filteredPluginList
=
this
.
getFilteredPluginList
();
return
filteredPluginList
.
length
;
}
goRight
=
()
=>
{
const
maxArray
=
this
.
filteredPluginListCount
-
1
;
const
nextIndex
=
this
.
state
.
selected
>=
maxArray
?
0
:
this
.
state
.
selected
+
1
;
this
.
setState
({
selected
:
nextIndex
,
});
};
goLeft
=
()
=>
{
const
maxArray
=
this
.
filteredPluginListCount
-
1
;
const
nextIndex
=
this
.
state
.
selected
<=
0
?
maxArray
:
this
.
state
.
selected
-
1
;
this
.
setState
({
selected
:
nextIndex
,
});
};
onKeydown
=
(
evt
:
KeyboardEvent
)
=>
{
if
(
evt
.
key
===
'ArrowRight'
||
evt
.
key
===
'ArrowDown'
)
{
this
.
goRight
();
}
if
(
evt
.
key
===
'ArrowLeft'
||
evt
.
key
===
'ArrowUp'
)
{
this
.
goLeft
();
}
if
(
evt
.
key
===
'Enter'
)
{
const
filteredPluginList
=
this
.
getFilteredPluginList
();
this
.
props
.
onTypeChanged
(
filteredPluginList
[
this
.
state
.
selected
]);
}
};
componentDidMount
()
{
setTimeout
(()
=>
{
this
.
searchInput
.
focus
();
},
300
);
document
.
addEventListener
(
'keydown'
,
this
.
onKeydown
);
}
componentWillUnmount
()
{
document
.
removeEventListener
(
'keydown'
,
this
.
onKeydown
);
}
getPanelPlugins
(
filter
):
PanelPlugin
[]
{
const
panels
=
_
.
chain
(
config
.
panels
)
.
filter
({
hideFromList
:
false
})
...
...
@@ -37,25 +85,19 @@ export class VizTypePicker extends PureComponent<Props, State> {
}
renderVizPlugin
=
(
plugin
:
PanelPlugin
,
index
:
number
)
=>
{
const
cssClass
=
classNames
({
'viz-picker__item'
:
true
,
'viz-picker__item--selected'
:
plugin
.
id
===
this
.
props
.
current
.
id
,
});
const
isSelected
=
this
.
state
.
selected
===
index
;
const
isCurrent
=
plugin
.
id
===
this
.
props
.
current
.
id
;
return
(
<
div
key=
{
index
}
className=
{
cssClass
}
onClick=
{
()
=>
this
.
props
.
onTypeChanged
(
plugin
)
}
title=
{
plugin
.
name
}
>
<
div
className=
"viz-picker__item-name"
>
{
plugin
.
name
}
</
div
>
<
img
className=
"viz-picker__item-img"
src=
{
plugin
.
info
.
logos
.
small
}
/>
</
div
>
<
VizTypePickerPlugin
key=
{
plugin
.
id
}
isSelected=
{
isSelected
}
isCurrent=
{
isCurrent
}
plugin=
{
plugin
}
onClick=
{
()
=>
this
.
props
.
onTypeChanged
(
plugin
)
}
/>
);
};
componentDidMount
()
{
setTimeout
(()
=>
{
this
.
searchInput
.
focus
();
},
300
);
}
getFilteredPluginList
=
():
PanelPlugin
[]
=>
{
const
{
searchQuery
}
=
this
.
state
;
const
regex
=
new
RegExp
(
searchQuery
,
'i'
);
...
...
@@ -73,6 +115,7 @@ export class VizTypePicker extends PureComponent<Props, State> {
this
.
setState
(
prevState
=>
({
...
prevState
,
searchQuery
:
value
,
selected
:
0
,
}));
};
...
...
@@ -102,7 +145,6 @@ export class VizTypePicker extends PureComponent<Props, State> {
{
this
.
renderFilters
()
}
<
div
className=
"gf-form--grow"
/>
</
div
>
<
div
className=
"viz-picker"
>
{
filteredPluginList
.
map
(
this
.
renderVizPlugin
)
}
</
div
>
</>
);
...
...
public/app/features/dashboard/dashgrid/VizTypePickerPlugin.tsx
0 → 100644
View file @
ae5bc366
import
React
from
'react'
;
import
classNames
from
'classnames'
;
interface
Props
{
isSelected
:
boolean
;
isCurrent
:
boolean
;
plugin
:
any
;
onClick
:
()
=>
void
;
}
const
VizTypePickerPlugin
=
React
.
memo
(
({
isSelected
,
isCurrent
,
plugin
,
onClick
}:
Props
)
=>
{
const
cssClass
=
classNames
({
'viz-picker__item'
:
true
,
'viz-picker__item--selected'
:
isSelected
,
'viz-picker__item--current'
:
isCurrent
,
});
return
(
<
div
className=
{
cssClass
}
onClick=
{
onClick
}
title=
{
plugin
.
name
}
>
<
div
className=
"viz-picker__item-name"
>
{
plugin
.
name
}
</
div
>
<
img
className=
"viz-picker__item-img"
src=
{
plugin
.
info
.
logos
.
small
}
/>
</
div
>
);
},
(
prevProps
,
nextProps
)
=>
{
if
(
prevProps
.
isSelected
===
nextProps
.
isSelected
&&
prevProps
.
isCurrent
===
nextProps
.
isCurrent
)
{
return
true
;
}
return
false
;
}
);
export
default
VizTypePickerPlugin
;
public/sass/components/_panel_editor.scss
View file @
ae5bc366
...
...
@@ -163,7 +163,7 @@
border
:
$panel-editor-viz-item-border-hover
;
}
&
--
selected
{
&
--
current
{
box-shadow
:
0
0
6px
$orange
;
border
:
1px
solid
$orange
;
...
...
@@ -173,6 +173,17 @@
background
:
$panel-editor-viz-item-bg-hover-active
;
}
}
&
--selected
{
box-shadow
:
0
0
6px
$purple
;
border
:
1px
solid
$purple
;
&
:hover
{
box-shadow
:
0
0
6px
$purple
;
border
:
1px
solid
$purple
;
background
:
$panel-editor-viz-item-bg-hover-active
;
}
}
}
.viz-picker__item-name
{
...
...
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