179 lines
5.3 KiB
TypeScript
179 lines
5.3 KiB
TypeScript
|
import { FormGroup } from "@patternfly/react-core";
|
||
|
import { useFormContext } from "react-hook-form-v7";
|
||
|
import { useTranslation } from "react-i18next";
|
||
|
|
||
|
import { HelpItem } from "../../components/help-enabler/HelpItem";
|
||
|
import { KeycloakTextInput } from "../../components/keycloak-text-input/KeycloakTextInput";
|
||
|
import { MultiLineInput } from "../../components/multi-line-input/hook-form-v7/MultiLineInput";
|
||
|
import { useRealm } from "../../context/realm-context/RealmContext";
|
||
|
import environment from "../../environment";
|
||
|
import { convertAttributeNameToForm } from "../../util";
|
||
|
import { FormFields } from "../ClientDetails";
|
||
|
|
||
|
type LoginSettingsProps = {
|
||
|
protocol?: string;
|
||
|
};
|
||
|
|
||
|
export const LoginSettings = ({
|
||
|
protocol = "openid-connect",
|
||
|
}: LoginSettingsProps) => {
|
||
|
const { t } = useTranslation("clients");
|
||
|
const { register, watch } = useFormContext<FormFields>();
|
||
|
const { realm } = useRealm();
|
||
|
|
||
|
const idpInitiatedSsoUrlName: string = watch(
|
||
|
"attributes.saml_idp_initiated_sso_url_name"
|
||
|
);
|
||
|
return (
|
||
|
<>
|
||
|
<FormGroup
|
||
|
label={t("rootUrl")}
|
||
|
fieldId="kc-root-url"
|
||
|
labelIcon={
|
||
|
<HelpItem
|
||
|
helpText="clients-help:rootURL"
|
||
|
fieldLabelId="clients:rootUrl"
|
||
|
/>
|
||
|
}
|
||
|
>
|
||
|
<KeycloakTextInput
|
||
|
id="kc-root-url"
|
||
|
type="url"
|
||
|
{...register("rootUrl")}
|
||
|
/>
|
||
|
</FormGroup>
|
||
|
<FormGroup
|
||
|
label={t("homeURL")}
|
||
|
fieldId="kc-home-url"
|
||
|
labelIcon={
|
||
|
<HelpItem
|
||
|
helpText="clients-help:homeURL"
|
||
|
fieldLabelId="clients:homeURL"
|
||
|
/>
|
||
|
}
|
||
|
>
|
||
|
<KeycloakTextInput
|
||
|
id="kc-home-url"
|
||
|
type="url"
|
||
|
{...register("baseUrl")}
|
||
|
/>
|
||
|
</FormGroup>
|
||
|
<FormGroup
|
||
|
label={t("validRedirectUri")}
|
||
|
fieldId="kc-redirect"
|
||
|
labelIcon={
|
||
|
<HelpItem
|
||
|
helpText="clients-help:validRedirectURIs"
|
||
|
fieldLabelId="clients:validRedirectUri"
|
||
|
/>
|
||
|
}
|
||
|
>
|
||
|
<MultiLineInput
|
||
|
id="kc-redirect"
|
||
|
name="redirectUris"
|
||
|
aria-label={t("validRedirectUri")}
|
||
|
addButtonLabel="clients:addRedirectUri"
|
||
|
/>
|
||
|
</FormGroup>
|
||
|
<FormGroup
|
||
|
label={t("validPostLogoutRedirectUri")}
|
||
|
fieldId="kc-postLogoutRedirect"
|
||
|
labelIcon={
|
||
|
<HelpItem
|
||
|
helpText="clients-help:validPostLogoutRedirectURIs"
|
||
|
fieldLabelId="clients:validPostLogoutRedirectUri"
|
||
|
/>
|
||
|
}
|
||
|
>
|
||
|
<MultiLineInput
|
||
|
id="kc-postLogoutRedirect"
|
||
|
name={convertAttributeNameToForm(
|
||
|
"attributes.post.logout.redirect.uris"
|
||
|
)}
|
||
|
aria-label={t("validPostLogoutRedirectUri")}
|
||
|
addButtonLabel="clients:addPostLogoutRedirectUri"
|
||
|
stringify
|
||
|
/>
|
||
|
</FormGroup>
|
||
|
{protocol === "saml" && (
|
||
|
<>
|
||
|
<FormGroup
|
||
|
label={t("idpInitiatedSsoUrlName")}
|
||
|
fieldId="idpInitiatedSsoUrlName"
|
||
|
labelIcon={
|
||
|
<HelpItem
|
||
|
helpText="clients-help:idpInitiatedSsoUrlName"
|
||
|
fieldLabelId="clients:idpInitiatedSsoUrlName"
|
||
|
/>
|
||
|
}
|
||
|
helperText={
|
||
|
idpInitiatedSsoUrlName !== "" &&
|
||
|
t("idpInitiatedSsoUrlNameHelp", {
|
||
|
url: `${environment.authServerUrl}/realms/${realm}/protocol/saml/clients/${idpInitiatedSsoUrlName}`,
|
||
|
})
|
||
|
}
|
||
|
>
|
||
|
<KeycloakTextInput
|
||
|
id="idpInitiatedSsoUrlName"
|
||
|
data-testid="idpInitiatedSsoUrlName"
|
||
|
{...register("attributes.saml_idp_initiated_sso_url_name")}
|
||
|
/>
|
||
|
</FormGroup>
|
||
|
<FormGroup
|
||
|
label={t("idpInitiatedSsoRelayState")}
|
||
|
fieldId="idpInitiatedSsoRelayState"
|
||
|
labelIcon={
|
||
|
<HelpItem
|
||
|
helpText="clients-help:idpInitiatedSsoRelayState"
|
||
|
fieldLabelId="clients:idpInitiatedSsoRelayState"
|
||
|
/>
|
||
|
}
|
||
|
>
|
||
|
<KeycloakTextInput
|
||
|
id="idpInitiatedSsoRelayState"
|
||
|
data-testid="idpInitiatedSsoRelayState"
|
||
|
{...register("attributes.saml_idp_initiated_sso_relay_state")}
|
||
|
/>
|
||
|
</FormGroup>
|
||
|
<FormGroup
|
||
|
label={t("masterSamlProcessingUrl")}
|
||
|
fieldId="masterSamlProcessingUrl"
|
||
|
labelIcon={
|
||
|
<HelpItem
|
||
|
helpText="clients-help:masterSamlProcessingUrl"
|
||
|
fieldLabelId="clients:masterSamlProcessingUrl"
|
||
|
/>
|
||
|
}
|
||
|
>
|
||
|
<KeycloakTextInput
|
||
|
id="masterSamlProcessingUrl"
|
||
|
type="url"
|
||
|
data-testid="masterSamlProcessingUrl"
|
||
|
{...register("adminUrl")}
|
||
|
/>
|
||
|
</FormGroup>
|
||
|
</>
|
||
|
)}
|
||
|
{protocol !== "saml" && (
|
||
|
<FormGroup
|
||
|
label={t("webOrigins")}
|
||
|
fieldId="kc-web-origins"
|
||
|
labelIcon={
|
||
|
<HelpItem
|
||
|
helpText="clients-help:webOrigins"
|
||
|
fieldLabelId="clients:webOrigins"
|
||
|
/>
|
||
|
}
|
||
|
>
|
||
|
<MultiLineInput
|
||
|
id="kc-web-origins"
|
||
|
name="webOrigins"
|
||
|
aria-label={t("webOrigins")}
|
||
|
addButtonLabel="clients:addWebOrigins"
|
||
|
/>
|
||
|
</FormGroup>
|
||
|
)}
|
||
|
</>
|
||
|
);
|
||
|
};
|