mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 13:39:19 -06:00
5361efc225
* Switch from lingui from i18next * Change lingui messages to i18next messages * Change lingui messages to i18next messages (grafana-ui) * Init i18n for tests
120 lines
3.7 KiB
TypeScript
120 lines
3.7 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import React, { PureComponent } from 'react';
|
|
|
|
import { ConfirmButton, ConfirmModal, Button } from '@grafana/ui';
|
|
import { contextSrv } from 'app/core/core';
|
|
import { i18nDate } from 'app/core/internationalization';
|
|
import { AccessControlAction, UserSession } from 'app/types';
|
|
|
|
interface Props {
|
|
sessions: UserSession[];
|
|
|
|
onSessionRevoke: (id: number) => void;
|
|
onAllSessionsRevoke: () => void;
|
|
}
|
|
|
|
interface State {
|
|
showLogoutModal: boolean;
|
|
}
|
|
|
|
class BaseUserSessions extends PureComponent<Props, State> {
|
|
forceAllLogoutButton = React.createRef<HTMLButtonElement>();
|
|
state: State = {
|
|
showLogoutModal: false,
|
|
};
|
|
|
|
showLogoutConfirmationModal = () => {
|
|
this.setState({ showLogoutModal: true });
|
|
};
|
|
|
|
dismissLogoutConfirmationModal = () => {
|
|
this.setState({ showLogoutModal: false }, () => {
|
|
this.forceAllLogoutButton.current?.focus();
|
|
});
|
|
};
|
|
|
|
onSessionRevoke = (id: number) => {
|
|
return () => {
|
|
this.props.onSessionRevoke(id);
|
|
};
|
|
};
|
|
|
|
onAllSessionsRevoke = () => {
|
|
this.setState({ showLogoutModal: false });
|
|
this.props.onAllSessionsRevoke();
|
|
};
|
|
|
|
render() {
|
|
const { sessions } = this.props;
|
|
const { showLogoutModal } = this.state;
|
|
|
|
const logoutFromAllDevicesClass = css`
|
|
margin-top: 0.8rem;
|
|
`;
|
|
|
|
const canLogout = contextSrv.hasPermission(AccessControlAction.UsersLogout);
|
|
|
|
return (
|
|
<>
|
|
<h3 className="page-heading">Sessions</h3>
|
|
<div className="gf-form-group">
|
|
<div className="gf-form">
|
|
<table className="filter-table form-inline">
|
|
<thead>
|
|
<tr>
|
|
<th>Last seen</th>
|
|
<th>Logged on</th>
|
|
<th>IP address</th>
|
|
<th colSpan={2}>Browser and OS</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{sessions &&
|
|
sessions.map((session, index) => (
|
|
<tr key={`${session.id}-${index}`}>
|
|
<td>{session.isActive ? 'Now' : session.seenAt}</td>
|
|
<td>{i18nDate(session.createdAt, { dateStyle: 'long' })}</td>
|
|
<td>{session.clientIp}</td>
|
|
<td>{`${session.browser} on ${session.os} ${session.osVersion}`}</td>
|
|
<td>
|
|
<div className="pull-right">
|
|
{canLogout && (
|
|
<ConfirmButton
|
|
confirmText="Confirm logout"
|
|
confirmVariant="destructive"
|
|
onConfirm={this.onSessionRevoke(session.id)}
|
|
autoFocus
|
|
>
|
|
Force logout
|
|
</ConfirmButton>
|
|
)}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div className={logoutFromAllDevicesClass}>
|
|
{canLogout && sessions.length > 0 && (
|
|
<Button variant="secondary" onClick={this.showLogoutConfirmationModal} ref={this.forceAllLogoutButton}>
|
|
Force logout from all devices
|
|
</Button>
|
|
)}
|
|
<ConfirmModal
|
|
isOpen={showLogoutModal}
|
|
title="Force logout from all devices"
|
|
body="Are you sure you want to force logout from all devices?"
|
|
confirmText="Force logout"
|
|
onConfirm={this.onAllSessionsRevoke}
|
|
onDismiss={this.dismissLogoutConfirmationModal}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
export const UserSessions = BaseUserSessions;
|