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
467b7a40
Commit
467b7a40
authored
Mar 08, 2019
by
Hugo Häggmark
Committed by
Leonard Gram
Mar 19, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
teams: feature toggle component
parent
aedc4782
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
13 deletions
+32
-13
public/app/core/components/WithFeatureToggle.tsx
+13
-0
public/app/features/teams/TeamMembers.tsx
+19
-13
public/app/features/teams/__snapshots__/TeamMembers.test.tsx.snap
+0
-0
No files found.
public/app/core/components/WithFeatureToggle.tsx
0 → 100644
View file @
467b7a40
import
React
,
{
FunctionComponent
}
from
'react'
;
export
interface
Props
{
featureToggle
:
boolean
;
}
export
const
WithFeatureToggle
:
FunctionComponent
<
Props
>
=
({
featureToggle
,
children
})
=>
{
if
(
featureToggle
===
true
)
{
return
<>
{
children
}
</>;
}
return
null
;
};
public/app/features/teams/TeamMembers.tsx
View file @
467b7a40
...
...
@@ -8,6 +8,8 @@ import { TeamMember, User, teamsPermissionLevels } from 'app/types';
import
{
loadTeamMembers
,
addTeamMember
,
removeTeamMember
,
setSearchMemberQuery
}
from
'./state/actions'
;
import
{
getSearchMemberQuery
,
getTeamMembers
}
from
'./state/selectors'
;
import
{
FilterInput
}
from
'app/core/components/FilterInput/FilterInput'
;
import
{
WithFeatureToggle
}
from
'app/core/components/WithFeatureToggle'
;
import
{
config
}
from
'app/core/config'
;
export
interface
Props
{
members
:
TeamMember
[];
...
...
@@ -78,18 +80,20 @@ export class TeamMembers extends PureComponent<Props, State> {
</
td
>
<
td
>
{
member
.
login
}
</
td
>
<
td
>
{
member
.
email
}
</
td
>
<
td
>
<
div
className=
"gf-form"
>
<
Select
isSearchable=
{
false
}
options=
{
teamsPermissionLevels
}
onChange=
{
()
=>
{}
}
className=
"gf-form-select-box__control--menu-right"
value=
{
currentPermissionLevel
}
isDisabled=
{
true
}
/>
</
div
>
</
td
>
{
' '
}
<
WithFeatureToggle
featureToggle=
{
config
.
editorsCanOwn
}
>
<
td
>
<
div
className=
"gf-form"
>
<
Select
isSearchable=
{
false
}
options=
{
teamsPermissionLevels
}
onChange=
{
()
=>
{}
}
className=
"gf-form-select-box__control--menu-right"
value=
{
currentPermissionLevel
}
isDisabled=
{
true
}
/>
</
div
>
</
td
>
</
WithFeatureToggle
>
{
syncEnabled
&&
this
.
renderLabels
(
member
.
labels
)
}
<
td
className=
"text-right"
>
<
DeleteButton
onConfirm=
{
()
=>
this
.
onRemoveMember
(
member
)
}
/>
...
...
@@ -145,7 +149,9 @@ export class TeamMembers extends PureComponent<Props, State> {
<
th
/>
<
th
>
Name
</
th
>
<
th
>
Email
</
th
>
<
th
>
Permission
</
th
>
<
WithFeatureToggle
featureToggle=
{
config
.
editorsCanOwn
}
>
<
th
>
Permission
</
th
>
</
WithFeatureToggle
>
{
syncEnabled
&&
<
th
/>
}
<
th
style=
{
{
width
:
'1%'
}
}
/>
</
tr
>
...
...
public/app/features/teams/__snapshots__/TeamMembers.test.tsx.snap
View file @
467b7a40
This diff is collapsed.
Click to expand it.
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