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
026588cb
Commit
026588cb
authored
Oct 29, 2018
by
Peter Holmberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test and some refactoring
parent
ccbff592
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
359 additions
and
69 deletions
+359
-69
public/app/features/org/OrgDetailsPage.test.tsx
+45
-0
public/app/features/org/OrgDetailsPage.tsx
+3
-40
public/app/features/org/OrgPreferences.test.tsx
+28
-0
public/app/features/org/OrgPreferences.tsx
+53
-28
public/app/features/org/OrgProfile.test.tsx
+21
-0
public/app/features/org/OrgProfile.tsx
+1
-1
public/app/features/org/__snapshots__/OrgDetailsPage.test.tsx.snap
+36
-0
public/app/features/org/__snapshots__/OrgPreferences.test.tsx.snap
+125
-0
public/app/features/org/__snapshots__/OrgProfile.test.tsx.snap
+46
-0
public/app/types/acl.ts
+1
-0
No files found.
public/app/features/org/OrgDetailsPage.test.tsx
0 → 100644
View file @
026588cb
import
React
from
'react'
;
import
{
shallow
}
from
'enzyme'
;
import
{
OrgDetailsPage
,
Props
}
from
'./OrgDetailsPage'
;
import
{
NavModel
,
Organization
,
OrganizationPreferences
}
from
'../../types'
;
const
setup
=
(
propOverrides
?:
object
)
=>
{
const
props
:
Props
=
{
preferences
:
{}
as
OrganizationPreferences
,
organization
:
{}
as
Organization
,
navModel
:
{}
as
NavModel
,
loadOrganization
:
jest
.
fn
(),
loadOrganizationPreferences
:
jest
.
fn
(),
loadStarredDashboards
:
jest
.
fn
(),
setOrganizationName
:
jest
.
fn
(),
updateOrganization
:
jest
.
fn
(),
};
Object
.
assign
(
props
,
propOverrides
);
return
shallow
(<
OrgDetailsPage
{
...
props
}
/>);
};
describe
(
'Render'
,
()
=>
{
it
(
'should render component'
,
()
=>
{
const
wrapper
=
setup
();
expect
(
wrapper
).
toMatchSnapshot
();
});
it
(
'should render organization and preferences'
,
()
=>
{
const
wrapper
=
setup
({
organization
:
{
name
:
'Cool org'
,
id
:
1
,
},
preferences
:
{
homeDashboardId
:
1
,
theme
:
'Default'
,
timezone
:
'Default'
,
},
});
expect
(
wrapper
).
toMatchSnapshot
();
});
});
public/app/features/org/OrgDetailsPage.tsx
View file @
026588cb
...
...
@@ -9,30 +9,21 @@ import {
loadOrganization
,
loadOrganizationPreferences
,
setOrganizationName
,
setOrganizationTheme
,
setOrganizationHomeDashboard
,
setOrganizationTimezone
,
updateOrganization
,
updateOrganizationPreferences
,
}
from
'./state/actions'
;
import
{
loadStarredDashboards
}
from
'../dashboard/state/actions'
;
import
{
DashboardAcl
,
NavModel
,
Organization
,
OrganizationPreferences
,
StoreState
}
from
'app/types'
;
import
{
NavModel
,
Organization
,
OrganizationPreferences
,
StoreState
}
from
'app/types'
;
import
{
getNavModel
}
from
'../../core/selectors/navModel'
;
export
interface
Props
{
navModel
:
NavModel
;
organization
:
Organization
;
preferences
:
OrganizationPreferences
;
starredDashboards
:
DashboardAcl
[];
loadOrganization
:
typeof
loadOrganization
;
loadOrganizationPreferences
:
typeof
loadOrganizationPreferences
;
loadStarredDashboards
:
typeof
loadStarredDashboards
;
setOrganizationName
:
typeof
setOrganizationName
;
setOrganizationHomeDashboard
:
typeof
setOrganizationHomeDashboard
;
setOrganizationTheme
:
typeof
setOrganizationTheme
;
setOrganizationTimezone
:
typeof
setOrganizationTimezone
;
updateOrganization
:
typeof
updateOrganization
;
updateOrganizationPreferences
:
typeof
updateOrganizationPreferences
;
}
export
class
OrgDetailsPage
extends
PureComponent
<
Props
>
{
...
...
@@ -50,24 +41,8 @@ export class OrgDetailsPage extends PureComponent<Props> {
this
.
props
.
updateOrganization
();
};
onSubmitPreferences
=
()
=>
{
this
.
props
.
updateOrganizationPreferences
();
};
onThemeChange
=
theme
=>
{
this
.
props
.
setOrganizationTheme
(
theme
);
};
onHomeDashboardChange
=
dashboardId
=>
{
this
.
props
.
setOrganizationHomeDashboard
(
dashboardId
);
};
onTimeZoneChange
=
timeZone
=>
{
this
.
props
.
setOrganizationTimezone
(
timeZone
);
};
render
()
{
const
{
navModel
,
organization
,
preferences
,
starredDashboards
}
=
this
.
props
;
const
{
navModel
,
organization
,
preferences
}
=
this
.
props
;
return
(
<
div
>
...
...
@@ -82,14 +57,7 @@ export class OrgDetailsPage extends PureComponent<Props> {
onSubmit=
{
this
.
onUpdateOrganization
}
orgName=
{
organization
.
name
}
/>
<
OrgPreferences
preferences=
{
preferences
}
starredDashboards=
{
starredDashboards
}
onDashboardChange=
{
dashboardId
=>
this
.
onHomeDashboardChange
(
dashboardId
)
}
onThemeChange=
{
theme
=>
this
.
onThemeChange
(
theme
)
}
onTimeZoneChange=
{
timeZone
=>
this
.
onTimeZoneChange
(
timeZone
)
}
onSubmit=
{
this
.
onSubmitPreferences
}
/>
<
OrgPreferences
/>
</
div
>
)
}
</
div
>
...
...
@@ -103,7 +71,6 @@ function mapStateToProps(state: StoreState) {
navModel
:
getNavModel
(
state
.
navIndex
,
'org-settings'
),
organization
:
state
.
organization
.
organization
,
preferences
:
state
.
organization
.
preferences
,
starredDashboards
:
state
.
organization
.
starredDashboards
,
};
}
...
...
@@ -112,11 +79,7 @@ const mapDispatchToProps = {
loadOrganizationPreferences
,
loadStarredDashboards
,
setOrganizationName
,
setOrganizationTheme
,
setOrganizationHomeDashboard
,
setOrganizationTimezone
,
updateOrganization
,
updateOrganizationPreferences
,
};
export
default
hot
(
module
)(
connect
(
mapStateToProps
,
mapDispatchToProps
)(
OrgDetailsPage
));
public/app/features/org/OrgPreferences.test.tsx
0 → 100644
View file @
026588cb
import
React
from
'react'
;
import
{
shallow
}
from
'enzyme'
;
import
{
OrgPreferences
,
Props
}
from
'./OrgPreferences'
;
const
setup
=
()
=>
{
const
props
:
Props
=
{
preferences
:
{
homeDashboardId
:
1
,
timezone
:
'UTC'
,
theme
:
'Default'
,
},
starredDashboards
:
[{
id
:
1
,
name
:
'Standard dashboard'
}],
setOrganizationTimezone
:
jest
.
fn
(),
setOrganizationTheme
:
jest
.
fn
(),
setOrganizationHomeDashboard
:
jest
.
fn
(),
updateOrganizationPreferences
:
jest
.
fn
(),
};
return
shallow
(<
OrgPreferences
{
...
props
}
/>);
};
describe
(
'Render'
,
()
=>
{
it
(
'should render component'
,
()
=>
{
const
wrapper
=
setup
();
expect
(
wrapper
).
toMatchSnapshot
();
});
});
public/app/features/org/OrgPreferences.tsx
View file @
026588cb
import
React
,
{
SFC
}
from
'react'
;
import
React
,
{
PureComponent
}
from
'react'
;
import
{
connect
}
from
'react-redux'
;
import
Tooltip
from
'../../core/components/Tooltip/Tooltip'
;
import
SimplePicker
from
'../../core/components/Picker/SimplePicker'
;
import
{
DashboardAcl
,
OrganizationPreferences
}
from
'app/types'
;
import
{
setOrganizationHomeDashboard
,
setOrganizationTheme
,
setOrganizationTimezone
,
updateOrganizationPreferences
,
}
from
'./state/actions'
;
interface
Props
{
export
interface
Props
{
preferences
:
OrganizationPreferences
;
starredDashboards
:
DashboardAcl
[];
onDashboardChange
:
(
dashboardId
:
number
)
=>
voi
d
;
onTimeZoneChange
:
(
timeZone
:
string
)
=>
void
;
onThemeChange
:
(
theme
:
string
)
=>
void
;
onSubmit
:
()
=>
void
;
setOrganizationHomeDashboard
:
typeof
setOrganizationHomeDashboar
d
;
setOrganizationTheme
:
typeof
setOrganizationTheme
;
setOrganizationTimezone
:
typeof
setOrganizationTimezone
;
updateOrganizationPreferences
:
typeof
updateOrganizationPreferences
;
}
const
OrgPreferences
:
SFC
<
Props
>
=
({
preferences
,
starredDashboards
,
onDashboardChange
,
onSubmit
,
onTimeZoneChange
,
onThemeChange
,
})
=>
{
const
themes
=
[{
value
:
''
,
text
:
'Default'
},
{
value
:
'dark'
,
text
:
'Dark'
},
{
value
:
'light'
,
text
:
'Light'
}];
const
themes
=
[{
value
:
''
,
text
:
'Default'
},
{
value
:
'dark'
,
text
:
'Dark'
},
{
value
:
'light'
,
text
:
'Light'
}];
const
timezones
=
[
const
timezones
=
[
{
value
:
''
,
text
:
'Default'
},
{
value
:
'browser'
,
text
:
'Local browser time'
},
{
value
:
'utc'
,
text
:
'UTC'
},
];
];
return
(
<
form
className=
"section gf-form-group"
onSubmit=
{
event
=>
{
export
class
OrgPreferences
extends
PureComponent
<
Props
>
{
onSubmitForm
=
event
=>
{
event
.
preventDefault
();
onSubmit
();
}
}
>
this
.
props
.
updateOrganizationPreferences
();
};
render
()
{
const
{
preferences
,
starredDashboards
,
setOrganizationHomeDashboard
,
setOrganizationTimezone
,
setOrganizationTheme
,
}
=
this
.
props
;
starredDashboards
.
unshift
({
id
:
0
,
title
:
'Default'
});
return
(
<
form
className=
"section gf-form-group"
onSubmit=
{
this
.
onSubmitForm
}
>
<
h3
className=
"page-heading"
>
Preferences
</
h3
>
<
div
className=
"gf-form"
>
<
span
className=
"gf-form-label width-11"
>
UI Theme
</
span
>
...
...
@@ -44,7 +54,7 @@ const OrgPreferences: SFC<Props> = ({
options=
{
themes
}
getOptionValue=
{
i
=>
i
.
value
}
getOptionLabel=
{
i
=>
i
.
text
}
onSelected=
{
theme
=>
onThemeChang
e
(
theme
.
value
)
}
onSelected=
{
theme
=>
setOrganizationThem
e
(
theme
.
value
)
}
width=
{
20
}
/>
</
div
>
...
...
@@ -63,7 +73,7 @@ const OrgPreferences: SFC<Props> = ({
defaultValue=
{
starredDashboards
.
find
(
dashboard
=>
dashboard
.
id
===
preferences
.
homeDashboardId
)
}
getOptionValue=
{
i
=>
i
.
id
}
getOptionLabel=
{
i
=>
i
.
title
}
onSelected=
{
(
dashboard
:
DashboardAcl
)
=>
onDashboardChange
(
dashboard
.
id
)
}
onSelected=
{
(
dashboard
:
DashboardAcl
)
=>
setOrganizationHomeDashboard
(
dashboard
.
id
)
}
options=
{
starredDashboards
}
placeholder=
"Chose default dashboard"
width=
{
20
}
...
...
@@ -75,7 +85,7 @@ const OrgPreferences: SFC<Props> = ({
defaultValue=
{
timezones
.
find
(
timezone
=>
timezone
.
value
===
preferences
.
timezone
)
}
getOptionValue=
{
i
=>
i
.
value
}
getOptionLabel=
{
i
=>
i
.
text
}
onSelected=
{
timezone
=>
onTimeZoneChang
e
(
timezone
.
value
)
}
onSelected=
{
timezone
=>
setOrganizationTimezon
e
(
timezone
.
value
)
}
options=
{
timezones
}
width=
{
20
}
/>
...
...
@@ -87,6 +97,21 @@ const OrgPreferences: SFC<Props> = ({
</
div
>
</
form
>
);
}
}
function
mapStateToProps
(
state
)
{
return
{
preferences
:
state
.
organization
.
preferences
,
starredDashboards
:
state
.
organization
.
starredDashboards
,
};
}
const
mapDispatchToProps
=
{
setOrganizationHomeDashboard
,
setOrganizationTimezone
,
setOrganizationTheme
,
updateOrganizationPreferences
,
};
export
default
OrgPreferences
;
export
default
connect
(
mapStateToProps
,
mapDispatchToProps
)(
OrgPreferences
)
;
public/app/features/org/OrgProfile.test.tsx
0 → 100644
View file @
026588cb
import
React
from
'react'
;
import
{
shallow
}
from
'enzyme'
;
import
OrgProfile
,
{
Props
}
from
'./OrgProfile'
;
const
setup
=
()
=>
{
const
props
:
Props
=
{
orgName
:
'Main org'
,
onSubmit
:
jest
.
fn
(),
onOrgNameChange
:
jest
.
fn
(),
};
return
shallow
(<
OrgProfile
{
...
props
}
/>);
};
describe
(
'Render'
,
()
=>
{
it
(
'should render component'
,
()
=>
{
const
wrapper
=
setup
();
expect
(
wrapper
).
toMatchSnapshot
();
});
});
public/app/features/org/OrgProfile.tsx
View file @
026588cb
import
React
,
{
SFC
}
from
'react'
;
interface
Props
{
export
interface
Props
{
orgName
:
string
;
onSubmit
:
()
=>
void
;
onOrgNameChange
:
(
orgName
:
string
)
=>
void
;
...
...
public/app/features/org/__snapshots__/OrgDetailsPage.test.tsx.snap
0 → 100644
View file @
026588cb
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Render should render component 1`] = `
<div>
<PageHeader
model={Object {}}
/>
<div
className="page-container page-body"
>
<PageLoader
pageName="Organization"
/>
</div>
</div>
`;
exports[`Render should render organization and preferences 1`] = `
<div>
<PageHeader
model={Object {}}
/>
<div
className="page-container page-body"
>
<div>
<OrgProfile
onOrgNameChange={[Function]}
onSubmit={[Function]}
orgName="Cool org"
/>
<Connect(OrgPreferences) />
</div>
</div>
</div>
`;
public/app/features/org/__snapshots__/OrgPreferences.test.tsx.snap
0 → 100644
View file @
026588cb
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Render should render component 1`] = `
<form
className="section gf-form-group"
onSubmit={[Function]}
>
<h3
className="page-heading"
>
Preferences
</h3>
<div
className="gf-form"
>
<span
className="gf-form-label width-11"
>
UI Theme
</span>
<SimplePicker
getOptionLabel={[Function]}
getOptionValue={[Function]}
onSelected={[Function]}
options={
Array [
Object {
"text": "Default",
"value": "",
},
Object {
"text": "Dark",
"value": "dark",
},
Object {
"text": "Light",
"value": "light",
},
]
}
width={20}
/>
</div>
<div
className="gf-form"
>
<span
className="gf-form-label width-11"
>
Home Dashboard
<class_1
className="gf-form-help-icon gf-form-help-icon--right-normal"
content="Not finding dashboard you want? Star it first, then it should appear in this select box."
placement="right"
>
<i
className="fa fa-info-circle"
/>
</class_1>
</span>
<SimplePicker
defaultValue={
Object {
"id": 1,
"name": "Standard dashboard",
}
}
getOptionLabel={[Function]}
getOptionValue={[Function]}
onSelected={[Function]}
options={
Array [
Object {
"id": 1,
"name": "Standard dashboard",
},
]
}
placeholder="Chose default dashboard"
width={20}
/>
</div>
<div
className="gf-form"
>
<label
className="gf-form-label width-11"
>
Timezone
</label>
<SimplePicker
getOptionLabel={[Function]}
getOptionValue={[Function]}
onSelected={[Function]}
options={
Array [
Object {
"text": "Default",
"value": "",
},
Object {
"text": "Local browser time",
"value": "browser",
},
Object {
"text": "UTC",
"value": "utc",
},
]
}
width={20}
/>
</div>
<div
className="gf-form-button-row"
>
<button
className="btn btn-success"
type="submit"
>
Save
</button>
</div>
</form>
`;
public/app/features/org/__snapshots__/OrgProfile.test.tsx.snap
0 → 100644
View file @
026588cb
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Render should render component 1`] = `
<div>
<h3
className="page-sub-heading"
>
Organization profile
</h3>
<form
className="gf-form-group"
name="orgForm"
onSubmit={[Function]}
>
<div
className="gf-form-inline"
>
<div
className="gf-form max-width-28"
>
<span
className="gf-form-label"
>
Organization name
</span>
<input
className="gf-form-input"
onChange={[Function]}
type="text"
value="Main org"
/>
</div>
</div>
<div
className="gf-form-button-row"
>
<button
className="btn btn-success"
type="submit"
>
Save
</button>
</div>
</form>
</div>
`;
public/app/types/acl.ts
View file @
026588cb
...
...
@@ -39,6 +39,7 @@ export interface DashboardAcl {
name
?:
string
;
inherited
?:
boolean
;
sortRank
?:
number
;
title
?:
string
;
}
export
interface
DashboardPermissionInfo
{
...
...
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