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
c2c3e150
Commit
c2c3e150
authored
Oct 17, 2018
by
Peter Holmberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hooked up actions
parent
f25a843a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
3 deletions
+49
-3
public/app/features/dashboard/state/actions.ts
+17
-0
public/app/features/datasources/DataSourceDashboards.tsx
+32
-3
No files found.
public/app/features/dashboard/state/actions.ts
View file @
c2c3e150
...
@@ -9,6 +9,8 @@ import {
...
@@ -9,6 +9,8 @@ import {
DashboardAclUpdateDTO
,
DashboardAclUpdateDTO
,
NewDashboardAclItem
,
NewDashboardAclItem
,
}
from
'app/types/acl'
;
}
from
'app/types/acl'
;
import
appEvents
from
'../../../core/app_events'
;
import
{
loadPluginDashboards
}
from
'../../plugins/state/actions'
;
export
enum
ActionTypes
{
export
enum
ActionTypes
{
LoadDashboardPermissions
=
'LOAD_DASHBOARD_PERMISSIONS'
,
LoadDashboardPermissions
=
'LOAD_DASHBOARD_PERMISSIONS'
,
...
@@ -113,3 +115,18 @@ export function addDashboardPermission(dashboardId: number, newItem: NewDashboar
...
@@ -113,3 +115,18 @@ export function addDashboardPermission(dashboardId: number, newItem: NewDashboar
await
dispatch
(
getDashboardPermissions
(
dashboardId
));
await
dispatch
(
getDashboardPermissions
(
dashboardId
));
};
};
}
}
export
function
importDashboard
(
data
,
dashboardTitle
:
string
):
ThunkResult
<
void
>
{
return
async
dispatch
=>
{
await
getBackendSrv
().
post
(
'/api/dashboards/import'
,
data
);
appEvents
.
emit
(
'alert-success'
,
[
'Dashboard Imported'
,
dashboardTitle
]);
dispatch
(
loadPluginDashboards
());
};
}
export
function
removeDashboard
(
uri
:
string
):
ThunkResult
<
void
>
{
return
async
dispatch
=>
{
await
getBackendSrv
().
delete
(
`/api/dashboards/
${
uri
}
`
);
dispatch
(
loadPluginDashboards
());
};
}
public/app/features/datasources/DataSourceDashboards.tsx
View file @
c2c3e150
...
@@ -3,18 +3,23 @@ import { hot } from 'react-hot-loader';
...
@@ -3,18 +3,23 @@ import { hot } from 'react-hot-loader';
import
{
connect
}
from
'react-redux'
;
import
{
connect
}
from
'react-redux'
;
import
PageHeader
from
'app/core/components/PageHeader/PageHeader'
;
import
PageHeader
from
'app/core/components/PageHeader/PageHeader'
;
import
DashboardTable
from
'./DashboardsTable'
;
import
DashboardTable
from
'./DashboardsTable'
;
import
{
NavModel
,
PluginDashboard
}
from
'app/types'
;
import
{
DataSource
,
NavModel
,
PluginDashboard
}
from
'app/types'
;
import
{
getNavModel
}
from
'app/core/selectors/navModel'
;
import
{
getNavModel
}
from
'app/core/selectors/navModel'
;
import
{
getRouteParamsId
}
from
'app/core/selectors/location'
;
import
{
getRouteParamsId
}
from
'app/core/selectors/location'
;
import
{
loadDataSource
}
from
'./state/actions'
;
import
{
loadDataSource
}
from
'./state/actions'
;
import
{
loadPluginDashboards
}
from
'../plugins/state/actions'
;
import
{
loadPluginDashboards
}
from
'../plugins/state/actions'
;
import
{
importDashboard
,
removeDashboard
}
from
'../dashboard/state/actions'
;
import
{
getDataSource
}
from
'./state/selectors'
;
export
interface
Props
{
export
interface
Props
{
navModel
:
NavModel
;
navModel
:
NavModel
;
dashboards
:
PluginDashboard
[];
dashboards
:
PluginDashboard
[];
dataSource
:
DataSource
;
pageId
:
number
;
pageId
:
number
;
importDashboard
:
typeof
importDashboard
;
loadDataSource
:
typeof
loadDataSource
;
loadDataSource
:
typeof
loadDataSource
;
loadPluginDashboards
:
typeof
loadPluginDashboards
;
loadPluginDashboards
:
typeof
loadPluginDashboards
;
removeDashboard
:
typeof
removeDashboard
;
}
}
export
class
DataSourceDashboards
extends
PureComponent
<
Props
>
{
export
class
DataSourceDashboards
extends
PureComponent
<
Props
>
{
...
@@ -25,9 +30,30 @@ export class DataSourceDashboards extends PureComponent<Props> {
...
@@ -25,9 +30,30 @@ export class DataSourceDashboards extends PureComponent<Props> {
this
.
props
.
loadPluginDashboards
();
this
.
props
.
loadPluginDashboards
();
}
}
onImport
=
(
dashboard
,
state
)
=>
{};
onImport
=
(
dashboard
:
PluginDashboard
,
overwrite
:
boolean
)
=>
{
const
{
dataSource
,
importDashboard
}
=
this
.
props
;
const
data
=
{
pluginId
:
dashboard
.
pluginId
,
path
:
dashboard
.
path
,
overwrite
:
overwrite
,
inputs
:
[],
};
if
(
dataSource
)
{
data
.
inputs
.
push
({
name
:
'*'
,
type
:
'datasource'
,
pluginId
:
dataSource
.
type
,
value
:
dataSource
.
name
,
});
}
onRemove
=
dashboard
=>
{};
importDashboard
(
data
,
dashboard
.
title
);
};
onRemove
=
(
dashboard
:
PluginDashboard
)
=>
{
this
.
props
.
removeDashboard
(
dashboard
.
importedUri
);
};
render
()
{
render
()
{
const
{
dashboards
,
navModel
}
=
this
.
props
;
const
{
dashboards
,
navModel
}
=
this
.
props
;
...
@@ -53,12 +79,15 @@ function mapStateToProps(state) {
...
@@ -53,12 +79,15 @@ function mapStateToProps(state) {
navModel
:
getNavModel
(
state
.
navIndex
,
`datasource-dashboards-
${
pageId
}
`
),
navModel
:
getNavModel
(
state
.
navIndex
,
`datasource-dashboards-
${
pageId
}
`
),
pageId
:
pageId
,
pageId
:
pageId
,
dashboards
:
state
.
plugins
.
dashboards
,
dashboards
:
state
.
plugins
.
dashboards
,
dataSource
:
getDataSource
(
state
.
dataSources
,
pageId
),
};
};
}
}
const
mapDispatchToProps
=
{
const
mapDispatchToProps
=
{
importDashboard
,
loadDataSource
,
loadDataSource
,
loadPluginDashboards
,
loadPluginDashboards
,
removeDashboard
,
};
};
export
default
hot
(
module
)(
connect
(
mapStateToProps
,
mapDispatchToProps
)(
DataSourceDashboards
));
export
default
hot
(
module
)(
connect
(
mapStateToProps
,
mapDispatchToProps
)(
DataSourceDashboards
));
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