7e021730c7
Closes #25897 Signed-off-by: dipeshsingh253 <sinhdipesh@gmail.com>
352 lines
12 KiB
TypeScript
352 lines
12 KiB
TypeScript
import { useMemo, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import {
|
|
ActionList,
|
|
ActionListItem,
|
|
Brand,
|
|
Button,
|
|
Card,
|
|
CardBody,
|
|
CardTitle,
|
|
DescriptionList,
|
|
DescriptionListDescription,
|
|
DescriptionListGroup,
|
|
DescriptionListTerm,
|
|
EmptyState,
|
|
EmptyStateBody,
|
|
Grid,
|
|
GridItem,
|
|
Label,
|
|
List,
|
|
ListItem,
|
|
ListVariant,
|
|
PageSection,
|
|
Tab,
|
|
TabTitleText,
|
|
Text,
|
|
TextContent,
|
|
TextVariants,
|
|
Title,
|
|
} from "@patternfly/react-core";
|
|
|
|
import FeatureRepresentation, {
|
|
FeatureType,
|
|
} from "@keycloak/keycloak-admin-client/lib/defs/featureRepresentation";
|
|
import { useRealm } from "../context/realm-context/RealmContext";
|
|
import { useServerInfo } from "../context/server-info/ServerInfoProvider";
|
|
import { HelpItem } from "ui-shared";
|
|
import environment from "../environment";
|
|
import { KeycloakSpinner } from "../components/keycloak-spinner/KeycloakSpinner";
|
|
import useLocaleSort, { mapByKey } from "../utils/useLocaleSort";
|
|
import {
|
|
RoutableTabs,
|
|
useRoutableTab,
|
|
} from "../components/routable-tabs/RoutableTabs";
|
|
import { DashboardTab, toDashboard } from "./routes/Dashboard";
|
|
import { ProviderInfo } from "./ProviderInfo";
|
|
|
|
import "./dashboard.css";
|
|
import { useFetch } from "../utils/useFetch";
|
|
import type RealmRepresentation from "@keycloak/keycloak-admin-client/lib/defs/realmRepresentation";
|
|
import { adminClient } from "../admin-client";
|
|
import helpUrls from "../help-urls";
|
|
|
|
const EmptyDashboard = () => {
|
|
const { t } = useTranslation();
|
|
const { realm } = useRealm();
|
|
const [realmInfo, setRealmInfo] = useState<RealmRepresentation>();
|
|
const brandImage = environment.logo ? environment.logo : "/icon.svg";
|
|
useFetch(() => adminClient.realms.findOne({ realm }), setRealmInfo, []);
|
|
const realmDisplayInfo = realmInfo?.displayName || realm;
|
|
|
|
return (
|
|
<PageSection variant="light">
|
|
<EmptyState variant="large">
|
|
<Brand
|
|
src={environment.resourceUrl + brandImage}
|
|
alt="Keycloak icon"
|
|
className="keycloak__dashboard_icon"
|
|
/>
|
|
<Title headingLevel="h2" size="3xl">
|
|
{t("welcome")}
|
|
</Title>
|
|
<Title headingLevel="h1" size="4xl">
|
|
{realmDisplayInfo}
|
|
</Title>
|
|
<EmptyStateBody>{t("introduction")}</EmptyStateBody>
|
|
</EmptyState>
|
|
</PageSection>
|
|
);
|
|
};
|
|
|
|
type FeatureItemProps = {
|
|
feature: FeatureRepresentation;
|
|
};
|
|
|
|
const FeatureItem = ({ feature }: FeatureItemProps) => {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<ListItem className="pf-u-mb-sm">
|
|
{feature.name}
|
|
{feature.type === FeatureType.Experimental && (
|
|
<Label color="orange">{t("experimental")}</Label>
|
|
)}
|
|
{feature.type === FeatureType.Preview && (
|
|
<Label color="blue">{t("preview")}</Label>
|
|
)}
|
|
{feature.type === FeatureType.Default && (
|
|
<Label color="green">{t("supported")}</Label>
|
|
)}
|
|
</ListItem>
|
|
);
|
|
};
|
|
|
|
const Dashboard = () => {
|
|
const { t } = useTranslation();
|
|
const { realm } = useRealm();
|
|
const serverInfo = useServerInfo();
|
|
const localeSort = useLocaleSort();
|
|
const [realmInfo, setRealmInfo] = useState<RealmRepresentation>();
|
|
|
|
const sortedFeatures = useMemo(
|
|
() => localeSort(serverInfo.features ?? [], mapByKey("name")),
|
|
[serverInfo.features],
|
|
);
|
|
|
|
const disabledFeatures = useMemo(
|
|
() => sortedFeatures.filter((f) => !f.enabled) || [],
|
|
[serverInfo.features],
|
|
);
|
|
|
|
const enabledFeatures = useMemo(
|
|
() => sortedFeatures.filter((f) => f.enabled) || [],
|
|
[serverInfo.features],
|
|
);
|
|
|
|
const useTab = (tab: DashboardTab) =>
|
|
useRoutableTab(
|
|
toDashboard({
|
|
realm,
|
|
tab,
|
|
}),
|
|
);
|
|
|
|
useFetch(() => adminClient.realms.findOne({ realm }), setRealmInfo, []);
|
|
|
|
const realmDisplayInfo = realmInfo?.displayName || realm;
|
|
|
|
const welcomeTab = useTab("welcome");
|
|
const infoTab = useTab("info");
|
|
const providersTab = useTab("providers");
|
|
|
|
if (Object.keys(serverInfo).length === 0) {
|
|
return <KeycloakSpinner />;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<PageSection variant="light">
|
|
<TextContent className="pf-u-mr-sm">
|
|
<Text component="h1">{t("realmNameTitle", { name: realm })}</Text>
|
|
</TextContent>
|
|
</PageSection>
|
|
<PageSection variant="light" className="pf-u-p-0">
|
|
<RoutableTabs
|
|
data-testid="dashboard-tabs"
|
|
defaultLocation={toDashboard({
|
|
realm,
|
|
tab: "welcome",
|
|
})}
|
|
isBox
|
|
mountOnEnter
|
|
>
|
|
<Tab
|
|
id="welcome"
|
|
data-testid="welcomeTab"
|
|
title={<TabTitleText>{t("welcomeTabTitle")}</TabTitleText>}
|
|
{...welcomeTab}
|
|
>
|
|
<PageSection variant="light">
|
|
<div className="pf-l-grid pf-u-ml-lg">
|
|
<div className="pf-l-grid__item pf-m-12-col">
|
|
<Title
|
|
className="pf-u-font-weight-bold"
|
|
headingLevel="h2"
|
|
size="3xl"
|
|
>
|
|
{t("welcomeTo", { realmDisplayInfo })}
|
|
</Title>
|
|
</div>
|
|
<div className="pf-l-grid__item keycloak__dashboard_welcome_tab">
|
|
<Text component={TextVariants.h3}>{t("welcomeText")}</Text>
|
|
</div>
|
|
<div className="pf-l-grid__item pf-m-10-col pf-u-mt-md">
|
|
<Button
|
|
className="pf-u-px-lg pf-u-py-sm"
|
|
component="a"
|
|
href={helpUrls.documentation}
|
|
target="_blank"
|
|
variant="primary"
|
|
>
|
|
{t("viewDocumentation")}
|
|
</Button>
|
|
</div>
|
|
<ActionList className="pf-u-mt-sm">
|
|
<ActionListItem>
|
|
<Button
|
|
component="a"
|
|
href={helpUrls.guides}
|
|
target="_blank"
|
|
variant="tertiary"
|
|
>
|
|
{t("viewGuides")}
|
|
</Button>
|
|
</ActionListItem>
|
|
<ActionListItem>
|
|
<Button
|
|
component="a"
|
|
href={helpUrls.community}
|
|
target="_blank"
|
|
variant="tertiary"
|
|
>
|
|
{t("joinCommunity")}
|
|
</Button>
|
|
</ActionListItem>
|
|
<ActionListItem>
|
|
<Button
|
|
component="a"
|
|
href={helpUrls.blog}
|
|
target="_blank"
|
|
variant="tertiary"
|
|
>
|
|
{t("readBlog")}
|
|
</Button>
|
|
</ActionListItem>
|
|
</ActionList>
|
|
</div>
|
|
</PageSection>
|
|
</Tab>
|
|
<Tab
|
|
id="info"
|
|
data-testid="infoTab"
|
|
title={<TabTitleText>{t("serverInfo")}</TabTitleText>}
|
|
{...infoTab}
|
|
>
|
|
<PageSection variant="light">
|
|
<Grid hasGutter>
|
|
<GridItem lg={2} sm={12}>
|
|
<Card className="keycloak__dashboard_card">
|
|
<CardTitle>{t("serverInfo")}</CardTitle>
|
|
<CardBody>
|
|
<DescriptionList>
|
|
<DescriptionListGroup>
|
|
<DescriptionListTerm>
|
|
{t("version")}
|
|
</DescriptionListTerm>
|
|
<DescriptionListDescription>
|
|
{serverInfo.systemInfo?.version}
|
|
</DescriptionListDescription>
|
|
</DescriptionListGroup>
|
|
</DescriptionList>
|
|
</CardBody>
|
|
<CardTitle>{t("memory")}</CardTitle>
|
|
<CardBody>
|
|
<DescriptionList>
|
|
<DescriptionListGroup>
|
|
<DescriptionListTerm>
|
|
{t("totalMemory")}
|
|
</DescriptionListTerm>
|
|
<DescriptionListDescription>
|
|
{serverInfo.memoryInfo?.totalFormated}
|
|
</DescriptionListDescription>
|
|
<DescriptionListTerm>
|
|
{t("freeMemory")}
|
|
</DescriptionListTerm>
|
|
<DescriptionListDescription>
|
|
{serverInfo.memoryInfo?.freeFormated}
|
|
</DescriptionListDescription>
|
|
<DescriptionListTerm>
|
|
{t("usedMemory")}
|
|
</DescriptionListTerm>
|
|
<DescriptionListDescription>
|
|
{serverInfo.memoryInfo?.usedFormated}
|
|
</DescriptionListDescription>
|
|
</DescriptionListGroup>
|
|
</DescriptionList>
|
|
</CardBody>
|
|
</Card>
|
|
</GridItem>
|
|
<GridItem lg={10} sm={12}>
|
|
<Card className="keycloak__dashboard_card">
|
|
<CardTitle>{t("profile")}</CardTitle>
|
|
<CardBody>
|
|
<DescriptionList>
|
|
<DescriptionListGroup>
|
|
<DescriptionListTerm>
|
|
{t("enabledFeatures")}{" "}
|
|
<HelpItem
|
|
fieldLabelId="enabledFeatures"
|
|
helpText={t("infoEnabledFeatures")}
|
|
/>
|
|
</DescriptionListTerm>
|
|
<DescriptionListDescription>
|
|
<List variant={ListVariant.inline}>
|
|
{enabledFeatures.map((feature) => (
|
|
<FeatureItem
|
|
key={feature.name}
|
|
feature={feature}
|
|
/>
|
|
))}
|
|
</List>
|
|
</DescriptionListDescription>
|
|
</DescriptionListGroup>
|
|
<DescriptionListGroup>
|
|
<DescriptionListTerm>
|
|
{t("disabledFeatures")}{" "}
|
|
<HelpItem
|
|
fieldLabelId="disabledFeatures"
|
|
helpText={t("infoDisabledFeatures")}
|
|
/>
|
|
</DescriptionListTerm>
|
|
<DescriptionListDescription>
|
|
<List variant={ListVariant.inline}>
|
|
{disabledFeatures.map((feature) => (
|
|
<FeatureItem
|
|
key={feature.name}
|
|
feature={feature}
|
|
/>
|
|
))}
|
|
</List>
|
|
</DescriptionListDescription>
|
|
</DescriptionListGroup>
|
|
</DescriptionList>
|
|
</CardBody>
|
|
</Card>
|
|
</GridItem>
|
|
</Grid>
|
|
</PageSection>
|
|
</Tab>
|
|
<Tab
|
|
id="providers"
|
|
data-testid="providersTab"
|
|
title={<TabTitleText>{t("providerInfo")}</TabTitleText>}
|
|
{...providersTab}
|
|
>
|
|
<ProviderInfo />
|
|
</Tab>
|
|
</RoutableTabs>
|
|
</PageSection>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default function DashboardSection() {
|
|
const { realm } = useRealm();
|
|
const isMasterRealm = realm === "master";
|
|
return (
|
|
<>
|
|
{!isMasterRealm && <EmptyDashboard />}
|
|
{isMasterRealm && <Dashboard />}
|
|
</>
|
|
);
|
|
}
|