2020-11-02 20:15:09 +00:00
|
|
|
import React, { useState } from "react";
|
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { Controller, UseFormMethods } from "react-hook-form";
|
|
|
|
import {
|
|
|
|
FormGroup,
|
|
|
|
Select,
|
|
|
|
SelectOption,
|
|
|
|
SelectVariant,
|
|
|
|
} from "@patternfly/react-core";
|
|
|
|
|
|
|
|
import { useServerInfo } from "../../context/server-info/ServerInfoProvider";
|
|
|
|
import { HelpItem } from "../../components/help-enabler/HelpItem";
|
|
|
|
import { sortProviders } from "../../util";
|
|
|
|
|
|
|
|
export type SignedJWTProps = {
|
|
|
|
form: UseFormMethods;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const SignedJWT = ({ form }: SignedJWTProps) => {
|
|
|
|
const providers = sortProviders(
|
2020-11-12 12:55:52 +00:00
|
|
|
useServerInfo().providers!.clientSignature.providers
|
2020-11-02 20:15:09 +00:00
|
|
|
);
|
|
|
|
const { t } = useTranslation("clients");
|
|
|
|
|
|
|
|
const [open, isOpen] = useState(false);
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<FormGroup
|
|
|
|
label={t("signatureAlgorithm")}
|
|
|
|
fieldId="kc-signature-algorithm"
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText="clients-help:signature-algorithm"
|
|
|
|
forLabel={t("signatureAlgorithm")}
|
|
|
|
forID="kc-signature-algorithm"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Controller
|
|
|
|
name="attributes.token_endpoint_auth_signing_alg"
|
|
|
|
defaultValue={providers[0]}
|
|
|
|
control={form.control}
|
|
|
|
render={({ onChange, value }) => (
|
|
|
|
<Select
|
|
|
|
toggleId="kc-signature-algorithm"
|
|
|
|
onToggle={() => isOpen(!open)}
|
|
|
|
onSelect={(_, value) => {
|
|
|
|
onChange(value as string);
|
|
|
|
isOpen(false);
|
|
|
|
}}
|
|
|
|
selections={value}
|
|
|
|
variant={SelectVariant.single}
|
|
|
|
aria-label={t("signatureAlgorithm")}
|
|
|
|
isOpen={open}
|
|
|
|
>
|
|
|
|
{providers.map((option) => (
|
|
|
|
<SelectOption
|
|
|
|
selected={option === value}
|
|
|
|
key={option}
|
|
|
|
value={option}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
</Select>
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|