109 lines
3.2 KiB
TypeScript
109 lines
3.2 KiB
TypeScript
import Card from "@material-ui/core/Card";
|
|
import CardContent from "@material-ui/core/CardContent";
|
|
import { makeStyles } from "@material-ui/core/styles";
|
|
import TextField from "@material-ui/core/TextField";
|
|
import Typography from "@material-ui/core/Typography";
|
|
import React from "react";
|
|
import { FormattedMessage, useIntl } from "react-intl";
|
|
|
|
import CardTitle from "@saleor/components/CardTitle";
|
|
import Grid from "@saleor/components/Grid";
|
|
import Hr from "@saleor/components/Hr";
|
|
import { commonMessages } from "@saleor/intl";
|
|
import { UserError } from "@saleor/types";
|
|
import { getFieldError } from "@saleor/utils/errors";
|
|
|
|
const useStyles = makeStyles(
|
|
theme => ({
|
|
content: {
|
|
paddingTop: theme.spacing(2)
|
|
},
|
|
hr: {
|
|
margin: theme.spacing(3, 0)
|
|
},
|
|
sectionHeader: {
|
|
marginBottom: theme.spacing()
|
|
}
|
|
}),
|
|
{ name: "CustomerInfo" }
|
|
);
|
|
|
|
export interface CustomerInfoProps {
|
|
data: {
|
|
firstName: string;
|
|
lastName: string;
|
|
email: string;
|
|
};
|
|
disabled: boolean;
|
|
errors: UserError[];
|
|
onChange: (event: React.ChangeEvent<any>) => void;
|
|
}
|
|
|
|
const CustomerInfo: React.FC<CustomerInfoProps> = props => {
|
|
const { data, disabled, errors, onChange } = props;
|
|
const classes = useStyles(props);
|
|
|
|
const intl = useIntl();
|
|
|
|
return (
|
|
<Card>
|
|
<CardTitle
|
|
title={
|
|
<FormattedMessage
|
|
defaultMessage="Personal Informations"
|
|
description="customer informations, header"
|
|
/>
|
|
}
|
|
/>
|
|
<CardContent className={classes.content}>
|
|
<Typography className={classes.sectionHeader}>
|
|
<FormattedMessage {...commonMessages.generalInformations} />
|
|
</Typography>
|
|
<Grid variant="uniform">
|
|
<TextField
|
|
disabled={disabled}
|
|
error={!!getFieldError(errors, "firstName")}
|
|
fullWidth
|
|
helperText={getFieldError(errors, "firstName")?.message}
|
|
name="firstName"
|
|
type="text"
|
|
label={intl.formatMessage(commonMessages.firstName)}
|
|
value={data.firstName}
|
|
onChange={onChange}
|
|
/>
|
|
<TextField
|
|
disabled={disabled}
|
|
error={!!getFieldError(errors, "lastName")}
|
|
fullWidth
|
|
helperText={getFieldError(errors, "lastName")?.message}
|
|
name="lastName"
|
|
type="text"
|
|
label={intl.formatMessage(commonMessages.lastName)}
|
|
value={data.lastName}
|
|
onChange={onChange}
|
|
/>
|
|
</Grid>
|
|
<Hr className={classes.hr} />
|
|
<Typography className={classes.sectionHeader}>
|
|
<FormattedMessage
|
|
defaultMessage="Contact Informations"
|
|
description="customer contact section, header"
|
|
/>
|
|
</Typography>
|
|
<TextField
|
|
disabled={disabled}
|
|
error={!!getFieldError(errors, "email")}
|
|
fullWidth
|
|
helperText={getFieldError(errors, "email")?.message}
|
|
name="email"
|
|
type="email"
|
|
label={intl.formatMessage(commonMessages.email)}
|
|
value={data.email}
|
|
onChange={onChange}
|
|
/>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
};
|
|
CustomerInfo.displayName = "CustomerInfo";
|
|
export default CustomerInfo;
|