import React, {useState, useContext} from "react"; import { AlertVariant, Button, Form, FormGroup, Modal, ModalVariant, TextInput } from "@patternfly/react-core"; import { useTranslation } from "react-i18next"; import { HttpClientContext } from "../http-service/HttpClientContext"; import { RealmContext } from "../components/realm-context/RealmContext"; import { useAlerts } from "../components/alert/Alerts"; export const GroupsCreateModal = ({isCreateModalOpen, handleModalToggle}) => { const { t } = useTranslation("groups"); const httpClient = useContext(HttpClientContext)!; const { realm } = useContext(RealmContext); const [ nameValue, setNameValue ] = useState(""); const [add, Alerts] = useAlerts(); const valueChange = (nameValue: string) => { setNameValue(nameValue) } const submitForm = async () => { try { await httpClient.doPost(`/admin/realms/${realm}/groups`, nameValue); add("Client created", AlertVariant.success); } catch (error) { add(`Could not create client: '${error}'`, AlertVariant.danger); } } return ( submitForm()}> Create ]} >
); };