/* eslint-disable */ // @ts-nocheck import { AlertVariant, PageSection } from "../../shared/@patternfly/react-core"; import { useTranslation } from "react-i18next"; import { useNavigate } from "react-router-dom"; import { useAdminClient } from "../admin-client"; import { useAlerts } from "../../shared/keycloak-ui-shared"; import { ClientScopeDefaultOptionalType, changeScope, } from "../components/client-scope/ClientScopeTypes"; import { ViewHeader } from "../components/view-header/ViewHeader"; import { useRealm } from "../context/realm-context/RealmContext"; import { convertFormValuesToObject } from "../util"; import { ScopeForm } from "./details/ScopeForm"; import { toClientScope } from "./routes/ClientScope"; export default function CreateClientScope() { const { adminClient } = useAdminClient(); const { t } = useTranslation(); const navigate = useNavigate(); const { realm } = useRealm(); const { addAlert, addError } = useAlerts(); const onSubmit = async (formData: ClientScopeDefaultOptionalType) => { const clientScope = convertFormValuesToObject({ ...formData, name: formData.name?.trim().replace(/ /g, "_"), }); try { await adminClient.clientScopes.create(clientScope); const scope = await adminClient.clientScopes.findOneByName({ name: clientScope.name!, }); if (!scope) { throw new Error(t("notFound")); } await changeScope( adminClient, { ...clientScope, id: scope.id }, clientScope.type, ); addAlert(t("createClientScopeSuccess"), AlertVariant.success); navigate( toClientScope({ realm, id: scope.id!, tab: "settings", }), ); } catch (error) { addError("createClientScopeError", error); } }; return ( <> ); }