keycloak-scim/src/user-federation/shared/SettingsCache.tsx

291 lines
9.4 KiB
TypeScript
Raw Normal View History

2020-11-25 14:50:40 +00:00
import {
FormGroup,
Select,
SelectOption,
SelectVariant,
TextInput,
} from "@patternfly/react-core";
import { useTranslation } from "react-i18next";
import React, { useState } from "react";
import { HelpItem } from "../../components/help-enabler/HelpItem";
import { UseFormMethods, useWatch, Controller } from "react-hook-form";
import { FormAccess } from "../../components/form-access/FormAccess";
import _ from "lodash";
import { WizardSectionHeader } from "../../components/wizard-section-header/WizardSectionHeader";
export type SettingsCacheProps = {
form: UseFormMethods;
showSectionHeading?: boolean;
showSectionDescription?: boolean;
};
export const SettingsCache = ({
form,
showSectionHeading = false,
showSectionDescription = false,
}: SettingsCacheProps) => {
const { t } = useTranslation("user-federation");
2021-12-14 14:56:36 +00:00
const { t: helpText } = useTranslation("user-federation-help");
const [isCachePolicyDropdownOpen, setIsCachePolicyDropdownOpen] =
useState(false);
2020-11-25 14:50:40 +00:00
const [isEvictionHourDropdownOpen, setIsEvictionHourDropdownOpen] =
useState(false);
const cachePolicyType = useWatch({
control: form.control,
name: "config.cachePolicy",
});
const [isEvictionMinuteDropdownOpen, setIsEvictionMinuteDropdownOpen] =
useState(false);
2020-11-25 16:17:50 +00:00
const [isEvictionDayDropdownOpen, setIsEvictionDayDropdownOpen] =
useState(false);
2020-11-25 14:50:40 +00:00
const hourOptions = [
<SelectOption key={0} value={[`${0}`]} isPlaceholder>
{[`0${0}`]}
</SelectOption>,
];
let hourDisplay = "";
for (let index = 1; index < 24; index++) {
if (index < 10) {
hourDisplay = `0${index}`;
} else {
hourDisplay = `${index}`;
}
hourOptions.push(
<SelectOption key={index} value={[`${index}`]}>
{hourDisplay}
</SelectOption>
);
2020-11-25 14:50:40 +00:00
}
const minuteOptions = [
<SelectOption key={0} value={[`${0}`]} isPlaceholder>
{[`0${0}`]}
</SelectOption>,
2020-11-25 14:50:40 +00:00
];
let minuteDisplay = "";
for (let index = 1; index < 60; index++) {
if (index < 10) {
minuteDisplay = `0${index}`;
} else {
minuteDisplay = `${index}`;
}
minuteOptions.push(
<SelectOption key={index} value={[`${index}`]}>
{minuteDisplay}
</SelectOption>
);
2020-11-25 14:50:40 +00:00
}
return (
<>
{showSectionHeading && (
<WizardSectionHeader
title={t("cacheSettings")}
description={helpText("cacheSettingsDescription")}
showDescription={showSectionDescription}
/>
)}
2020-11-25 16:17:50 +00:00
<FormAccess role="manage-realm" isHorizontal>
<FormGroup
label={t("cachePolicy")}
labelIcon={
<HelpItem
2021-12-14 14:56:36 +00:00
helpText="user-federation-help:cachePolicyHelp"
fieldLabelId="user-federation:cachePolicy"
/>
}
fieldId="kc-cache-policy"
>
2020-11-25 14:50:40 +00:00
<Controller
name="config.cachePolicy"
defaultValue={["DEFAULT"]}
control={form.control}
2020-11-25 14:50:40 +00:00
render={({ onChange, value }) => (
<Select
toggleId="kc-cache-policy"
required
onToggle={() =>
setIsCachePolicyDropdownOpen(!isCachePolicyDropdownOpen)
}
isOpen={isCachePolicyDropdownOpen}
onSelect={(_, value) => {
onChange(value as string);
setIsCachePolicyDropdownOpen(false);
}}
selections={value}
variant={SelectVariant.single}
2021-02-19 21:22:05 +00:00
data-testid="kerberos-cache-policy"
2020-11-25 14:50:40 +00:00
>
<SelectOption key={0} value={["DEFAULT"]} isPlaceholder />
<SelectOption key={1} value={["EVICT_DAILY"]} />
<SelectOption key={2} value={["EVICT_WEEKLY"]} />
<SelectOption key={3} value={["MAX_LIFESPAN"]} />
<SelectOption key={4} value={["NO_CACHE"]} />
2020-11-25 14:50:40 +00:00
</Select>
)}
></Controller>
</FormGroup>
{_.isEqual(cachePolicyType, ["EVICT_WEEKLY"]) ? (
<FormGroup
label={t("evictionDay")}
labelIcon={
<HelpItem
2021-12-14 14:56:36 +00:00
helpText="user-federation-help:evictionDayHelp"
fieldLabelId="user-federation:evictionDay"
/>
}
isRequired
fieldId="kc-eviction-day"
>
<Controller
name="config.evictionDay[0]"
defaultValue={"1"}
control={form.control}
render={({ onChange, value }) => (
<Select
2021-02-19 21:22:05 +00:00
data-testid="cache-day"
toggleId="kc-eviction-day"
required
onToggle={() =>
setIsEvictionDayDropdownOpen(!isEvictionDayDropdownOpen)
}
isOpen={isEvictionDayDropdownOpen}
onSelect={(_, value) => {
onChange(value as string);
setIsEvictionDayDropdownOpen(false);
}}
selections={value}
variant={SelectVariant.single}
>
<SelectOption key={0} value="1" isPlaceholder>
{t("common:Sunday")}
</SelectOption>
<SelectOption key={1} value="2">
{t("common:Monday")}
</SelectOption>
<SelectOption key={2} value="3">
{t("common:Tuesday")}
</SelectOption>
<SelectOption key={3} value="4">
{t("common:Wednesday")}
</SelectOption>
<SelectOption key={4} value="5">
{t("common:Thursday")}
</SelectOption>
<SelectOption key={5} value="6">
{t("common:Friday")}
</SelectOption>
<SelectOption key={6} value="7">
{t("common:Saturday")}
</SelectOption>
</Select>
)}
></Controller>
</FormGroup>
2021-08-26 12:15:28 +00:00
) : null}
{_.isEqual(cachePolicyType, ["EVICT_DAILY"]) ||
_.isEqual(cachePolicyType, ["EVICT_WEEKLY"]) ? (
<>
<FormGroup
label={t("evictionHour")}
labelIcon={
<HelpItem
2021-12-14 14:56:36 +00:00
helpText="user-federation-help:evictionHourHelp"
fieldLabelId="user-federation:evictionHour"
2020-11-25 14:50:40 +00:00
/>
}
isRequired
fieldId="kc-eviction-hour"
>
<Controller
name="config.evictionHour"
defaultValue={["0"]}
control={form.control}
render={({ onChange, value }) => (
<Select
toggleId="kc-eviction-hour"
onToggle={() =>
setIsEvictionHourDropdownOpen(!isEvictionHourDropdownOpen)
}
isOpen={isEvictionHourDropdownOpen}
onSelect={(_, value) => {
onChange(value as string);
setIsEvictionHourDropdownOpen(false);
}}
selections={value}
variant={SelectVariant.single}
>
{hourOptions}
</Select>
)}
></Controller>
</FormGroup>
<FormGroup
label={t("evictionMinute")}
labelIcon={
<HelpItem
2021-12-14 14:56:36 +00:00
helpText="user-federation-help:evictionMinuteHelp"
fieldLabelId="user-federation:evictionMinute"
/>
}
isRequired
fieldId="kc-eviction-minute"
>
<Controller
name="config.evictionMinute"
defaultValue={["0"]}
control={form.control}
render={({ onChange, value }) => (
<Select
toggleId="kc-eviction-minute"
onToggle={() =>
setIsEvictionMinuteDropdownOpen(
!isEvictionMinuteDropdownOpen
)
}
isOpen={isEvictionMinuteDropdownOpen}
onSelect={(_, value) => {
onChange(value as string);
setIsEvictionMinuteDropdownOpen(false);
}}
selections={value}
variant={SelectVariant.single}
>
{minuteOptions}
</Select>
)}
></Controller>
</FormGroup>
</>
2021-08-26 12:15:28 +00:00
) : null}
{_.isEqual(cachePolicyType, ["MAX_LIFESPAN"]) ? (
<FormGroup
label={t("maxLifespan")}
labelIcon={
<HelpItem
2021-12-14 14:56:36 +00:00
helpText="user-federation-help:maxLifespanHelp"
fieldLabelId="user-federation:maxLifespan"
/>
}
fieldId="kc-max-lifespan"
>
<TextInput
type="text"
id="kc-max-lifespan"
name="config.maxLifespan[0]"
ref={form.register}
2021-02-19 21:22:05 +00:00
data-testid="kerberos-cache-lifespan"
2020-11-25 14:50:40 +00:00
/>
</FormGroup>
2021-08-26 12:15:28 +00:00
) : null}
2020-11-25 16:17:50 +00:00
</FormAccess>
</>
);
};