mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import React, { PureComponent } from 'react';
|
|
import { connect, ConnectedProps } from 'react-redux';
|
|
import { Invitee } from 'app/types';
|
|
import { revokeInvite } from './state/actions';
|
|
import { Button, ClipboardButton } from '@grafana/ui';
|
|
|
|
const mapDispatchToProps = {
|
|
revokeInvite,
|
|
};
|
|
|
|
const connector = connect(null, mapDispatchToProps);
|
|
|
|
interface OwnProps {
|
|
invitee: Invitee;
|
|
}
|
|
|
|
export type Props = OwnProps & ConnectedProps<typeof connector>;
|
|
|
|
class InviteeRow extends PureComponent<Props> {
|
|
render() {
|
|
const { invitee, revokeInvite } = this.props;
|
|
return (
|
|
<tr>
|
|
<td>{invitee.email}</td>
|
|
<td>{invitee.name}</td>
|
|
<td className="text-right">
|
|
<ClipboardButton variant="secondary" size="sm" getText={() => invitee.url}>
|
|
Copy Invite
|
|
</ClipboardButton>
|
|
|
|
</td>
|
|
<td>
|
|
<Button variant="destructive" size="sm" icon="times" onClick={() => revokeInvite(invitee.code)} />
|
|
</td>
|
|
</tr>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default connector(InviteeRow);
|