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
096751b6
Commit
096751b6
authored
Feb 05, 2019
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated add panel related flows
parent
28025695
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
75 additions
and
57 deletions
+75
-57
public/app/features/dashboard/components/AddPanelWidget/AddPanelWidget.tsx
+23
-38
public/app/features/dashboard/components/AddPanelWidget/_AddPanelWidget.scss
+12
-2
public/app/features/dashboard/components/AddPanelWidget/__snapshots__/AddPanelWidget.test.tsx.snap
+10
-5
public/app/features/dashboard/panel_editor/PanelEditor.tsx
+2
-2
public/app/features/dashboard/panel_editor/VisualizationTab.tsx
+20
-2
public/img/icons_dark_theme/icon_advanced.svg
+1
-1
public/img/icons_dark_theme/icon_advanced_active.svg
+1
-1
public/img/icons_dark_theme/icon_alerting.svg
+1
-1
public/img/icons_dark_theme/icon_alerting_active.svg
+1
-1
public/img/icons_dark_theme/icon_query.svg
+1
-1
public/img/icons_dark_theme/icon_query_active.svg
+1
-1
public/img/icons_dark_theme/icon_visualize.svg
+1
-1
public/img/icons_dark_theme/icon_visualize_active.svg
+1
-1
No files found.
public/app/features/dashboard/components/AddPanelWidget/AddPanelWidget.tsx
View file @
096751b6
// Libraries
import
React
from
'react'
;
import
_
from
'lodash'
;
// Utils
import
config
from
'app/core/config'
;
import
store
from
'app/core/store'
;
// Store
import
{
store
as
reduxStore
}
from
'app/store/store'
;
import
{
updateLocation
}
from
'app/core/actions'
;
// Types
import
{
PanelModel
}
from
'../../state'
;
import
{
DashboardModel
}
from
'../../state'
;
import
store
from
'app/core/store'
;
import
{
LS_PANEL_COPY_KEY
}
from
'app/core/constants'
;
import
{
updateLocation
}
from
'app/core/actions'
;
import
{
store
as
reduxStore
}
from
'app/store/store'
;
import
{
LocationUpdate
}
from
'app/types'
;
export
interface
Props
{
panel
:
PanelModel
;
...
...
@@ -17,17 +25,6 @@ export interface State {
copiedPanelPlugins
:
any
[];
}
type
Location
=
{
query
:
{
panelId
:
number
;
edit
:
boolean
;
fullscreen
:
boolean
;
tab
?:
string
;
isVizPickerOpen
?:
boolean
;
};
partial
:
boolean
;
};
export
class
AddPanelWidget
extends
React
.
Component
<
Props
,
State
>
{
constructor
(
props
)
{
super
(
props
);
...
...
@@ -66,10 +63,6 @@ export class AddPanelWidget extends React.Component<Props, State> {
this
.
props
.
dashboard
.
removePanel
(
this
.
props
.
dashboard
.
panels
[
0
]);
}
moveToEdit
(
location
)
{
reduxStore
.
dispatch
(
updateLocation
(
location
));
}
onCreateNewPanel
=
(
tab
=
'queries'
)
=>
{
const
dashboard
=
this
.
props
.
dashboard
;
const
{
gridPos
}
=
this
.
props
.
panel
;
...
...
@@ -83,7 +76,7 @@ export class AddPanelWidget extends React.Component<Props, State> {
dashboard
.
addPanel
(
newPanel
);
dashboard
.
removePanel
(
this
.
props
.
panel
);
let
location
:
Location
=
{
const
location
:
LocationUpdate
=
{
query
:
{
panelId
:
newPanel
.
id
,
edit
:
true
,
...
...
@@ -93,18 +86,11 @@ export class AddPanelWidget extends React.Component<Props, State> {
};
if
(
tab
===
'visualization'
)
{
location
=
{
...
location
,
query
:
{
...
location
.
query
,
tab
:
'visualization'
,
isVizPickerOpen
:
true
,
},
};
this
.
moveToEdit
(
location
);
}
else
{
this
.
moveToEdit
(
location
);
location
.
query
.
tab
=
'visualization'
;
location
.
query
.
openVizPicker
=
true
;
}
reduxStore
.
dispatch
(
updateLocation
(
location
));
};
onPasteCopiedPanel
=
panelPluginInfo
=>
{
...
...
@@ -162,28 +148,27 @@ export class AddPanelWidget extends React.Component<Props, State> {
<
div
className=
"add-panel-widget"
>
<
div
className=
"add-panel-widget__header grid-drag-handle"
>
<
i
className=
"gicon gicon-add-panel"
/>
<
span
className=
"add-panel-widget__title"
>
New Panel
</
span
>
<
button
className=
"add-panel-widget__close"
onClick=
{
this
.
handleCloseAddPanel
}
>
<
i
className=
"fa fa-close"
/>
</
button
>
</
div
>
<
div
className=
"add-panel-widget__btn-container"
>
<
div
className=
"add-panel-widget__create"
>
{
this
.
renderOptionLink
(
'queries'
,
'Add
q
uery'
,
this
.
onCreateNewPanel
)
}
{
this
.
renderOptionLink
(
'visualization'
,
'Choose
Panel type
'
,
()
=>
{
this
.
renderOptionLink
(
'queries'
,
'Add
Q
uery'
,
this
.
onCreateNewPanel
)
}
{
this
.
renderOptionLink
(
'visualization'
,
'Choose
Visualization
'
,
()
=>
this
.
onCreateNewPanel
(
'visualization'
)
)
}
</
div
>
<
div
className=
"add-panel-widget__actions"
>
<
div
className=
"add-panel-widget__action"
onClick=
{
this
.
onCreateNewRow
}
>
Convert to row
</
div
>
<
button
className=
"btn btn-inverse add-panel-widget__action"
onClick=
{
this
.
onCreateNewRow
}
>
Convert to row
</
button
>
{
copiedPanelPlugins
.
length
===
1
&&
(
<
div
className=
"add-panel-widget__action"
<
button
className=
"
btn btn-inverse
add-panel-widget__action"
onClick=
{
()
=>
this
.
onPasteCopiedPanel
(
copiedPanelPlugins
[
0
])
}
>
Paste copied panel
</
div
>
</
button
>
)
}
</
div
>
</
div
>
...
...
public/app/features/dashboard/components/AddPanelWidget/_AddPanelWidget.scss
View file @
096751b6
...
...
@@ -14,6 +14,9 @@
align-items
:
center
;
width
:
100%
;
cursor
:
move
;
background
:
$page-header-bg
;
box-shadow
:
$page-header-shadow
;
border-bottom
:
1px
solid
$page-header-border-color
;
.gicon
{
font-size
:
30px
;
...
...
@@ -26,9 +29,15 @@
}
}
.add-panel-widget__title
{
font-size
:
$font-size-md
;
font-weight
:
$font-weight-semi-bold
;
margin-right
:
$spacer
*
2
;
}
.add-panel-widget__link
{
margin
:
0
8px
;
width
:
15
0
px
;
width
:
15
4
px
;
}
.add-panel-widget__icon
{
...
...
@@ -54,6 +63,8 @@
.add-panel-widget__create
{
display
:
inherit
;
margin-bottom
:
24px
;
// this is to have the big button appear centered
margin-top
:
55px
;
}
.add-panel-widget__actions
{
...
...
@@ -61,7 +72,6 @@
}
.add-panel-widget__action
{
cursor
:
pointer
;
margin
:
0
4px
;
}
...
...
public/app/features/dashboard/components/AddPanelWidget/__snapshots__/AddPanelWidget.test.tsx.snap
View file @
096751b6
...
...
@@ -13,6 +13,11 @@ exports[`Render should render component 1`] = `
<i
className="gicon gicon-add-panel"
/>
<span
className="add-panel-widget__title"
>
New Panel
</span>
<button
className="add-panel-widget__close"
onClick={[Function]}
...
...
@@ -42,7 +47,7 @@ exports[`Render should render component 1`] = `
/>
</div>
<span>
Add
q
uery
Add
Q
uery
</span>
</a>
</div>
...
...
@@ -60,7 +65,7 @@ exports[`Render should render component 1`] = `
/>
</div>
<span>
Choose
Panel type
Choose
Visualization
</span>
</a>
</div>
...
...
@@ -68,12 +73,12 @@ exports[`Render should render component 1`] = `
<div
className="add-panel-widget__actions"
>
<
div
className="add-panel-widget__action"
<
button
className="
btn btn-inverse
add-panel-widget__action"
onClick={[Function]}
>
Convert to row
</
div
>
</
button
>
</div>
</div>
</div>
...
...
public/app/features/dashboard/panel_editor/PanelEditor.tsx
View file @
096751b6
...
...
@@ -2,7 +2,7 @@ import React, { PureComponent } from 'react';
import
classNames
from
'classnames'
;
import
{
QueriesTab
}
from
'./QueriesTab'
;
import
{
VisualizationTab
}
from
'./VisualizationTab'
;
import
VisualizationTab
from
'./VisualizationTab'
;
import
{
GeneralTab
}
from
'./GeneralTab'
;
import
{
AlertTab
}
from
'../../alerting/AlertTab'
;
...
...
@@ -38,7 +38,7 @@ export class PanelEditor extends PureComponent<PanelEditorProps> {
onChangeTab
=
(
tab
:
PanelEditorTab
)
=>
{
store
.
dispatch
(
updateLocation
({
query
:
{
tab
:
tab
.
id
},
query
:
{
tab
:
tab
.
id
,
openVizPicker
:
null
},
partial
:
true
,
})
);
...
...
public/app/features/dashboard/panel_editor/VisualizationTab.tsx
View file @
096751b6
...
...
@@ -3,7 +3,9 @@ import React, { PureComponent } from 'react';
// Utils & Services
import
{
AngularComponent
,
getAngularLoader
}
from
'app/core/services/AngularLoader'
;
import
{
store
}
from
'app/store/store'
;
import
{
connectWithStore
}
from
'app/core/utils/connectWithReduxStore'
;
import
{
StoreState
}
from
'app/types'
;
import
{
updateLocation
}
from
'app/core/actions'
;
// Components
import
{
EditorTabBody
,
EditorToolbarView
}
from
'./EditorTabBody'
;
...
...
@@ -22,6 +24,8 @@ interface Props {
plugin
:
PanelPlugin
;
angularPanel
?:
AngularComponent
;
onTypeChanged
:
(
newType
:
PanelPlugin
)
=>
void
;
updateLocation
:
typeof
updateLocation
;
urlOpenVizPicker
:
boolean
;
}
interface
State
{
...
...
@@ -39,7 +43,7 @@ export class VisualizationTab extends PureComponent<Props, State> {
super
(
props
);
this
.
state
=
{
isVizPickerOpen
:
store
.
getState
().
location
.
query
.
isVizPickerOpen
===
true
,
isVizPickerOpen
:
this
.
props
.
urlOpenVizPicker
,
searchQuery
:
''
,
scrollTop
:
0
,
};
...
...
@@ -150,6 +154,10 @@ export class VisualizationTab extends PureComponent<Props, State> {
};
onCloseVizPicker
=
()
=>
{
if
(
this
.
props
.
urlOpenVizPicker
)
{
this
.
props
.
updateLocation
({
query
:
{
openVizPicker
:
null
},
partial
:
true
});
}
this
.
setState
({
isVizPickerOpen
:
false
});
};
...
...
@@ -237,3 +245,13 @@ export class VisualizationTab extends PureComponent<Props, State> {
);
}
}
const
mapStateToProps
=
(
state
:
StoreState
)
=>
({
urlOpenVizPicker
:
!!
state
.
location
.
query
.
openVizPicker
});
const
mapDispatchToProps
=
{
updateLocation
};
export
default
connectWithStore
(
VisualizationTab
,
mapStateToProps
,
mapDispatchToProps
);
public/img/icons_dark_theme/icon_advanced.svg
View file @
096751b6
...
...
@@ -4,7 +4,7 @@
<svg
version=
"1.1"
id=
"Layer_1"
xmlns=
"http://www.w3.org/2000/svg"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
x=
"0px"
y=
"0px"
width=
"121px"
height=
"100px"
viewBox=
"0 0 121 100"
style=
"enable-background:new 0 0 100 100;"
xml:space=
"preserve"
>
<style
type=
"text/css"
>
.st0{fill:#
0A0A0C
;}
.st0{fill:#
161719
;}
.st1{fill:#E3E2E2;}
</style>
<g>
...
...
public/img/icons_dark_theme/icon_advanced_active.svg
View file @
096751b6
...
...
@@ -5,7 +5,7 @@
width=
"121px"
height=
"100px"
viewBox=
"0 0 121 100"
style=
"enable-background:new 0 0 121 100;"
xml:space=
"preserve"
>
<style
type=
"text/css"
>
.st0{fill:url(#SVGID_1_);}
.st1{fill:#
0A0A0C
;}
.st1{fill:#
161719
;}
.st2{fill:url(#SVGID_2_);}
.st3{fill:url(#SVGID_3_);}
.st4{fill:url(#SVGID_4_);}
...
...
public/img/icons_dark_theme/icon_alerting.svg
View file @
096751b6
...
...
@@ -4,7 +4,7 @@
<svg
version=
"1.1"
id=
"Layer_1"
xmlns=
"http://www.w3.org/2000/svg"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
x=
"0px"
y=
"0px"
width=
"121px"
height=
"100px"
viewBox=
"0 0 121 100"
style=
"enable-background:new 0 0 100 100;"
xml:space=
"preserve"
>
<style
type=
"text/css"
>
.st0{fill:#
0A0A0C
;}
.st0{fill:#
161719
;}
.st1{fill:#E3E2E2;}
</style>
<g>
...
...
public/img/icons_dark_theme/icon_alerting_active.svg
View file @
096751b6
...
...
@@ -5,7 +5,7 @@
width=
"121px"
height=
"100px"
viewBox=
"0 0 121 100"
style=
"enable-background:new 0 0 121 100;"
xml:space=
"preserve"
>
<style
type=
"text/css"
>
.st0{fill:url(#SVGID_1_);}
.st1{fill:#
0A0A0C
;}
.st1{fill:#
161719
;}
.st2{fill:url(#SVGID_2_);}
.st3{fill:url(#SVGID_3_);}
</style>
...
...
public/img/icons_dark_theme/icon_query.svg
View file @
096751b6
...
...
@@ -4,7 +4,7 @@
<svg
version=
"1.1"
id=
"Layer_1"
xmlns=
"http://www.w3.org/2000/svg"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
x=
"0px"
y=
"0px"
width=
"121px"
height=
"100px"
viewBox=
"0 0 121 100"
style=
"enable-background:new 0 0 100 100;"
xml:space=
"preserve"
>
<style
type=
"text/css"
>
.st0{fill:#
0A0A0C
;}
.st0{fill:#
161719
;}
.st1{fill:#E3E2E2;}
</style>
<g>
...
...
public/img/icons_dark_theme/icon_query_active.svg
View file @
096751b6
...
...
@@ -5,7 +5,7 @@
width=
"121px"
height=
"100px"
viewBox=
"0 0 121 100"
style=
"enable-background:new 0 0 121 100;"
xml:space=
"preserve"
>
<style
type=
"text/css"
>
.st0{fill:url(#SVGID_1_);}
.st1{fill:#
0A0A0C
;}
.st1{fill:#
161719
;}
.st2{fill:url(#SVGID_2_);}
.st3{fill:url(#SVGID_3_);}
.st4{fill:url(#SVGID_4_);}
...
...
public/img/icons_dark_theme/icon_visualize.svg
View file @
096751b6
...
...
@@ -4,7 +4,7 @@
<svg
version=
"1.1"
id=
"Layer_1"
xmlns=
"http://www.w3.org/2000/svg"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
x=
"0px"
y=
"0px"
width=
"121px"
height=
"100px"
viewBox=
"0 0 121 100"
style=
"enable-background:new 0 0 100 100;"
xml:space=
"preserve"
>
<style
type=
"text/css"
>
.st0{fill:#
0A0A0C
;}
.st0{fill:#
161719
;}
.st1{fill:#E3E2E2;}
</style>
<path
class=
"st0"
d=
"M94.3,50C94.3,25.6,74.4,5.7,50,5.7S5.7,25.6,5.7,50S25.6,94.3,50,94.3S94.3,74.4,94.3,50z"
/>
...
...
public/img/icons_dark_theme/icon_visualize_active.svg
View file @
096751b6
...
...
@@ -5,7 +5,7 @@
width=
"121px"
height=
"100px"
viewBox=
"0 0 121 100"
style=
"enable-background:new 0 0 121 100;"
xml:space=
"preserve"
>
<style
type=
"text/css"
>
.st0{fill:url(#SVGID_1_);}
.st1{fill:#
0A0A0C
;}
.st1{fill:#
161719
;}
.st2{fill:url(#SVGID_2_);}
.st3{fill:url(#SVGID_3_);}
</style>
...
...
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