53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
![]() |
import Card from "@material-ui/core/Card";
|
||
|
import CardContent from "@material-ui/core/CardContent";
|
||
|
import TextField from "@material-ui/core/TextField";
|
||
|
import React from "react";
|
||
|
import { useIntl } from "react-intl";
|
||
|
|
||
|
import CardTitle from "@saleor/components/CardTitle";
|
||
|
import { FormChange } from "@saleor/hooks/useForm";
|
||
|
import { FormErrors } from "@saleor/types";
|
||
|
|
||
|
export interface ServiceInfoProps {
|
||
|
data: {
|
||
|
name: string;
|
||
|
};
|
||
|
disabled: boolean;
|
||
|
errors: FormErrors<"name">;
|
||
|
onChange: FormChange;
|
||
|
}
|
||
|
|
||
|
const ServiceInfo: React.FC<ServiceInfoProps> = props => {
|
||
|
const { data, disabled, errors, onChange } = props;
|
||
|
const intl = useIntl();
|
||
|
|
||
|
return (
|
||
|
<Card>
|
||
|
<CardTitle
|
||
|
title={intl.formatMessage({
|
||
|
defaultMessage: "Service Account Information",
|
||
|
description: "header"
|
||
|
})}
|
||
|
/>
|
||
|
<CardContent>
|
||
|
<TextField
|
||
|
disabled={disabled}
|
||
|
error={!!errors.name}
|
||
|
label={intl.formatMessage({
|
||
|
defaultMessage: "Account Name",
|
||
|
description: "service account"
|
||
|
})}
|
||
|
helperText={errors.name}
|
||
|
fullWidth
|
||
|
name="name"
|
||
|
value={data.name}
|
||
|
onChange={onChange}
|
||
|
/>
|
||
|
</CardContent>
|
||
|
</Card>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
ServiceInfo.displayName = "ServiceInfo";
|
||
|
export default ServiceInfo;
|