2020-11-25 14:50:40 +00:00
|
|
|
import {
|
|
|
|
FormGroup,
|
|
|
|
Select,
|
|
|
|
SelectOption,
|
|
|
|
SelectVariant,
|
|
|
|
TextInput,
|
|
|
|
} from "@patternfly/react-core";
|
2020-10-30 20:15:37 +00:00
|
|
|
import { useTranslation } from "react-i18next";
|
2020-12-16 07:02:41 +00:00
|
|
|
import React, { useEffect, useState } from "react";
|
|
|
|
import { HelpItem } from "../../components/help-enabler/HelpItem";
|
2020-11-25 14:50:40 +00:00
|
|
|
import { useForm, Controller } from "react-hook-form";
|
2020-12-16 07:02:41 +00:00
|
|
|
import { convertToFormValues } from "../../util";
|
2020-11-25 14:50:40 +00:00
|
|
|
import ComponentRepresentation from "keycloak-admin/lib/defs/componentRepresentation";
|
2020-12-16 07:02:41 +00:00
|
|
|
import { FormAccess } from "../../components/form-access/FormAccess";
|
|
|
|
import { useAdminClient } from "../../context/auth/AdminClient";
|
|
|
|
import { useParams } from "react-router-dom";
|
2020-10-30 20:15:37 +00:00
|
|
|
|
|
|
|
export const LdapSettingsCache = () => {
|
|
|
|
const { t } = useTranslation("user-federation");
|
|
|
|
const helpText = useTranslation("user-federation-help").t;
|
|
|
|
|
2020-12-16 07:02:41 +00:00
|
|
|
const adminClient = useAdminClient();
|
|
|
|
const { control, setValue, register } = useForm<ComponentRepresentation>();
|
|
|
|
const { id } = useParams<{ id: string }>();
|
|
|
|
|
|
|
|
const convertToDays = (num: string) => {
|
|
|
|
switch (num) {
|
|
|
|
case "1":
|
|
|
|
return t("common:Sunday");
|
|
|
|
case "2":
|
|
|
|
return t("common:Monday");
|
|
|
|
case "3":
|
|
|
|
return t("common:Tuesday");
|
|
|
|
case "4":
|
|
|
|
return t("common:Wednesday");
|
|
|
|
case "5":
|
|
|
|
return t("common:Thursday");
|
|
|
|
case "6":
|
|
|
|
return t("common:Friday");
|
|
|
|
case "7":
|
|
|
|
return t("common:Saturday");
|
|
|
|
default:
|
|
|
|
return t("common:selectOne");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const setupForm = (component: ComponentRepresentation) => {
|
|
|
|
Object.entries(component).map((entry) => {
|
|
|
|
if (entry[0] === "config") {
|
|
|
|
convertToFormValues(entry[1], "config", setValue);
|
|
|
|
if (entry[1].evictionDay) {
|
|
|
|
setValue(
|
|
|
|
"config.evictionDay",
|
|
|
|
convertToDays(entry[1].evictionDay[0])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
setValue(entry[0], entry[1]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
(async () => {
|
|
|
|
const fetchedComponent = await adminClient.components.findOne({ id });
|
|
|
|
if (fetchedComponent) {
|
|
|
|
setupForm(fetchedComponent);
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
}, []);
|
|
|
|
|
2020-11-25 14:50:40 +00:00
|
|
|
const [isCachePolicyDropdownOpen, setIsCachePolicyDropdownOpen] = useState(
|
|
|
|
false
|
|
|
|
);
|
|
|
|
|
|
|
|
const [isEvictionHourDropdownOpen, setIsEvictionHourDropdownOpen] = useState(
|
|
|
|
false
|
|
|
|
);
|
2020-12-16 07:02:41 +00:00
|
|
|
|
2020-11-25 14:50:40 +00:00
|
|
|
const [
|
|
|
|
isEvictionMinuteDropdownOpen,
|
|
|
|
setIsEvictionMinuteDropdownOpen,
|
|
|
|
] = useState(false);
|
2020-11-25 16:17:50 +00:00
|
|
|
|
2020-11-25 14:50:40 +00:00
|
|
|
const [isEvictionDayDropdownOpen, setIsEvictionDayDropdownOpen] = useState(
|
|
|
|
false
|
|
|
|
);
|
|
|
|
|
|
|
|
const hourOptions = [
|
|
|
|
<SelectOption key={0} value={t("common:selectOne")} isPlaceholder />,
|
|
|
|
];
|
|
|
|
for (let index = 1; index <= 24; index++) {
|
|
|
|
hourOptions.push(<SelectOption key={index + 1} value={index} />);
|
|
|
|
}
|
|
|
|
|
|
|
|
const minuteOptions = [
|
|
|
|
<SelectOption key={0} value={t("common:selectOne")} isPlaceholder />,
|
|
|
|
];
|
|
|
|
for (let index = 1; index <= 60; index++) {
|
|
|
|
minuteOptions.push(<SelectOption key={index + 1} value={index} />);
|
|
|
|
}
|
|
|
|
|
2020-10-30 20:15:37 +00:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{/* Cache settings */}
|
2020-11-25 16:17:50 +00:00
|
|
|
<FormAccess role="manage-realm" isHorizontal>
|
2020-10-30 20:15:37 +00:00
|
|
|
<FormGroup
|
|
|
|
label={t("cachePolicy")}
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText={helpText("cachePolicyHelp")}
|
|
|
|
forLabel={t("cachePolicy")}
|
|
|
|
forID="kc-cache-policy"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
fieldId="kc-cache-policy"
|
|
|
|
>
|
2020-11-25 14:50:40 +00:00
|
|
|
<Controller
|
2020-12-16 07:02:41 +00:00
|
|
|
name="config.cachePolicy"
|
2020-11-25 14:50:40 +00:00
|
|
|
defaultValue=""
|
|
|
|
control={control}
|
|
|
|
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}
|
|
|
|
>
|
|
|
|
<SelectOption key={0} value="Choose..." isPlaceholder />
|
|
|
|
<SelectOption key={1} value="DEFAULT" />
|
|
|
|
<SelectOption key={2} value="EVICT_DAILY" />
|
|
|
|
<SelectOption key={3} value="EVICT_WEEKLY" />
|
|
|
|
<SelectOption key={4} value="MAX_LIFESPAN" />
|
|
|
|
<SelectOption key={5} value="NO_CACHE" />
|
|
|
|
</Select>
|
|
|
|
)}
|
|
|
|
></Controller>
|
2020-10-30 20:15:37 +00:00
|
|
|
</FormGroup>
|
2020-11-25 14:50:40 +00:00
|
|
|
|
|
|
|
{/* TODO: Field shows only if cache policy is EVICT_WEEKLY */}
|
|
|
|
<FormGroup
|
|
|
|
label={t("evictionDay")}
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText={helpText("evictionDayHelp")}
|
|
|
|
forLabel={t("evictionDay")}
|
|
|
|
forID="kc-eviction-day"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
fieldId="kc-eviction-day"
|
|
|
|
>
|
|
|
|
<Controller
|
2020-12-16 07:02:41 +00:00
|
|
|
name="config.evictionDay"
|
2020-11-25 14:50:40 +00:00
|
|
|
defaultValue=""
|
|
|
|
control={control}
|
|
|
|
render={({ onChange, value }) => (
|
|
|
|
<Select
|
|
|
|
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={t("common:selectOne")}
|
|
|
|
isPlaceholder
|
|
|
|
/>
|
|
|
|
<SelectOption key={1} value={t("common:Sunday")} />
|
|
|
|
<SelectOption key={2} value={t("common:Monday")} />
|
|
|
|
<SelectOption key={3} value={t("common:Tuesday")} />
|
|
|
|
<SelectOption key={4} value={t("common:Wednesday")} />
|
|
|
|
<SelectOption key={5} value={t("common:Thursday")} />
|
|
|
|
<SelectOption key={6} value={t("common:Friday")} />
|
|
|
|
<SelectOption key={7} value={t("common:Saturday")} />
|
|
|
|
</Select>
|
|
|
|
)}
|
|
|
|
></Controller>
|
|
|
|
</FormGroup>
|
|
|
|
|
|
|
|
{/* TODO: Field shows only if cache policy is EVICT_WEEKLY or EVICT_DAILY */}
|
|
|
|
{/* TODO: Investigate whether this should be a number field instead of a dropdown/text field */}
|
|
|
|
<FormGroup
|
|
|
|
label={t("evictionHour")}
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText={helpText("evictionHourHelp")}
|
|
|
|
forLabel={t("evictionHour")}
|
|
|
|
forID="kc-eviction-hour"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
fieldId="kc-eviction-hour"
|
|
|
|
>
|
|
|
|
<Controller
|
2020-12-16 07:02:41 +00:00
|
|
|
name="config.evictionHour"
|
2020-11-25 14:50:40 +00:00
|
|
|
defaultValue=""
|
|
|
|
control={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>
|
|
|
|
|
|
|
|
{/* TODO: Field shows only if cache policy is EVICT_WEEKLY or EVICT_DAILY */}
|
|
|
|
{/* TODO: Investigate whether this should be a number field instead of a dropdown/text field */}
|
|
|
|
<FormGroup
|
|
|
|
label={t("evictionMinute")}
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText={helpText("evictionMinuteHelp")}
|
|
|
|
forLabel={t("evictionMinute")}
|
|
|
|
forID="kc-eviction-minute"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
fieldId="kc-eviction-minute"
|
|
|
|
>
|
|
|
|
<Controller
|
2020-12-16 07:02:41 +00:00
|
|
|
name="config.evictionMinute"
|
2020-11-25 14:50:40 +00:00
|
|
|
defaultValue=""
|
|
|
|
control={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>
|
|
|
|
|
|
|
|
{/* TODO: Field shows only if cache policy is MAX_LIFESPAN */}
|
|
|
|
<FormGroup
|
|
|
|
label={t("maxLifespan")}
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText={helpText("maxLifespanHelp")}
|
|
|
|
forLabel={t("maxLifespan")}
|
|
|
|
forID="kc-max-lifespan"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
fieldId="kc-max-lifespan"
|
|
|
|
>
|
|
|
|
<TextInput
|
|
|
|
isRequired
|
|
|
|
type="text"
|
|
|
|
id="kc-max-lifespan"
|
2020-12-16 07:02:41 +00:00
|
|
|
name="config.maxLifespan"
|
2020-11-25 14:50:40 +00:00
|
|
|
ref={register}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
2020-11-25 16:17:50 +00:00
|
|
|
</FormAccess>
|
2020-10-30 20:15:37 +00:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|