
* New ConfirmButton component * Update macaw ui * Remove old confim button * New confirm button * Replace all place with new confirm button * Remove ConfirmButtonTransitionState use from mcaw * Does not change button width when showing loader and success state * Test ConfirmButton * Remove story, update tests * WIP change pull_request to push for chromatic * Revert "WIP change pull_request to push for chromatic" This reverts commit 8f0909bf54f185898a7f1d236f072d6544fd5d86. * Add comments * Remove css prop from DialogTable * Make confirm button larger in order send refund
340 lines
9.4 KiB
TypeScript
340 lines
9.4 KiB
TypeScript
import DialogButtons from "@dashboard/components/ActionDialog/DialogButtons";
|
|
import CardSpacer from "@dashboard/components/CardSpacer";
|
|
import {
|
|
ConfirmButton,
|
|
ConfirmButtonTransitionState,
|
|
} from "@dashboard/components/ConfirmButton";
|
|
import PriceField from "@dashboard/components/PriceField";
|
|
import RadioGroupField from "@dashboard/components/RadioGroupField";
|
|
import { DiscountValueTypeEnum, MoneyFragment } from "@dashboard/graphql";
|
|
import { useUpdateEffect } from "@dashboard/hooks/useUpdateEffect";
|
|
import { buttonMessages } from "@dashboard/intl";
|
|
import { toFixed } from "@dashboard/utils/toFixed";
|
|
import { Card, CardContent, TextField, Typography } from "@material-ui/core";
|
|
import { makeStyles } from "@saleor/macaw-ui";
|
|
import React, { ChangeEvent, useEffect, useRef, useState } from "react";
|
|
import { defineMessages, useIntl } from "react-intl";
|
|
|
|
import ModalTitle from "./ModalTitle";
|
|
import {
|
|
ORDER_LINE_DISCOUNT,
|
|
OrderDiscountCommonInput,
|
|
OrderDiscountType,
|
|
} from "./types";
|
|
|
|
const numbersRegex = /([0-9]+\.?[0-9]*)$/;
|
|
|
|
const useStyles = makeStyles(
|
|
theme => ({
|
|
removeButton: {
|
|
"&:hover": {
|
|
backgroundColor: theme.palette.error.main,
|
|
},
|
|
backgroundColor: theme.palette.error.main,
|
|
color: theme.palette.error.contrastText,
|
|
},
|
|
radioContainer: {
|
|
display: "flex",
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
alignItems: "center",
|
|
},
|
|
reasonInput: {
|
|
marginTop: theme.spacing(1),
|
|
width: "100%",
|
|
},
|
|
buttonWrapper: {
|
|
display: "flex",
|
|
flexDirection: "row",
|
|
flex: 1,
|
|
},
|
|
}),
|
|
{ name: "OrderLineDiscountModal" },
|
|
);
|
|
|
|
const messages = defineMessages({
|
|
buttonLabel: {
|
|
id: "QSnh4Y",
|
|
defaultMessage: "Add",
|
|
description: "add button label",
|
|
},
|
|
itemDiscountTitle: {
|
|
id: "WTj17Z",
|
|
defaultMessage: "Discount Item",
|
|
description: "dialog title item discount",
|
|
},
|
|
orderDiscountTitle: {
|
|
id: "YFDAaX",
|
|
defaultMessage: "Discount this Order by:",
|
|
description: "dialog title order discount",
|
|
},
|
|
percentageOption: {
|
|
id: "WUf3Iu",
|
|
defaultMessage: "Percentage",
|
|
description: "percentage option",
|
|
},
|
|
fixedAmountOption: {
|
|
id: "fo7nfa",
|
|
defaultMessage: "Fixed Amount",
|
|
description: "fixed amount",
|
|
},
|
|
invalidValue: {
|
|
id: "IN5iJz",
|
|
defaultMessage: "Invalid value",
|
|
description: "value input helper text",
|
|
},
|
|
valueBiggerThatPrice: {
|
|
defaultMessage: "Cannot be higher than the price",
|
|
id: "VIdXPy",
|
|
description: "value input helper text",
|
|
},
|
|
valueBiggerThat100: {
|
|
defaultMessage: "Cannot be higher than 100%",
|
|
id: "zHx85l",
|
|
description: "value input helper text",
|
|
},
|
|
discountValueLabel: {
|
|
id: "GAmGog",
|
|
defaultMessage: "Discount value",
|
|
description: "value input label",
|
|
},
|
|
discountReasonLabel: {
|
|
id: "nvSJNR",
|
|
defaultMessage: "Reason",
|
|
description: "discount reason input lavel",
|
|
},
|
|
});
|
|
|
|
export interface OrderDiscountCommonModalProps {
|
|
maxPrice: MoneyFragment;
|
|
onConfirm: (discount: OrderDiscountCommonInput) => void;
|
|
onClose: () => void;
|
|
onRemove: () => void;
|
|
modalType: OrderDiscountType;
|
|
existingDiscount: OrderDiscountCommonInput;
|
|
confirmStatus: ConfirmButtonTransitionState;
|
|
removeStatus: ConfirmButtonTransitionState;
|
|
}
|
|
|
|
const OrderDiscountCommonModal: React.FC<OrderDiscountCommonModalProps> = ({
|
|
maxPrice = { amount: null, currency: "" },
|
|
onConfirm,
|
|
modalType,
|
|
onClose,
|
|
onRemove,
|
|
existingDiscount,
|
|
confirmStatus,
|
|
removeStatus,
|
|
}) => {
|
|
const { currency, amount: maxAmount } = maxPrice;
|
|
|
|
const getInitialDiscountValue = (calculationMode: DiscountValueTypeEnum) => {
|
|
if (!existingDiscount?.value) {
|
|
return "";
|
|
}
|
|
|
|
const stringifiedValue = existingDiscount.value.toString();
|
|
|
|
if (calculationMode === DiscountValueTypeEnum.FIXED) {
|
|
return parseFloat(stringifiedValue).toString();
|
|
}
|
|
|
|
return stringifiedValue;
|
|
};
|
|
|
|
const getInitialData = () => {
|
|
const calculationMode =
|
|
existingDiscount?.calculationMode || DiscountValueTypeEnum.PERCENTAGE;
|
|
|
|
return {
|
|
calculationMode,
|
|
reason: existingDiscount?.reason || "",
|
|
value: getInitialDiscountValue(calculationMode),
|
|
};
|
|
};
|
|
|
|
const initialData = getInitialData();
|
|
|
|
const [valueErrorMsg, setValueErrorMsg] = useState<string | null>(null);
|
|
const [reason, setReason] = useState<string>(initialData.reason);
|
|
const [value, setValue] = useState<string>(initialData.value);
|
|
const [calculationMode, setCalculationMode] = useState<DiscountValueTypeEnum>(
|
|
initialData.calculationMode,
|
|
);
|
|
const previousCalculationMode = useRef(calculationMode);
|
|
|
|
const classes = useStyles({});
|
|
const intl = useIntl();
|
|
|
|
const discountTypeChoices = [
|
|
{
|
|
label: intl.formatMessage(messages.percentageOption),
|
|
value: DiscountValueTypeEnum.PERCENTAGE,
|
|
},
|
|
{
|
|
label: intl.formatMessage(messages.fixedAmountOption),
|
|
value: DiscountValueTypeEnum.FIXED,
|
|
},
|
|
];
|
|
|
|
const isDiscountTypePercentage =
|
|
calculationMode === DiscountValueTypeEnum.PERCENTAGE;
|
|
|
|
const handleSetDiscountValue = (
|
|
event: React.ChangeEvent<HTMLInputElement>,
|
|
) => {
|
|
const value = event.target.value;
|
|
|
|
setValueErrorMsg(getErrorMessage(value));
|
|
setValue(value);
|
|
};
|
|
|
|
const getParsedDiscountValue = () => parseFloat(value) || 0;
|
|
|
|
const isAmountTooLarge = (value?: string) => {
|
|
const topAmount = isDiscountTypePercentage ? 100 : maxAmount;
|
|
|
|
if (value) {
|
|
return (parseFloat(value) || 0) > topAmount;
|
|
}
|
|
|
|
return getParsedDiscountValue() > topAmount;
|
|
};
|
|
|
|
const getErrorMessage = (value: string): string | null => {
|
|
if (isAmountTooLarge(value)) {
|
|
if (calculationMode === DiscountValueTypeEnum.PERCENTAGE) {
|
|
return intl.formatMessage(messages.valueBiggerThat100);
|
|
}
|
|
|
|
return intl.formatMessage(messages.valueBiggerThatPrice);
|
|
}
|
|
|
|
if (!numbersRegex.test(value)) {
|
|
return intl.formatMessage(messages.invalidValue);
|
|
}
|
|
|
|
return null;
|
|
};
|
|
|
|
const handleConfirm = () => {
|
|
onConfirm({
|
|
calculationMode,
|
|
reason,
|
|
value: getParsedDiscountValue(),
|
|
});
|
|
};
|
|
|
|
const setDefaultValues = () => {
|
|
setReason(initialData.reason);
|
|
setValue(initialData.value);
|
|
setCalculationMode(initialData.calculationMode);
|
|
setValueErrorMsg(null);
|
|
};
|
|
|
|
useEffect(setDefaultValues, [
|
|
existingDiscount?.value,
|
|
existingDiscount?.reason,
|
|
]);
|
|
|
|
const handleValueConversion = () => {
|
|
if (getParsedDiscountValue() === 0) {
|
|
return;
|
|
}
|
|
|
|
const changedFromPercentageToFixed =
|
|
previousCalculationMode.current === DiscountValueTypeEnum.PERCENTAGE &&
|
|
calculationMode === DiscountValueTypeEnum.FIXED;
|
|
|
|
const recalculatedValueFromPercentageToFixed = (
|
|
(getParsedDiscountValue() * maxPrice.amount) /
|
|
100
|
|
).toString();
|
|
|
|
const recalculatedValueFromFixedToPercentage = (
|
|
(getParsedDiscountValue() / maxPrice.amount) *
|
|
100
|
|
).toString();
|
|
|
|
const recalculatedValue = changedFromPercentageToFixed
|
|
? recalculatedValueFromPercentageToFixed
|
|
: recalculatedValueFromFixedToPercentage;
|
|
|
|
setValueErrorMsg(getErrorMessage(recalculatedValue));
|
|
setValue(recalculatedValue);
|
|
previousCalculationMode.current = calculationMode;
|
|
};
|
|
|
|
useUpdateEffect(handleValueConversion, [calculationMode]);
|
|
|
|
const dialogTitle =
|
|
modalType === ORDER_LINE_DISCOUNT
|
|
? messages.itemDiscountTitle
|
|
: messages.orderDiscountTitle;
|
|
|
|
const valueFieldSymbol =
|
|
calculationMode === DiscountValueTypeEnum.FIXED ? currency : "%";
|
|
|
|
const isSubmitDisabled =
|
|
!getParsedDiscountValue() || !!valueErrorMsg || isAmountTooLarge();
|
|
|
|
return (
|
|
<Card>
|
|
<ModalTitle title={intl.formatMessage(dialogTitle)} onClose={onClose} />
|
|
<CardContent>
|
|
<RadioGroupField
|
|
innerContainerClassName={classes.radioContainer}
|
|
choices={discountTypeChoices}
|
|
name="discountType"
|
|
variant="inlineJustify"
|
|
value={calculationMode}
|
|
onChange={event => setCalculationMode(event.target.value)}
|
|
/>
|
|
<CardSpacer />
|
|
<PriceField
|
|
label={intl.formatMessage(messages.discountValueLabel)}
|
|
error={!!valueErrorMsg}
|
|
hint={valueErrorMsg}
|
|
value={toFixed(value, 2)}
|
|
onChange={handleSetDiscountValue}
|
|
currencySymbol={valueFieldSymbol}
|
|
/>
|
|
<CardSpacer />
|
|
<Typography>
|
|
{intl.formatMessage(messages.discountReasonLabel)}
|
|
</Typography>
|
|
<TextField
|
|
className={classes.reasonInput}
|
|
label={intl.formatMessage(messages.discountReasonLabel)}
|
|
value={reason}
|
|
data-test-id="discount-reason"
|
|
onChange={(event: ChangeEvent<HTMLInputElement>) =>
|
|
setReason(event.target.value)
|
|
}
|
|
/>
|
|
</CardContent>
|
|
<DialogButtons
|
|
onConfirm={handleConfirm}
|
|
onClose={onClose}
|
|
disabled={isSubmitDisabled}
|
|
showBackButton={false}
|
|
confirmButtonState={confirmStatus}
|
|
>
|
|
{existingDiscount && (
|
|
<div className={classes.buttonWrapper}>
|
|
<ConfirmButton
|
|
data-test-id="button-remove"
|
|
onClick={onRemove}
|
|
className={classes.removeButton}
|
|
transitionState={removeStatus}
|
|
>
|
|
{intl.formatMessage(buttonMessages.remove)}
|
|
</ConfirmButton>
|
|
</div>
|
|
)}
|
|
</DialogButtons>
|
|
</Card>
|
|
);
|
|
};
|
|
|
|
export default OrderDiscountCommonModal;
|