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
4ecd33c7
Commit
4ecd33c7
authored
Oct 08, 2018
by
Peter Holmberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed nav model
parent
ed349075
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
232 additions
and
11 deletions
+232
-11
public/app/features/datasources/EditDataSourcePage.tsx
+90
-0
public/app/features/datasources/state/actions.ts
+25
-2
public/app/features/datasources/state/navModel.ts
+97
-0
public/app/features/datasources/state/reducers.ts
+4
-0
public/app/features/datasources/state/selectors.ts
+9
-0
public/app/routes/routes.ts
+6
-9
public/app/types/datasources.ts
+1
-0
No files found.
public/app/features/datasources/EditDataSourcePage.tsx
0 → 100644
View file @
4ecd33c7
import
React
,
{
PureComponent
}
from
'react'
;
import
{
hot
}
from
'react-hot-loader'
;
import
{
connect
}
from
'react-redux'
;
import
PageHeader
from
'../../core/components/PageHeader/PageHeader'
;
import
{
DataSource
,
NavModel
}
from
'app/types'
;
import
{
loadDataSource
}
from
'./state/actions'
;
import
{
getNavModel
}
from
'../../core/selectors/navModel'
;
import
{
getRouteParamsId
,
getRouteParamsPage
}
from
'../../core/selectors/location'
;
import
{
getDataSourceLoadingNav
}
from
'./state/navModel'
;
import
{
getDataSource
}
from
'./state/selectors'
;
export
interface
Props
{
navModel
:
NavModel
;
dataSource
:
DataSource
;
dataSourceId
:
number
;
pageName
:
string
;
loadDataSource
:
typeof
loadDataSource
;
}
enum
PageTypes
{
Settings
=
'settings'
,
Permissions
=
'permissions'
,
Dashboards
=
'dashboards'
,
}
export
class
EditDataSourcePage
extends
PureComponent
<
Props
>
{
componentDidMount
()
{
this
.
fetchDataSource
();
}
async
fetchDataSource
()
{
await
this
.
props
.
loadDataSource
(
this
.
props
.
dataSourceId
);
}
isValidPage
(
currentPage
)
{
return
(
Object
as
any
).
values
(
PageTypes
).
includes
(
currentPage
);
}
getCurrentPage
()
{
const
currentPage
=
this
.
props
.
pageName
;
return
this
.
isValidPage
(
currentPage
)
?
currentPage
:
PageTypes
.
Settings
;
}
renderPage
()
{
switch
(
this
.
getCurrentPage
())
{
case
PageTypes
.
Settings
:
return
<
div
>
Settings
</
div
>;
case
PageTypes
.
Permissions
:
return
<
div
>
Permissions
</
div
>;
case
PageTypes
.
Dashboards
:
return
<
div
>
Dashboards
</
div
>;
}
return
null
;
}
render
()
{
const
{
navModel
}
=
this
.
props
;
return
(
<
div
>
<
PageHeader
model=
{
navModel
}
/>
<
div
className=
"page-container page-body"
/>
{
this
.
renderPage
()
}
</
div
>
);
}
}
function
mapStateToProps
(
state
)
{
const
pageName
=
getRouteParamsPage
(
state
.
location
)
||
'settings'
;
const
dataSourceId
=
getRouteParamsId
(
state
.
location
);
const
dataSourceLoadingNav
=
getDataSourceLoadingNav
(
pageName
);
return
{
navModel
:
getNavModel
(
state
.
navIndex
,
`datasource-
${
pageName
}
-
${
dataSourceId
}
`
,
dataSourceLoadingNav
),
dataSourceId
:
dataSourceId
,
dataSource
:
getDataSource
(
state
.
dataSources
,
dataSourceId
),
pageName
:
pageName
,
};
}
const
mapDispatchToProps
=
{
loadDataSource
,
};
export
default
hot
(
module
)(
connect
(
mapStateToProps
,
mapDispatchToProps
)(
EditDataSourcePage
));
public/app/features/datasources/state/actions.ts
View file @
4ecd33c7
...
@@ -2,12 +2,14 @@ import { ThunkAction } from 'redux-thunk';
...
@@ -2,12 +2,14 @@ import { ThunkAction } from 'redux-thunk';
import
{
DataSource
,
Plugin
,
StoreState
}
from
'app/types'
;
import
{
DataSource
,
Plugin
,
StoreState
}
from
'app/types'
;
import
{
getBackendSrv
}
from
'../../../core/services/backend_srv'
;
import
{
getBackendSrv
}
from
'../../../core/services/backend_srv'
;
import
{
LayoutMode
}
from
'../../../core/components/LayoutSelector/LayoutSelector'
;
import
{
LayoutMode
}
from
'../../../core/components/LayoutSelector/LayoutSelector'
;
import
{
updateLocation
}
from
'../../../core/actions'
;
import
{
updateLocation
,
updateNavIndex
,
UpdateNavIndexAction
}
from
'../../../core/actions'
;
import
{
UpdateLocationAction
}
from
'../../../core/actions/location'
;
import
{
UpdateLocationAction
}
from
'../../../core/actions/location'
;
import
{
buildNavModel
}
from
'./navModel'
;
export
enum
ActionTypes
{
export
enum
ActionTypes
{
LoadDataSources
=
'LOAD_DATA_SOURCES'
,
LoadDataSources
=
'LOAD_DATA_SOURCES'
,
LoadDataSourceTypes
=
'LOAD_DATA_SOURCE_TYPES'
,
LoadDataSourceTypes
=
'LOAD_DATA_SOURCE_TYPES'
,
LoadDataSource
=
'LOAD_DATA_SOURCE'
,
SetDataSourcesSearchQuery
=
'SET_DATA_SOURCES_SEARCH_QUERY'
,
SetDataSourcesSearchQuery
=
'SET_DATA_SOURCES_SEARCH_QUERY'
,
SetDataSourcesLayoutMode
=
'SET_DATA_SOURCES_LAYOUT_MODE'
,
SetDataSourcesLayoutMode
=
'SET_DATA_SOURCES_LAYOUT_MODE'
,
SetDataSourceTypeSearchQuery
=
'SET_DATA_SOURCE_TYPE_SEARCH_QUERY'
,
SetDataSourceTypeSearchQuery
=
'SET_DATA_SOURCE_TYPE_SEARCH_QUERY'
,
...
@@ -38,11 +40,21 @@ export interface SetDataSourceTypeSearchQueryAction {
...
@@ -38,11 +40,21 @@ export interface SetDataSourceTypeSearchQueryAction {
payload
:
string
;
payload
:
string
;
}
}
export
interface
LoadDataSourceAction
{
type
:
ActionTypes
.
LoadDataSource
;
payload
:
DataSource
;
}
const
dataSourcesLoaded
=
(
dataSources
:
DataSource
[]):
LoadDataSourcesAction
=>
({
const
dataSourcesLoaded
=
(
dataSources
:
DataSource
[]):
LoadDataSourcesAction
=>
({
type
:
ActionTypes
.
LoadDataSources
,
type
:
ActionTypes
.
LoadDataSources
,
payload
:
dataSources
,
payload
:
dataSources
,
});
});
const
dataSourceLoaded
=
(
dataSource
:
DataSource
):
LoadDataSourceAction
=>
({
type
:
ActionTypes
.
LoadDataSource
,
payload
:
dataSource
,
});
const
dataSourceTypesLoaded
=
(
dataSourceTypes
:
Plugin
[]):
LoadDataSourceTypesAction
=>
({
const
dataSourceTypesLoaded
=
(
dataSourceTypes
:
Plugin
[]):
LoadDataSourceTypesAction
=>
({
type
:
ActionTypes
.
LoadDataSourceTypes
,
type
:
ActionTypes
.
LoadDataSourceTypes
,
payload
:
dataSourceTypes
,
payload
:
dataSourceTypes
,
...
@@ -69,7 +81,9 @@ export type Action =
...
@@ -69,7 +81,9 @@ export type Action =
|
SetDataSourcesLayoutModeAction
|
SetDataSourcesLayoutModeAction
|
UpdateLocationAction
|
UpdateLocationAction
|
LoadDataSourceTypesAction
|
LoadDataSourceTypesAction
|
SetDataSourceTypeSearchQueryAction
;
|
SetDataSourceTypeSearchQueryAction
|
LoadDataSourceAction
|
UpdateNavIndexAction
;
type
ThunkResult
<
R
>
=
ThunkAction
<
R
,
StoreState
,
undefined
,
Action
>
;
type
ThunkResult
<
R
>
=
ThunkAction
<
R
,
StoreState
,
undefined
,
Action
>
;
...
@@ -80,6 +94,15 @@ export function loadDataSources(): ThunkResult<void> {
...
@@ -80,6 +94,15 @@ export function loadDataSources(): ThunkResult<void> {
};
};
}
}
export
function
loadDataSource
(
id
:
number
):
ThunkResult
<
void
>
{
return
async
dispatch
=>
{
const
dataSource
=
await
getBackendSrv
().
get
(
`/api/datasources/
${
id
}
`
);
const
pluginInfo
=
await
getBackendSrv
().
get
(
`/api/plugins/
${
dataSource
.
type
}
/settings`
);
dispatch
(
dataSourceLoaded
(
dataSource
));
dispatch
(
updateNavIndex
(
buildNavModel
(
dataSource
,
pluginInfo
)));
};
}
export
function
addDataSource
(
plugin
:
Plugin
):
ThunkResult
<
void
>
{
export
function
addDataSource
(
plugin
:
Plugin
):
ThunkResult
<
void
>
{
return
async
(
dispatch
,
getStore
)
=>
{
return
async
(
dispatch
,
getStore
)
=>
{
await
dispatch
(
loadDataSources
());
await
dispatch
(
loadDataSources
());
...
...
public/app/features/datasources/state/navModel.ts
0 → 100644
View file @
4ecd33c7
import
{
DataSource
,
NavModel
,
NavModelItem
,
PluginMeta
}
from
'app/types'
;
export
function
buildNavModel
(
dataSource
:
DataSource
,
pluginMeta
:
PluginMeta
):
NavModelItem
{
const
navModel
=
{
img
:
pluginMeta
.
info
.
logos
.
large
,
id
:
'datasource-'
+
dataSource
.
id
,
subTitle
:
`Type:
${
pluginMeta
.
name
}
`
,
url
:
''
,
text
:
dataSource
.
name
,
breadcrumbs
:
[{
title
:
'Data Sources'
,
url
:
'datasources'
}],
children
:
[
{
active
:
false
,
icon
:
'fa fa-fw fa-sliders'
,
id
:
`datasource-settings-
${
dataSource
.
id
}
`
,
text
:
'Settings'
,
url
:
`datasources/edit/
${
dataSource
.
id
}
/settings`
,
},
{
active
:
false
,
icon
:
'fa fa-fw fa-sliders'
,
id
:
`datasource-permissions-
${
dataSource
.
id
}
`
,
text
:
'Permissions'
,
url
:
`datasources/edit/
${
dataSource
.
id
}
/permissions`
,
},
],
};
if
(
pluginMeta
.
includes
&&
pluginMeta
.
includes
.
length
>
0
)
{
navModel
.
children
.
push
({
active
:
false
,
icon
:
'gicon gicon-dashboard'
,
id
:
`datasource-dashboards-
${
dataSource
.
id
}
`
,
text
:
'Dashboards'
,
url
:
`datasources/edit/
${
dataSource
.
id
}
/dashboards`
,
});
}
return
navModel
;
}
export
function
getDataSourceLoadingNav
(
pageName
:
string
):
NavModel
{
const
main
=
buildNavModel
(
{
access
:
''
,
basicAuth
:
false
,
database
:
''
,
id
:
1
,
isDefault
:
false
,
jsonData
:
{
authType
:
'credentials'
,
defaultRegion
:
'eu-west-2'
},
name
:
'Loading'
,
orgId
:
1
,
password
:
''
,
readOnly
:
false
,
type
:
'Loading'
,
typeLogoUrl
:
'public/img/icn-datasource.svg'
,
url
:
''
,
user
:
''
,
},
{
id
:
'1'
,
name
:
''
,
info
:
{
author
:
{
name
:
''
,
url
:
''
,
},
description
:
''
,
links
:
[
''
],
logos
:
{
large
:
''
,
small
:
''
,
},
screenshots
:
''
,
updated
:
''
,
version
:
''
,
},
includes
:
[{
type
:
''
,
name
:
''
,
path
:
''
}],
}
);
let
node
:
NavModelItem
;
// find active page
for
(
const
child
of
main
.
children
)
{
if
(
child
.
id
.
indexOf
(
pageName
)
>
0
)
{
child
.
active
=
true
;
node
=
child
;
break
;
}
}
return
{
main
:
main
,
node
:
node
,
};
}
public/app/features/datasources/state/reducers.ts
View file @
4ecd33c7
...
@@ -4,6 +4,7 @@ import { LayoutModes } from '../../../core/components/LayoutSelector/LayoutSelec
...
@@ -4,6 +4,7 @@ import { LayoutModes } from '../../../core/components/LayoutSelector/LayoutSelec
const
initialState
:
DataSourcesState
=
{
const
initialState
:
DataSourcesState
=
{
dataSources
:
[]
as
DataSource
[],
dataSources
:
[]
as
DataSource
[],
dataSource
:
{}
as
DataSource
,
layoutMode
:
LayoutModes
.
Grid
,
layoutMode
:
LayoutModes
.
Grid
,
searchQuery
:
''
,
searchQuery
:
''
,
dataSourcesCount
:
0
,
dataSourcesCount
:
0
,
...
@@ -16,6 +17,9 @@ export const dataSourcesReducer = (state = initialState, action: Action): DataSo
...
@@ -16,6 +17,9 @@ export const dataSourcesReducer = (state = initialState, action: Action): DataSo
case
ActionTypes
.
LoadDataSources
:
case
ActionTypes
.
LoadDataSources
:
return
{
...
state
,
dataSources
:
action
.
payload
,
dataSourcesCount
:
action
.
payload
.
length
};
return
{
...
state
,
dataSources
:
action
.
payload
,
dataSourcesCount
:
action
.
payload
.
length
};
case
ActionTypes
.
LoadDataSource
:
return
{
...
state
,
dataSource
:
action
.
payload
};
case
ActionTypes
.
SetDataSourcesSearchQuery
:
case
ActionTypes
.
SetDataSourcesSearchQuery
:
return
{
...
state
,
searchQuery
:
action
.
payload
};
return
{
...
state
,
searchQuery
:
action
.
payload
};
...
...
public/app/features/datasources/state/selectors.ts
View file @
4ecd33c7
import
{
DataSource
}
from
'../../../types'
;
export
const
getDataSources
=
state
=>
{
export
const
getDataSources
=
state
=>
{
const
regex
=
new
RegExp
(
state
.
searchQuery
,
'i'
);
const
regex
=
new
RegExp
(
state
.
searchQuery
,
'i'
);
...
@@ -14,6 +16,13 @@ export const getDataSourceTypes = state => {
...
@@ -14,6 +16,13 @@ export const getDataSourceTypes = state => {
});
});
};
};
export
const
getDataSource
=
(
state
,
dataSourceId
):
DataSource
|
null
=>
{
if
(
state
.
dataSource
.
id
===
parseInt
(
dataSourceId
,
10
))
{
return
state
.
dataSource
;
}
return
null
;
};
export
const
getDataSourcesSearchQuery
=
state
=>
state
.
searchQuery
;
export
const
getDataSourcesSearchQuery
=
state
=>
state
.
searchQuery
;
export
const
getDataSourcesLayoutMode
=
state
=>
state
.
layoutMode
;
export
const
getDataSourcesLayoutMode
=
state
=>
state
.
layoutMode
;
export
const
getDataSourcesCount
=
state
=>
state
.
dataSourcesCount
;
export
const
getDataSourcesCount
=
state
=>
state
.
dataSourcesCount
;
public/app/routes/routes.ts
View file @
4ecd33c7
...
@@ -12,6 +12,7 @@ import FolderPermissions from 'app/features/folders/FolderPermissions';
...
@@ -12,6 +12,7 @@ import FolderPermissions from 'app/features/folders/FolderPermissions';
import
DataSourcesListPage
from
'app/features/datasources/DataSourcesListPage'
;
import
DataSourcesListPage
from
'app/features/datasources/DataSourcesListPage'
;
import
NewDataSourcePage
from
'../features/datasources/NewDataSourcePage'
;
import
NewDataSourcePage
from
'../features/datasources/NewDataSourcePage'
;
import
UsersListPage
from
'app/features/users/UsersListPage'
;
import
UsersListPage
from
'app/features/users/UsersListPage'
;
import
EditDataSourcePage
from
'app/features/datasources/EditDataSourcePage'
;
/** @ngInject */
/** @ngInject */
export
function
setupAngularRoutes
(
$routeProvider
,
$locationProvider
)
{
export
function
setupAngularRoutes
(
$routeProvider
,
$locationProvider
)
{
...
@@ -71,15 +72,11 @@ export function setupAngularRoutes($routeProvider, $locationProvider) {
...
@@ -71,15 +72,11 @@ export function setupAngularRoutes($routeProvider, $locationProvider) {
component
:
()
=>
DataSourcesListPage
,
component
:
()
=>
DataSourcesListPage
,
},
},
})
})
.
when
(
'/datasources/edit/:id'
,
{
.
when
(
'/datasources/edit/:id/:page?'
,
{
templateUrl
:
'public/app/features/plugins/partials/ds_edit.html'
,
template
:
'<react-container />'
,
controller
:
'DataSourceEditCtrl'
,
resolve
:
{
controllerAs
:
'ctrl'
,
component
:
()
=>
EditDataSourcePage
,
})
},
.
when
(
'/datasources/edit/:id/dashboards'
,
{
templateUrl
:
'public/app/features/plugins/partials/ds_dashboards.html'
,
controller
:
'DataSourceDashboardsCtrl'
,
controllerAs
:
'ctrl'
,
})
})
.
when
(
'/datasources/new'
,
{
.
when
(
'/datasources/new'
,
{
template
:
'<react-container />'
,
template
:
'<react-container />'
,
...
...
public/app/types/datasources.ts
View file @
4ecd33c7
...
@@ -25,4 +25,5 @@ export interface DataSourcesState {
...
@@ -25,4 +25,5 @@ export interface DataSourcesState {
layoutMode
:
LayoutMode
;
layoutMode
:
LayoutMode
;
dataSourcesCount
:
number
;
dataSourcesCount
:
number
;
dataSourceTypes
:
Plugin
[];
dataSourceTypes
:
Plugin
[];
dataSource
:
DataSource
;
}
}
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