mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
91 lines
2.9 KiB
TypeScript
91 lines
2.9 KiB
TypeScript
import { css, cx } from '@emotion/css';
|
|
import { t } from 'i18next';
|
|
import React, { PureComponent } from 'react';
|
|
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
import { Button, Icon, LoadingPlaceholder } from '@grafana/ui';
|
|
import { i18nDate, Trans } from 'app/core/internationalization';
|
|
import { UserSession } from 'app/types';
|
|
|
|
interface Props {
|
|
sessions: UserSession[];
|
|
isLoading: boolean;
|
|
revokeUserSession: (tokenId: number) => void;
|
|
}
|
|
|
|
class UserSessions extends PureComponent<Props> {
|
|
render() {
|
|
const { isLoading, sessions, revokeUserSession } = this.props;
|
|
const styles = getStyles();
|
|
|
|
if (isLoading) {
|
|
return <LoadingPlaceholder text={<Trans i18nKey="user-sessions.loading">Loading sessions...</Trans>} />;
|
|
}
|
|
|
|
return (
|
|
<div className={styles.wrapper}>
|
|
{sessions.length > 0 && (
|
|
<>
|
|
<h3 className="page-sub-heading">Sessions</h3>
|
|
<div className={cx('gf-form-group', styles.table)}>
|
|
<table className="filter-table form-inline" data-testid={selectors.components.UserProfile.sessionsTable}>
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<Trans i18nKey="user-session.seen-at-column">Last seen</Trans>
|
|
</th>
|
|
<th>
|
|
<Trans i18nKey="user-session.created-at-column">Logged on</Trans>
|
|
</th>
|
|
<th>
|
|
<Trans i18nKey="user-session.ip-column">IP address</Trans>
|
|
</th>
|
|
<th>
|
|
<Trans i18nKey="user-session.browser-column">Browser & OS</Trans>
|
|
</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{sessions.map((session: UserSession, index) => (
|
|
<tr key={index}>
|
|
{session.isActive ? <td>Now</td> : <td>{session.seenAt}</td>}
|
|
<td>{i18nDate(session.createdAt, { dateStyle: 'long' })}</td>
|
|
<td>{session.clientIp}</td>
|
|
<td>
|
|
{session.browser} on {session.os} {session.osVersion}
|
|
</td>
|
|
<td>
|
|
<Button
|
|
size="sm"
|
|
variant="destructive"
|
|
onClick={() => revokeUserSession(session.id)}
|
|
aria-label={t('user-session.revoke', 'Revoke user session')}
|
|
>
|
|
<Icon name="power" />
|
|
</Button>
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
const getStyles = () => ({
|
|
wrapper: css({
|
|
maxWidth: '100%',
|
|
}),
|
|
table: css({
|
|
overflow: 'auto',
|
|
}),
|
|
});
|
|
|
|
export default UserSessions;
|