mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
* Update typescript to v4.2.4 * Update @types/slate * Fix QueryVariableEditor.test.tsx * Fix search-related type errors * Fix Plugin pages type errors * Fix missing initializer errors * Update snapshot * Revert tsconfig changes
160 lines
4.6 KiB
TypeScript
160 lines
4.6 KiB
TypeScript
import React, { PureComponent } from 'react';
|
|
import { connect, ConnectedProps } from 'react-redux';
|
|
|
|
import { SlideDown } from 'app/core/components/Animations/SlideDown';
|
|
import { LegacyForms, Tooltip, Icon, Button } from '@grafana/ui';
|
|
const { Input } = LegacyForms;
|
|
|
|
import { StoreState, TeamGroup } from '../../types';
|
|
import { addTeamGroup, loadTeamGroups, removeTeamGroup } from './state/actions';
|
|
import { getTeamGroups } from './state/selectors';
|
|
import EmptyListCTA from 'app/core/components/EmptyListCTA/EmptyListCTA';
|
|
import { CloseButton } from 'app/core/components/CloseButton/CloseButton';
|
|
|
|
function mapStateToProps(state: StoreState) {
|
|
return {
|
|
groups: getTeamGroups(state.team),
|
|
};
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
loadTeamGroups,
|
|
addTeamGroup,
|
|
removeTeamGroup,
|
|
};
|
|
|
|
interface State {
|
|
isAdding: boolean;
|
|
newGroupId: string;
|
|
}
|
|
|
|
const connector = connect(mapStateToProps, mapDispatchToProps);
|
|
export type Props = ConnectedProps<typeof connector>;
|
|
|
|
const headerTooltip = `Sync LDAP or OAuth groups with your Grafana teams.`;
|
|
|
|
export class TeamGroupSync extends PureComponent<Props, State> {
|
|
constructor(props: Props) {
|
|
super(props);
|
|
this.state = { isAdding: false, newGroupId: '' };
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.fetchTeamGroups();
|
|
}
|
|
|
|
async fetchTeamGroups() {
|
|
await this.props.loadTeamGroups();
|
|
}
|
|
|
|
onToggleAdding = () => {
|
|
this.setState({ isAdding: !this.state.isAdding });
|
|
};
|
|
|
|
onNewGroupIdChanged = (event: any) => {
|
|
this.setState({ newGroupId: event.target.value });
|
|
};
|
|
|
|
onAddGroup = (event: any) => {
|
|
event.preventDefault();
|
|
this.props.addTeamGroup(this.state.newGroupId);
|
|
this.setState({ isAdding: false, newGroupId: '' });
|
|
};
|
|
|
|
onRemoveGroup = (group: TeamGroup) => {
|
|
this.props.removeTeamGroup(group.groupId);
|
|
};
|
|
|
|
isNewGroupValid() {
|
|
return this.state.newGroupId.length > 1;
|
|
}
|
|
|
|
renderGroup(group: TeamGroup) {
|
|
return (
|
|
<tr key={group.groupId}>
|
|
<td>{group.groupId}</td>
|
|
<td style={{ width: '1%' }}>
|
|
<Button size="sm" variant="destructive" onClick={() => this.onRemoveGroup(group)}>
|
|
<Icon name="times" />
|
|
</Button>
|
|
</td>
|
|
</tr>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { isAdding, newGroupId } = this.state;
|
|
const groups = this.props.groups;
|
|
|
|
return (
|
|
<div>
|
|
<div className="page-action-bar">
|
|
<h3 className="page-sub-heading">External group sync</h3>
|
|
<Tooltip placement="auto" content={headerTooltip}>
|
|
<Icon className="icon--has-hover page-sub-heading-icon" name="question-circle" />
|
|
</Tooltip>
|
|
<div className="page-action-bar__spacer" />
|
|
{groups.length > 0 && (
|
|
<Button className="pull-right" onClick={this.onToggleAdding}>
|
|
<Icon name="plus" /> Add group
|
|
</Button>
|
|
)}
|
|
</div>
|
|
|
|
<SlideDown in={isAdding}>
|
|
<div className="cta-form">
|
|
<CloseButton onClick={this.onToggleAdding} />
|
|
<h5>Add External Group</h5>
|
|
<form className="gf-form-inline" onSubmit={this.onAddGroup}>
|
|
<div className="gf-form">
|
|
<Input
|
|
type="text"
|
|
className="gf-form-input width-30"
|
|
value={newGroupId}
|
|
onChange={this.onNewGroupIdChanged}
|
|
placeholder="cn=ops,ou=groups,dc=grafana,dc=org"
|
|
/>
|
|
</div>
|
|
|
|
<div className="gf-form">
|
|
<Button type="submit" disabled={!this.isNewGroupValid()}>
|
|
Add group
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</SlideDown>
|
|
|
|
{groups.length === 0 && !isAdding && (
|
|
<EmptyListCTA
|
|
onClick={this.onToggleAdding}
|
|
buttonIcon="users-alt"
|
|
title="There are no external groups to sync with"
|
|
buttonTitle="Add Group"
|
|
proTip={headerTooltip}
|
|
proTipLinkTitle="Learn more"
|
|
proTipLink="http://docs.grafana.org/auth/enhanced_ldap/"
|
|
proTipTarget="_blank"
|
|
/>
|
|
)}
|
|
|
|
{groups.length > 0 && (
|
|
<div className="admin-list-table">
|
|
<table className="filter-table filter-table--hover form-inline">
|
|
<thead>
|
|
<tr>
|
|
<th>External Group ID</th>
|
|
<th style={{ width: '1%' }} />
|
|
</tr>
|
|
</thead>
|
|
<tbody>{groups.map((group) => this.renderGroup(group))}</tbody>
|
|
</table>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(TeamGroupSync);
|