saleor-dashboard/src/discounts/handlers.ts
Michał Droń d5c9a3dae8
Add trailing commas (#2062)
* Require trailing commas

* Add trailing commas

* Add trailing commas in testUtils dir

* Add trailing commas
2022-06-21 11:36:55 +02:00

161 lines
4.5 KiB
TypeScript

import { ChannelVoucherData } from "@saleor/channels/utils";
import {
ChannelSaleFormData,
SaleDetailsPageFormData,
} from "@saleor/discounts/components/SaleDetailsPage";
import { VoucherDetailsPageFormData } from "@saleor/discounts/components/VoucherDetailsPage";
import { DiscountTypeEnum, RequirementsPicker } from "@saleor/discounts/types";
import { SaleType, VoucherTypeEnum } from "@saleor/graphql";
import { ChangeEvent, FormChange } from "@saleor/hooks/useForm";
import { RequireOnlyOne } from "@saleor/misc";
import { arrayDiff } from "@saleor/utils/arrays";
export interface ChannelArgs {
discountValue: string;
minSpent: string;
}
export type ChannelInput = RequireOnlyOne<
ChannelArgs,
"discountValue" | "minSpent"
>;
export function createDiscountTypeChangeHandler(change: FormChange) {
return (formData: VoucherDetailsPageFormData, event: ChangeEvent) => {
if (formData.type === VoucherTypeEnum.SHIPPING) {
// if previously type was shipping
change({
target: {
name: "type",
value: VoucherTypeEnum.ENTIRE_ORDER,
},
});
} else if (event.target.value === DiscountTypeEnum.SHIPPING) {
// if currently type should be shipping
change({
target: {
name: "type",
value: VoucherTypeEnum.ENTIRE_ORDER,
},
});
}
change(event);
};
}
export function createChannelsChangeHandler(
channelListings: ChannelVoucherData[],
updateChannels: (data: ChannelVoucherData[]) => void,
triggerChange: () => void,
) {
return (id: string, input: ChannelInput) => {
const channelIndex = channelListings.findIndex(
channel => channel.id === id,
);
const channel = channelListings[channelIndex];
const { discountValue, minSpent } = input;
const updatedChannels = [
...channelListings.slice(0, channelIndex),
{
...channel,
...(minSpent !== undefined
? { minSpent }
: {
discountValue,
}),
},
...channelListings.slice(channelIndex + 1),
];
updateChannels(updatedChannels);
triggerChange();
};
}
export function createSaleChannelsChangeHandler(
channelListings: ChannelSaleFormData[],
updateChannels: (data: ChannelSaleFormData[]) => void,
triggerChange: () => void,
saleType: SaleType,
) {
return (id: string, passedValue: string) => {
const channelIndex = channelListings.findIndex(
channel => channel.id === id,
);
const channel = channelListings[channelIndex];
const { percentageValue, fixedValue } = channel;
const newPercentage =
saleType === SaleType.PERCENTAGE ? passedValue : percentageValue;
const newFixed = saleType === SaleType.FIXED ? passedValue : fixedValue;
const updatedChannels = [
...channelListings.slice(0, channelIndex),
{
...channel,
fixedValue: newFixed,
percentageValue: newPercentage,
},
...channelListings.slice(channelIndex + 1),
];
updateChannels(updatedChannels);
triggerChange();
};
}
export const getChannelsVariables = (
id: string,
formData: VoucherDetailsPageFormData,
prevChannels?: ChannelVoucherData[],
) => {
const initialIds = prevChannels.map(channel => channel.id);
const modifiedIds = formData.channelListings.map(channel => channel.id);
const idsDiff = arrayDiff(initialIds, modifiedIds);
return {
id,
input: {
addChannels:
formData.channelListings?.map(channel => ({
channelId: channel.id,
discountValue:
formData.discountType.toString() === "SHIPPING"
? 100
: channel.discountValue,
minAmountSpent:
formData.requirementsPicker === RequirementsPicker.NONE
? null
: formData.requirementsPicker === RequirementsPicker.ITEM
? 0
: channel.minSpent,
})) || [],
removeChannels: idsDiff.removed,
},
};
};
export const getSaleChannelsVariables = (
id: string,
formData: SaleDetailsPageFormData,
prevChannelsIds?: string[],
) => {
const modifiedIds = formData.channelListings.map(channel => channel.id);
const idsDiff = arrayDiff(prevChannelsIds, modifiedIds);
return {
id,
input: {
addChannels:
formData.channelListings?.map(channel => ({
channelId: channel.id,
discountValue:
formData.type === SaleType.FIXED
? channel.fixedValue
: channel.percentageValue,
})) || [],
removeChannels: idsDiff.removed,
},
};
};