56eb774dd3
* added routing for viewing client profile * added add executors form template * added add executors form template * add executor: wip * add executor: wip * add executor: wip * add executor: wip * add executor: wip * add executor: wip * add executor: wip * add executor: wip * add executor: wip * added adding excutors to profiles * added displaying executors - wip * added displaying executors - wip * added navigation to client profile edit on executor creation * replaced table with list for listing executors added * added support for editing client profile * added logic making executors with config links only * added read only values for edit/view client temporarily * added helpText for added executors listed in executors list * added helpText for added executors listed in executors list * added deleting executor from client profile * fixed deleting client profile and fixed messages for delete modals * fixed message for delete clinet profile modal * combined delete dialogs for client profile and executor * displaying global executors for global profiles, hiding add executor button * fixed eslint issue * fixed executors list * added back button to global profile view/edit view * fixed test * added global batche and hid actions dropdown for global profiles * fixed switch on/off labels * fixed hide/display items for global and non-global profiles * added isDirty * feedback fixes * feedback fixes * feedback fixes * feedback fixes * feedback fixes * feedback fix * small refactor * added name and removed unused state * fixed executor creation * fixed executor creation * added saving edited client profile * added saving edited client profile * improved trash icon styles * test fix * Some code suggestions * Some more code suggestions * feedback fixes * feedback fixes * use find instead of filter * feedback fixes * added defaultValues for executors * removed defaultValues for executors * final feedback fixes * minor fixes Co-authored-by: Agnieszka Gancarczyk <agancarc@redhat.com> Co-authored-by: Erik Jan de Wit <erikjan.dewit@gmail.com> Co-authored-by: Jon Koops <jonkoops@gmail.com>
482 lines
17 KiB
TypeScript
482 lines
17 KiB
TypeScript
import React, { useEffect, useMemo, useState } from "react";
|
|
import {
|
|
ActionGroup,
|
|
AlertVariant,
|
|
Button,
|
|
ButtonVariant,
|
|
DataList,
|
|
DataListCell,
|
|
DataListItem,
|
|
DataListItemCells,
|
|
DataListItemRow,
|
|
Divider,
|
|
DropdownItem,
|
|
Flex,
|
|
FlexItem,
|
|
FormGroup,
|
|
PageSection,
|
|
Text,
|
|
TextArea,
|
|
TextInput,
|
|
TextVariants,
|
|
ValidatedOptions,
|
|
} from "@patternfly/react-core";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useForm } from "react-hook-form";
|
|
import { FormAccess } from "../components/form-access/FormAccess";
|
|
import { ViewHeader } from "../components/view-header/ViewHeader";
|
|
import { Link, useHistory, useParams } from "react-router-dom";
|
|
import { useAlerts } from "../components/alert/Alerts";
|
|
import { useAdminClient, useFetch } from "../context/auth/AdminClient";
|
|
import type ClientProfileRepresentation from "@keycloak/keycloak-admin-client/lib/defs/clientProfileRepresentation";
|
|
import { HelpItem } from "../components/help-enabler/HelpItem";
|
|
import { PlusCircleIcon, TrashIcon } from "@patternfly/react-icons";
|
|
import "./RealmSettingsSection.css";
|
|
import { useConfirmDialog } from "../components/confirm-dialog/ConfirmDialog";
|
|
import { toAddExecutor } from "./routes/AddExecutor";
|
|
import { useServerInfo } from "../context/server-info/ServerInfoProvider";
|
|
import type { ClientProfileParams } from "./routes/ClientProfile";
|
|
|
|
type ClientProfileForm = Required<ClientProfileRepresentation>;
|
|
|
|
const defaultValues: ClientProfileForm = {
|
|
name: "",
|
|
description: "",
|
|
executors: [],
|
|
};
|
|
|
|
export const ClientProfileForm = () => {
|
|
const { t } = useTranslation("realm-settings");
|
|
const history = useHistory();
|
|
const {
|
|
handleSubmit,
|
|
setValue,
|
|
register,
|
|
errors,
|
|
formState: { isDirty },
|
|
} = useForm<ClientProfileForm>({
|
|
defaultValues,
|
|
mode: "onChange",
|
|
});
|
|
|
|
const { addAlert, addError } = useAlerts();
|
|
const adminClient = useAdminClient();
|
|
const [globalProfiles, setGlobalProfiles] = useState<
|
|
ClientProfileRepresentation[]
|
|
>([]);
|
|
const [profiles, setProfiles] = useState<ClientProfileRepresentation[]>([]);
|
|
const { realm, profileName } = useParams<ClientProfileParams>();
|
|
const serverInfo = useServerInfo();
|
|
const executorTypes = useMemo(
|
|
() =>
|
|
serverInfo.componentTypes?.[
|
|
"org.keycloak.services.clientpolicy.executor.ClientPolicyExecutorProvider"
|
|
],
|
|
[]
|
|
);
|
|
const [executorToDelete, setExecutorToDelete] =
|
|
useState<{ idx: number; name: string }>();
|
|
const editMode = profileName ? true : false;
|
|
const [key, setKey] = useState(0);
|
|
const reload = () => setKey(new Date().getTime());
|
|
|
|
useFetch(
|
|
() =>
|
|
adminClient.clientPolicies.listProfiles({ includeGlobalProfiles: true }),
|
|
(profiles) => {
|
|
setGlobalProfiles(profiles.globalProfiles ?? []);
|
|
setProfiles(profiles.profiles ?? []);
|
|
},
|
|
[key]
|
|
);
|
|
|
|
const save = async (form: ClientProfileForm) => {
|
|
const updatedProfiles = editMode ? patchProfiles(form) : addProfile(form);
|
|
|
|
try {
|
|
await adminClient.clientPolicies.createProfiles({
|
|
profiles: updatedProfiles,
|
|
globalProfiles: globalProfiles,
|
|
});
|
|
|
|
addAlert(
|
|
editMode
|
|
? t("realm-settings:updateClientProfileSuccess")
|
|
: t("realm-settings:createClientProfileSuccess"),
|
|
AlertVariant.success
|
|
);
|
|
|
|
history.push(`/${realm}/realm-settings/clientPolicies/${form.name}`);
|
|
} catch (error) {
|
|
addError(
|
|
editMode
|
|
? "realm-settings:updateClientProfileError"
|
|
: "realm-settings:createClientProfileError",
|
|
error
|
|
);
|
|
}
|
|
};
|
|
|
|
const patchProfiles = (data: ClientProfileRepresentation) =>
|
|
profiles.map((profile) => {
|
|
if (profile.name !== profileName) {
|
|
return profile;
|
|
}
|
|
|
|
return {
|
|
...profile,
|
|
name: data.name,
|
|
description: data.description,
|
|
};
|
|
});
|
|
|
|
const addProfile = (data: ClientProfileRepresentation) =>
|
|
profiles.concat({
|
|
...data,
|
|
executors: [],
|
|
});
|
|
|
|
const [toggleDeleteDialog, DeleteConfirm] = useConfirmDialog({
|
|
titleKey: executorToDelete?.name!
|
|
? t("deleteExecutorProfileConfirmTitle")
|
|
: t("deleteClientProfileConfirmTitle"),
|
|
messageKey: executorToDelete?.name!
|
|
? t("deleteExecutorProfileConfirm", {
|
|
executorName: executorToDelete.name!,
|
|
})
|
|
: t("deleteClientProfileConfirm", {
|
|
profileName,
|
|
}),
|
|
continueButtonLabel: t("delete"),
|
|
continueButtonVariant: ButtonVariant.danger,
|
|
|
|
onConfirm: async () => {
|
|
if (executorToDelete?.name!) {
|
|
profileExecutors.splice(executorToDelete.idx!, 1);
|
|
try {
|
|
await adminClient.clientPolicies.createProfiles({
|
|
profiles: profiles,
|
|
globalProfiles,
|
|
});
|
|
addAlert(t("deleteExecutorSuccess"), AlertVariant.success);
|
|
history.push(
|
|
`/${realm}/realm-settings/clientPolicies/${profileName}`
|
|
);
|
|
} catch (error) {
|
|
addError(t("deleteExecutorError"), error);
|
|
}
|
|
} else {
|
|
const updatedProfiles = profiles.filter(
|
|
(profile) => profile.name !== profileName
|
|
);
|
|
|
|
try {
|
|
await adminClient.clientPolicies.createProfiles({
|
|
profiles: updatedProfiles,
|
|
globalProfiles,
|
|
});
|
|
addAlert(t("deleteClientSuccess"), AlertVariant.success);
|
|
history.push(`/${realm}/realm-settings/clientPolicies`);
|
|
} catch (error) {
|
|
addError(t("deleteClientError"), error);
|
|
}
|
|
}
|
|
},
|
|
});
|
|
|
|
const profile = profiles.find((profile) => profile.name === profileName);
|
|
const profileExecutors = profile?.executors || [];
|
|
const globalProfile = globalProfiles.find(
|
|
(globalProfile) => globalProfile.name === profileName
|
|
);
|
|
const globalProfileExecutors = globalProfile?.executors || [];
|
|
|
|
useEffect(() => {
|
|
setValue("name", globalProfile?.name ?? profile?.name);
|
|
setValue("description", globalProfile?.description ?? profile?.description);
|
|
}, [profiles]);
|
|
|
|
return (
|
|
<>
|
|
<DeleteConfirm />
|
|
<ViewHeader
|
|
titleKey={editMode ? profileName : t("newClientProfile")}
|
|
badges={[
|
|
{
|
|
id: "global-client-profile-badge",
|
|
text: globalProfile ? t("global") : "",
|
|
},
|
|
]}
|
|
divider
|
|
dropdownItems={
|
|
!globalProfile
|
|
? [
|
|
<DropdownItem
|
|
key="delete"
|
|
value="delete"
|
|
onClick={toggleDeleteDialog}
|
|
data-testid="deleteClientProfileDropdown"
|
|
>
|
|
{t("deleteClientProfile")}
|
|
</DropdownItem>,
|
|
]
|
|
: undefined
|
|
}
|
|
/>
|
|
<PageSection variant="light">
|
|
<FormAccess isHorizontal role="view-realm" className="pf-u-mt-lg">
|
|
<FormGroup
|
|
label={t("newClientProfileName")}
|
|
fieldId="kc-name"
|
|
helperText={t("createClientProfileNameHelperText")}
|
|
isRequired
|
|
helperTextInvalid={t("common:required")}
|
|
validated={
|
|
errors.name ? ValidatedOptions.error : ValidatedOptions.default
|
|
}
|
|
>
|
|
<TextInput
|
|
ref={register({ required: true })}
|
|
name="name"
|
|
type="text"
|
|
id="name"
|
|
aria-label={t("name")}
|
|
data-testid="client-profile-name"
|
|
isReadOnly={!!globalProfile}
|
|
/>
|
|
</FormGroup>
|
|
<FormGroup label={t("common:description")} fieldId="kc-description">
|
|
<TextArea
|
|
ref={register()}
|
|
name="description"
|
|
type="text"
|
|
id="description"
|
|
aria-label={t("description")}
|
|
data-testid="client-profile-description"
|
|
isReadOnly={!!globalProfile}
|
|
/>
|
|
</FormGroup>
|
|
<ActionGroup>
|
|
{!globalProfile && (
|
|
<Button
|
|
variant="primary"
|
|
onClick={() => handleSubmit(save)()}
|
|
data-testid="saveCreateProfile"
|
|
isDisabled={!isDirty}
|
|
>
|
|
{t("common:save")}
|
|
</Button>
|
|
)}
|
|
{editMode && !globalProfile && (
|
|
<Button
|
|
id={"reloadProfile"}
|
|
variant="link"
|
|
data-testid={"reloadProfile"}
|
|
isDisabled={!isDirty}
|
|
onClick={reload}
|
|
>
|
|
{t("realm-settings:reload")}
|
|
</Button>
|
|
)}
|
|
{!editMode && !globalProfile && (
|
|
<Button
|
|
id={"cancelCreateProfile"}
|
|
component={(props) => (
|
|
<Link
|
|
{...props}
|
|
to={`/${realm}/realm-settings/clientPolicies`}
|
|
/>
|
|
)}
|
|
data-testid={"cancelCreateProfile"}
|
|
>
|
|
{t("common:cancel")}
|
|
</Button>
|
|
)}
|
|
</ActionGroup>
|
|
{editMode && (
|
|
<>
|
|
<Flex>
|
|
<FlexItem>
|
|
<Text className="kc-executors" component={TextVariants.h1}>
|
|
{t("executors")}
|
|
<HelpItem
|
|
helpText={t("realm-settings:executorsHelpText")}
|
|
forLabel={t("executorsHelpItem")}
|
|
forID={t("executors")}
|
|
/>
|
|
</Text>
|
|
</FlexItem>
|
|
{profile && (
|
|
<FlexItem align={{ default: "alignRight" }}>
|
|
<Button
|
|
id="addExecutor"
|
|
component={(props) => (
|
|
<Link
|
|
{...props}
|
|
to={toAddExecutor({
|
|
realm,
|
|
profileName,
|
|
})}
|
|
></Link>
|
|
)}
|
|
variant="link"
|
|
className="kc-addExecutor"
|
|
data-testid="cancelCreateProfile"
|
|
icon={<PlusCircleIcon />}
|
|
>
|
|
{t("realm-settings:addExecutor")}
|
|
</Button>
|
|
</FlexItem>
|
|
)}
|
|
</Flex>
|
|
{profileExecutors.length > 0 && (
|
|
<DataList aria-label={t("executors")} isCompact>
|
|
{profileExecutors.map((executor, idx) => (
|
|
<DataListItem
|
|
aria-labelledby={"executors-list-item"}
|
|
key={executor.executor}
|
|
id={executor.executor}
|
|
>
|
|
<DataListItemRow data-testid="executors-list-row">
|
|
<DataListItemCells
|
|
dataListCells={[
|
|
<DataListCell
|
|
key="executor"
|
|
data-testid="executor-type"
|
|
>
|
|
{Object.keys(executor).length !== 0 ? (
|
|
<Link
|
|
data-testid="executor-type-link"
|
|
to={""}
|
|
className="kc-executor-link"
|
|
>
|
|
{executor.executor}
|
|
</Link>
|
|
) : (
|
|
executor.executor
|
|
)}
|
|
{executorTypes
|
|
?.filter(
|
|
(type) => type.id === executor.executor
|
|
)
|
|
.map((type) => (
|
|
<>
|
|
<HelpItem
|
|
key={type.id}
|
|
helpText={type.helpText}
|
|
forLabel={t("executorTypeTextHelpText")}
|
|
forID={t(`common:helpLabel`, {
|
|
label: t("executorTypeTextHelpText"),
|
|
})}
|
|
/>
|
|
<Button
|
|
variant="link"
|
|
isInline
|
|
icon={
|
|
<TrashIcon
|
|
key={`executorType-trash-icon-${type.id}`}
|
|
className="kc-executor-trash-icon"
|
|
data-testid="deleteExecutor"
|
|
/>
|
|
}
|
|
onClick={() => {
|
|
toggleDeleteDialog();
|
|
setExecutorToDelete({
|
|
idx: idx,
|
|
name: type.id,
|
|
});
|
|
}}
|
|
></Button>
|
|
</>
|
|
))}
|
|
</DataListCell>,
|
|
]}
|
|
/>
|
|
</DataListItemRow>
|
|
</DataListItem>
|
|
))}
|
|
</DataList>
|
|
)}
|
|
{globalProfileExecutors.length > 0 && (
|
|
<>
|
|
<DataList aria-label={t("executors")} isCompact>
|
|
{globalProfileExecutors.map((executor) => (
|
|
<DataListItem
|
|
aria-labelledby={"global-executors-list-item"}
|
|
key={executor.executor}
|
|
id={executor.executor}
|
|
>
|
|
<DataListItemRow data-testid="global-executors-list-row">
|
|
<DataListItemCells
|
|
dataListCells={[
|
|
<DataListCell
|
|
key="executor"
|
|
data-testid="global-executor-type"
|
|
>
|
|
{Object.keys(executor).length !== 0 ? (
|
|
<Link
|
|
data-testid="global-executor-type-link"
|
|
to={""}
|
|
className="kc-global-executor-link"
|
|
>
|
|
{executor.executor}
|
|
</Link>
|
|
) : (
|
|
executor.executor
|
|
)}
|
|
{executorTypes
|
|
?.filter(
|
|
(type) => type.id === executor.executor
|
|
)
|
|
.map((type) => (
|
|
<HelpItem
|
|
key={type.id}
|
|
helpText={type.helpText}
|
|
forLabel={t("executorTypeTextHelpText")}
|
|
forID={t(`common:helpLabel`, {
|
|
label: t("executorTypeTextHelpText"),
|
|
})}
|
|
/>
|
|
))}
|
|
</DataListCell>,
|
|
]}
|
|
/>
|
|
</DataListItemRow>
|
|
</DataListItem>
|
|
))}
|
|
</DataList>
|
|
<Button
|
|
id="backToClientPolicies"
|
|
component={(props) => (
|
|
<Link
|
|
{...props}
|
|
to={`/${realm}/realm-settings/clientPolicies`}
|
|
/>
|
|
)}
|
|
variant="primary"
|
|
className="kc-backToPolicies"
|
|
data-testid="backToClientPolicies"
|
|
>
|
|
{t("realm-settings:back")}
|
|
</Button>
|
|
</>
|
|
)}
|
|
{profileExecutors.length === 0 &&
|
|
globalProfileExecutors.length === 0 && (
|
|
<>
|
|
<Divider />
|
|
<Text
|
|
className="kc-emptyExecutors"
|
|
component={TextVariants.h6}
|
|
>
|
|
{t("realm-settings:emptyExecutors")}
|
|
</Text>
|
|
</>
|
|
)}
|
|
</>
|
|
)}
|
|
</FormAccess>
|
|
</PageSection>
|
|
</>
|
|
);
|
|
};
|