2019-06-19 14:40:52 +00:00
|
|
|
import Button from "@material-ui/core/Button";
|
|
|
|
import Dialog from "@material-ui/core/Dialog";
|
|
|
|
import DialogActions from "@material-ui/core/DialogActions";
|
|
|
|
import DialogContent from "@material-ui/core/DialogContent";
|
2020-03-16 12:28:52 +00:00
|
|
|
import DialogContentText from "@material-ui/core/DialogContentText";
|
2019-06-19 14:40:52 +00:00
|
|
|
import DialogTitle from "@material-ui/core/DialogTitle";
|
2019-10-30 14:34:24 +00:00
|
|
|
import { makeStyles } from "@material-ui/core/styles";
|
2019-06-19 14:40:52 +00:00
|
|
|
import ConfirmButton, {
|
|
|
|
ConfirmButtonTransitionState
|
|
|
|
} from "@saleor/components/ConfirmButton";
|
|
|
|
import Form from "@saleor/components/Form";
|
2020-05-14 09:30:32 +00:00
|
|
|
import FormSpacer from "@saleor/components/FormSpacer";
|
2019-06-19 14:40:52 +00:00
|
|
|
import Money from "@saleor/components/Money";
|
|
|
|
import { SingleSelectField } from "@saleor/components/SingleSelectField";
|
2020-05-14 09:30:32 +00:00
|
|
|
import useModalDialogErrors from "@saleor/hooks/useModalDialogErrors";
|
2019-08-26 17:44:42 +00:00
|
|
|
import { buttonMessages } from "@saleor/intl";
|
2020-03-16 12:28:52 +00:00
|
|
|
import { OrderErrorFragment } from "@saleor/orders/types/OrderErrorFragment";
|
|
|
|
import { getFormErrors } from "@saleor/utils/errors";
|
|
|
|
import getOrderErrorMessage from "@saleor/utils/errors/order";
|
2020-05-14 09:30:32 +00:00
|
|
|
import React from "react";
|
|
|
|
import { FormattedMessage, useIntl } from "react-intl";
|
|
|
|
|
2019-06-19 14:40:52 +00:00
|
|
|
import { OrderDetails_order_availableShippingMethods } from "../../types/OrderDetails";
|
|
|
|
|
|
|
|
export interface FormData {
|
|
|
|
shippingMethod: string;
|
|
|
|
}
|
|
|
|
|
2019-12-03 15:28:40 +00:00
|
|
|
const useStyles = makeStyles(
|
|
|
|
theme => ({
|
|
|
|
dialog: {
|
|
|
|
overflowY: "visible"
|
|
|
|
},
|
|
|
|
menuItem: {
|
|
|
|
display: "flex",
|
|
|
|
width: "100%"
|
|
|
|
},
|
|
|
|
price: {
|
|
|
|
marginRight: theme.spacing(3)
|
|
|
|
},
|
|
|
|
root: {
|
|
|
|
overflowY: "visible",
|
|
|
|
width: theme.breakpoints.values.sm
|
|
|
|
},
|
|
|
|
shippingMethodName: {
|
|
|
|
flex: 1,
|
|
|
|
overflowX: "hidden",
|
|
|
|
textOverflow: "ellipsis"
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
{ name: "OrderShippingMethodEditDialog" }
|
|
|
|
);
|
2019-06-19 14:40:52 +00:00
|
|
|
|
2020-03-16 12:28:52 +00:00
|
|
|
export interface OrderShippingMethodEditDialogProps {
|
2019-06-19 14:40:52 +00:00
|
|
|
confirmButtonState: ConfirmButtonTransitionState;
|
2020-03-16 12:28:52 +00:00
|
|
|
errors: OrderErrorFragment[];
|
2019-06-19 14:40:52 +00:00
|
|
|
open: boolean;
|
|
|
|
shippingMethod: string;
|
|
|
|
shippingMethods?: OrderDetails_order_availableShippingMethods[];
|
|
|
|
onClose();
|
|
|
|
onSubmit?(data: FormData);
|
|
|
|
}
|
|
|
|
|
2020-03-16 12:28:52 +00:00
|
|
|
const OrderShippingMethodEditDialog: React.FC<OrderShippingMethodEditDialogProps> = props => {
|
2019-10-30 14:34:24 +00:00
|
|
|
const {
|
2019-06-19 14:40:52 +00:00
|
|
|
confirmButtonState,
|
2020-03-16 12:28:52 +00:00
|
|
|
errors: apiErrors,
|
2019-06-19 14:40:52 +00:00
|
|
|
open,
|
|
|
|
shippingMethod,
|
|
|
|
shippingMethods,
|
|
|
|
onClose,
|
|
|
|
onSubmit
|
2019-10-30 14:34:24 +00:00
|
|
|
} = props;
|
|
|
|
const classes = useStyles(props);
|
2020-03-16 12:28:52 +00:00
|
|
|
const errors = useModalDialogErrors(apiErrors, open);
|
|
|
|
const intl = useIntl();
|
|
|
|
|
|
|
|
const formFields = ["shippingMethod"];
|
|
|
|
const formErrors = getFormErrors(formFields, errors);
|
|
|
|
const nonFieldErrors = errors.filter(err => !formFields.includes(err.field));
|
2019-10-30 14:34:24 +00:00
|
|
|
|
|
|
|
const choices = shippingMethods
|
|
|
|
? shippingMethods.map(s => ({
|
|
|
|
label: (
|
|
|
|
<div className={classes.menuItem}>
|
|
|
|
<span className={classes.shippingMethodName}>{s.name}</span>
|
|
|
|
|
2019-11-06 15:48:20 +00:00
|
|
|
<span className={classes.price}>
|
2019-10-30 14:34:24 +00:00
|
|
|
<Money money={s.price} />
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
),
|
|
|
|
value: s.id
|
|
|
|
}))
|
|
|
|
: [];
|
|
|
|
const initialForm: FormData = {
|
|
|
|
shippingMethod
|
|
|
|
};
|
2020-03-16 12:28:52 +00:00
|
|
|
|
2019-10-30 14:34:24 +00:00
|
|
|
return (
|
|
|
|
<Dialog onClose={onClose} open={open} classes={{ paper: classes.dialog }}>
|
|
|
|
<DialogTitle>
|
|
|
|
<FormattedMessage
|
|
|
|
defaultMessage="Edit Shipping Method"
|
|
|
|
description="dialog header"
|
|
|
|
/>
|
|
|
|
</DialogTitle>
|
|
|
|
<Form initial={initialForm} onSubmit={onSubmit}>
|
|
|
|
{({ change, data }) => (
|
|
|
|
<>
|
|
|
|
<DialogContent className={classes.root}>
|
|
|
|
<SingleSelectField
|
|
|
|
choices={choices}
|
2020-03-16 12:28:52 +00:00
|
|
|
error={!!formErrors.shippingMethod}
|
|
|
|
hint={getOrderErrorMessage(formErrors.shippingMethod, intl)}
|
2019-10-30 14:34:24 +00:00
|
|
|
name="shippingMethod"
|
|
|
|
value={data.shippingMethod}
|
|
|
|
onChange={change}
|
|
|
|
/>
|
2020-03-16 12:28:52 +00:00
|
|
|
{nonFieldErrors.length > 0 && (
|
|
|
|
<>
|
|
|
|
<FormSpacer />
|
|
|
|
{nonFieldErrors.map(err => (
|
|
|
|
<DialogContentText color="error">
|
|
|
|
{getOrderErrorMessage(err, intl)}
|
|
|
|
</DialogContentText>
|
|
|
|
))}
|
|
|
|
</>
|
|
|
|
)}
|
2019-10-30 14:34:24 +00:00
|
|
|
</DialogContent>
|
|
|
|
<DialogActions>
|
|
|
|
<Button onClick={onClose}>
|
|
|
|
<FormattedMessage {...buttonMessages.back} />
|
|
|
|
</Button>
|
|
|
|
<ConfirmButton
|
|
|
|
transitionState={confirmButtonState}
|
|
|
|
color="primary"
|
|
|
|
variant="contained"
|
|
|
|
type="submit"
|
|
|
|
>
|
|
|
|
<FormattedMessage {...buttonMessages.confirm} />
|
|
|
|
</ConfirmButton>
|
|
|
|
</DialogActions>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</Form>
|
|
|
|
</Dialog>
|
|
|
|
);
|
|
|
|
};
|
2019-06-19 14:40:52 +00:00
|
|
|
OrderShippingMethodEditDialog.displayName = "OrderShippingMethodEditDialog";
|
|
|
|
export default OrderShippingMethodEditDialog;
|