c5ff588791
* initial version of oidc * fixed fetch and added missing fields * fixed file upload * added scopse * added details * added disable action and save * updated to use new design based on discovery response * new design * set default value * added tests * fixed tests * fixed labels * changed direction to up
82 lines
2.3 KiB
TypeScript
82 lines
2.3 KiB
TypeScript
import React, { useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Controller, useFormContext, useWatch } from "react-hook-form";
|
|
import {
|
|
FormGroup,
|
|
Select,
|
|
SelectOption,
|
|
SelectVariant,
|
|
} from "@patternfly/react-core";
|
|
|
|
import { ClientIdSecret } from "../component/ClientIdSecret";
|
|
import { HelpItem } from "../../components/help-enabler/HelpItem";
|
|
|
|
const clientAuthenticationTypes = [
|
|
"clientAuth_post",
|
|
"clientAuth_basic",
|
|
"clientAuth_secret_jwt",
|
|
"clientAuth_privatekey_jwt",
|
|
];
|
|
|
|
export const OIDCAuthentication = () => {
|
|
const { t } = useTranslation("identity-providers");
|
|
const { t: th } = useTranslation("identity-providers-help");
|
|
|
|
const { control } = useFormContext();
|
|
const [openClientAuth, setOpenClientAuth] = useState(false);
|
|
|
|
const clientAuthMethod = useWatch({
|
|
control: control,
|
|
name: "config.clientAuthMethod",
|
|
});
|
|
|
|
return (
|
|
<>
|
|
<FormGroup
|
|
label={t("clientAuthentication")}
|
|
labelIcon={
|
|
<HelpItem
|
|
helpText={th("clientAuthentication")}
|
|
forLabel={t("clientAuthentication")}
|
|
forID="clientAuthentication"
|
|
/>
|
|
}
|
|
fieldId="clientAuthentication"
|
|
>
|
|
<Controller
|
|
name="config.clientAuthMethod"
|
|
defaultValue={clientAuthenticationTypes[0]}
|
|
control={control}
|
|
render={({ onChange, value }) => (
|
|
<Select
|
|
toggleId="clientAuthMethod"
|
|
required
|
|
onToggle={() => setOpenClientAuth(!openClientAuth)}
|
|
onSelect={(_, value) => {
|
|
onChange(value as string);
|
|
setOpenClientAuth(false);
|
|
}}
|
|
selections={value}
|
|
variant={SelectVariant.single}
|
|
aria-label={t("prompt")}
|
|
isOpen={openClientAuth}
|
|
>
|
|
{clientAuthenticationTypes.map((option) => (
|
|
<SelectOption
|
|
selected={option === value}
|
|
key={option}
|
|
value={option}
|
|
>
|
|
{t(`clientAuthentications.${option}`)}
|
|
</SelectOption>
|
|
))}
|
|
</Select>
|
|
)}
|
|
/>
|
|
</FormGroup>
|
|
<ClientIdSecret
|
|
secretRequired={clientAuthMethod !== "clientAuth_privatekey_jwt"}
|
|
/>
|
|
</>
|
|
);
|
|
};
|