mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
cff70b6648
* Migrate UsersActionBar * Invites table * Migrate Users page * Select version of OrgPicker * OrgRolePicker to use Select only * Fix modal issue * Move legacy Switch * Move from Forms folder * Fix failing test * Merge and fix issues * Update OrgRole issues * OrgUser type * Remove unused import * Update Snapshot
130 lines
3.4 KiB
TypeScript
130 lines
3.4 KiB
TypeScript
import React, { PureComponent } from 'react';
|
|
import { hot } from 'react-hot-loader';
|
|
import { connect } from 'react-redux';
|
|
import { NavModel, renderMarkdown } from '@grafana/data';
|
|
|
|
import Page from 'app/core/components/Page/Page';
|
|
import UsersActionBar from './UsersActionBar';
|
|
import UsersTable from './UsersTable';
|
|
import InviteesTable from './InviteesTable';
|
|
import { Invitee, OrgUser, OrgRole } from 'app/types';
|
|
import { loadInvitees, loadUsers, removeUser, updateUser } from './state/actions';
|
|
import { getNavModel } from 'app/core/selectors/navModel';
|
|
import { getInvitees, getUsers, getUsersSearchQuery } from './state/selectors';
|
|
import { setUsersSearchQuery } from './state/reducers';
|
|
|
|
export interface Props {
|
|
navModel: NavModel;
|
|
invitees: Invitee[];
|
|
users: OrgUser[];
|
|
searchQuery: string;
|
|
externalUserMngInfo: string;
|
|
hasFetched: boolean;
|
|
loadUsers: typeof loadUsers;
|
|
loadInvitees: typeof loadInvitees;
|
|
setUsersSearchQuery: typeof setUsersSearchQuery;
|
|
updateUser: typeof updateUser;
|
|
removeUser: typeof removeUser;
|
|
}
|
|
|
|
export interface State {
|
|
showInvites: boolean;
|
|
}
|
|
|
|
export class UsersListPage extends PureComponent<Props, State> {
|
|
externalUserMngInfoHtml: string;
|
|
|
|
constructor(props: Props) {
|
|
super(props);
|
|
|
|
if (this.props.externalUserMngInfo) {
|
|
this.externalUserMngInfoHtml = renderMarkdown(this.props.externalUserMngInfo);
|
|
}
|
|
|
|
this.state = {
|
|
showInvites: false,
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.fetchUsers();
|
|
this.fetchInvitees();
|
|
}
|
|
|
|
async fetchUsers() {
|
|
return await this.props.loadUsers();
|
|
}
|
|
|
|
async fetchInvitees() {
|
|
return await this.props.loadInvitees();
|
|
}
|
|
|
|
onRoleChange = (role: OrgRole, user: OrgUser) => {
|
|
const updatedUser = { ...user, role: role };
|
|
|
|
this.props.updateUser(updatedUser);
|
|
};
|
|
|
|
onShowInvites = () => {
|
|
this.setState(prevState => ({
|
|
showInvites: !prevState.showInvites,
|
|
}));
|
|
};
|
|
|
|
renderTable() {
|
|
const { invitees, users } = this.props;
|
|
|
|
if (this.state.showInvites) {
|
|
return <InviteesTable invitees={invitees} />;
|
|
} else {
|
|
return (
|
|
<UsersTable
|
|
users={users}
|
|
onRoleChange={(role, user) => this.onRoleChange(role, user)}
|
|
onRemoveUser={user => this.props.removeUser(user.userId)}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { navModel, hasFetched } = this.props;
|
|
const externalUserMngInfoHtml = this.externalUserMngInfoHtml;
|
|
|
|
return (
|
|
<Page navModel={navModel}>
|
|
<Page.Contents isLoading={!hasFetched}>
|
|
<>
|
|
<UsersActionBar onShowInvites={this.onShowInvites} showInvites={this.state.showInvites} />
|
|
{externalUserMngInfoHtml && (
|
|
<div className="grafana-info-box" dangerouslySetInnerHTML={{ __html: externalUserMngInfoHtml }} />
|
|
)}
|
|
{hasFetched && this.renderTable()}
|
|
</>
|
|
</Page.Contents>
|
|
</Page>
|
|
);
|
|
}
|
|
}
|
|
|
|
function mapStateToProps(state: any) {
|
|
return {
|
|
navModel: getNavModel(state.navIndex, 'users'),
|
|
users: getUsers(state.users),
|
|
searchQuery: getUsersSearchQuery(state.users),
|
|
invitees: getInvitees(state.users),
|
|
externalUserMngInfo: state.users.externalUserMngInfo,
|
|
hasFetched: state.users.hasFetched,
|
|
};
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
loadUsers,
|
|
loadInvitees,
|
|
setUsersSearchQuery,
|
|
updateUser,
|
|
removeUser,
|
|
};
|
|
|
|
export default hot(module)(connect(mapStateToProps, mapDispatchToProps)(UsersListPage));
|