keycloak-scim/src/clients/ClientDescription.tsx

49 lines
1.2 KiB
TypeScript
Raw Normal View History

import React, { FormEvent } from "react";
import { FormGroup, TextInput } from "@patternfly/react-core";
import { ClientRepresentation } from "./models/client-model";
import { useTranslation } from "react-i18next";
type ClientDescriptionProps = {
onChange: (value: string, event: FormEvent<HTMLInputElement>) => void;
client: ClientRepresentation;
};
export const ClientDescription = ({
client,
onChange,
}: ClientDescriptionProps) => {
const { t } = useTranslation("clients");
return (
<>
<FormGroup label={t("Client ID")} fieldId="kc-client-id">
<TextInput
type="text"
id="kc-client-id"
name="clientId"
value={client.clientId}
onChange={onChange}
/>
</FormGroup>
<FormGroup label={t("Name")} fieldId="kc-name">
<TextInput
type="text"
id="kc-name"
name="name"
value={client.name}
onChange={onChange}
/>
</FormGroup>
<FormGroup label={t("Description")} fieldId="kc-description">
<TextInput
type="text"
id="kc-description"
name="description"
value={client.description}
onChange={onChange}
/>
</FormGroup>
</>
);
};