2020-09-09 09:07:17 +00:00
|
|
|
import React from "react";
|
2020-12-18 07:01:35 +00:00
|
|
|
import { Link } from "react-router-dom";
|
|
|
|
import { PageSection } from "@patternfly/react-core";
|
|
|
|
import moment from "moment";
|
2021-05-04 17:58:18 +00:00
|
|
|
import type UserSessionRepresentation from "keycloak-admin/lib/defs/userSessionRepresentation";
|
2020-12-18 07:01:35 +00:00
|
|
|
|
|
|
|
import { ViewHeader } from "../components/view-header/ViewHeader";
|
|
|
|
import { KeycloakDataTable } from "../components/table-toolbar/KeycloakDataTable";
|
|
|
|
import { useAdminClient } from "../context/auth/AdminClient";
|
|
|
|
|
|
|
|
const Clients = (row: UserSessionRepresentation) => {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{Object.values(row.clients!).map((client) => (
|
|
|
|
<Link key={client} to="" className="pf-u-mx-sm">
|
|
|
|
{client}
|
|
|
|
</Link>
|
|
|
|
))}
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
2020-09-09 09:07:17 +00:00
|
|
|
|
2020-09-10 18:04:03 +00:00
|
|
|
export const SessionsSection = () => {
|
2020-12-18 07:01:35 +00:00
|
|
|
const adminClient = useAdminClient();
|
|
|
|
|
|
|
|
const loader = async () => {
|
|
|
|
const activeClients = await adminClient.sessions.find();
|
|
|
|
const clientSessions = (
|
|
|
|
await Promise.all(
|
|
|
|
activeClients.map((client) =>
|
|
|
|
adminClient.clients.listSessions({ id: client.id })
|
|
|
|
)
|
|
|
|
)
|
|
|
|
).flat();
|
|
|
|
|
2021-05-17 13:35:12 +00:00
|
|
|
const userIds = Array.from(
|
|
|
|
new Set(clientSessions.map((session) => session.userId))
|
|
|
|
);
|
2020-12-18 07:01:35 +00:00
|
|
|
const userSessions = (
|
|
|
|
await Promise.all(
|
2021-05-17 13:35:12 +00:00
|
|
|
userIds.map((userId) => adminClient.users.listSessions({ id: userId! }))
|
2020-12-18 07:01:35 +00:00
|
|
|
)
|
|
|
|
).flat();
|
|
|
|
|
|
|
|
return userSessions;
|
|
|
|
};
|
|
|
|
|
2020-09-18 08:04:55 +00:00
|
|
|
return (
|
|
|
|
<>
|
2020-12-18 07:01:35 +00:00
|
|
|
<ViewHeader titleKey="sessions:title" subKey="sessions:sessionExplain" />
|
2021-03-31 13:16:58 +00:00
|
|
|
<PageSection variant="light" className="pf-u-p-0">
|
2020-12-18 07:01:35 +00:00
|
|
|
<KeycloakDataTable
|
|
|
|
loader={loader}
|
|
|
|
ariaLabelKey="session:title"
|
|
|
|
searchPlaceholderKey="sessions:searchForSession"
|
|
|
|
columns={[
|
|
|
|
{
|
|
|
|
name: "username",
|
|
|
|
displayKey: "sessions:subject",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "lastAccess",
|
|
|
|
displayKey: "sessions:lastAccess",
|
|
|
|
cellRenderer: (row) => moment(row.lastAccess).fromNow(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "start",
|
|
|
|
displayKey: "sessions:startDate",
|
|
|
|
cellRenderer: (row) => moment(row.lastAccess).format("LLL"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "clients",
|
|
|
|
displayKey: "sessions:accessedClients",
|
|
|
|
cellRenderer: Clients,
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
</PageSection>
|
2020-09-18 08:04:55 +00:00
|
|
|
</>
|
|
|
|
);
|
2020-09-09 09:07:17 +00:00
|
|
|
};
|