
* Add channel default country (#1323) * Add default country to channel * Fix fixtures * Update snapshots, extract messages * Trigger deployment * Update schema * Update snapshots * Trigger deployment
208 lines
6.4 KiB
TypeScript
208 lines
6.4 KiB
TypeScript
import {
|
|
Card,
|
|
CardContent,
|
|
InputAdornment,
|
|
TextField,
|
|
Typography
|
|
} from "@material-ui/core";
|
|
import CardSpacer from "@saleor/components/CardSpacer";
|
|
import CardTitle from "@saleor/components/CardTitle";
|
|
import FormSpacer from "@saleor/components/FormSpacer";
|
|
import SingleAutocompleteSelectField, {
|
|
SingleAutocompleteChoiceType
|
|
} from "@saleor/components/SingleAutocompleteSelectField";
|
|
import { ChannelErrorFragment } from "@saleor/fragments/types/ChannelErrorFragment";
|
|
import useClipboard from "@saleor/hooks/useClipboard";
|
|
import { ChangeEvent } from "@saleor/hooks/useForm";
|
|
import { FormChange } from "@saleor/hooks/useForm";
|
|
import { commonMessages } from "@saleor/intl";
|
|
import { CountryCode } from "@saleor/types/globalTypes";
|
|
import { getFormErrors } from "@saleor/utils/errors";
|
|
import getChannelsErrorMessage from "@saleor/utils/errors/channels";
|
|
import React from "react";
|
|
import { FormattedMessage, useIntl } from "react-intl";
|
|
|
|
import { useStyles } from "../styles";
|
|
import { ExtendedFormHelperTextProps } from "./types";
|
|
|
|
export interface FormData {
|
|
name: string;
|
|
currencyCode: string;
|
|
slug: string;
|
|
shippingZonesIdsToAdd: string[];
|
|
shippingZonesIdsToRemove: string[];
|
|
defaultCountry: CountryCode;
|
|
}
|
|
|
|
export interface ChannelFormProps {
|
|
data: FormData;
|
|
disabled: boolean;
|
|
currencyCodes?: SingleAutocompleteChoiceType[];
|
|
errors: ChannelErrorFragment[];
|
|
selectedCurrencyCode?: string;
|
|
selectedCountryDisplayName: string;
|
|
countries: SingleAutocompleteChoiceType[];
|
|
onChange: FormChange;
|
|
onCurrencyCodeChange?: (event: ChangeEvent) => void;
|
|
onDefaultCountryChange: (event: ChangeEvent) => void;
|
|
}
|
|
|
|
export const ChannelForm: React.FC<ChannelFormProps> = ({
|
|
currencyCodes,
|
|
data,
|
|
disabled,
|
|
errors,
|
|
selectedCurrencyCode,
|
|
selectedCountryDisplayName,
|
|
countries,
|
|
onChange,
|
|
onCurrencyCodeChange,
|
|
onDefaultCountryChange
|
|
}) => {
|
|
const intl = useIntl();
|
|
const [copied, copy] = useClipboard();
|
|
const formErrors = getFormErrors<keyof FormData, ChannelErrorFragment>(
|
|
["name", "slug", "currencyCode"],
|
|
errors
|
|
);
|
|
const classes = useStyles({});
|
|
return (
|
|
<>
|
|
<Card>
|
|
<CardTitle
|
|
title={intl.formatMessage(commonMessages.generalInformations)}
|
|
/>
|
|
<CardContent>
|
|
<TextField
|
|
error={!!formErrors.name}
|
|
helperText={getChannelsErrorMessage(formErrors?.name, intl)}
|
|
disabled={disabled}
|
|
fullWidth
|
|
label={intl.formatMessage({
|
|
defaultMessage: "Channel name",
|
|
description: "channel name"
|
|
})}
|
|
name="name"
|
|
value={data.name}
|
|
onChange={onChange}
|
|
/>
|
|
<FormSpacer />
|
|
<TextField
|
|
error={!!formErrors.slug}
|
|
helperText={getChannelsErrorMessage(formErrors?.slug, intl)}
|
|
disabled={disabled}
|
|
fullWidth
|
|
FormHelperTextProps={
|
|
{
|
|
"data-testid": "slug-text-input-helper-text"
|
|
} as ExtendedFormHelperTextProps
|
|
}
|
|
label={intl.formatMessage({
|
|
defaultMessage: "Slug",
|
|
description: "channel slug"
|
|
})}
|
|
name="slug"
|
|
value={data.slug}
|
|
onChange={onChange}
|
|
InputProps={{
|
|
endAdornment: (
|
|
<InputAdornment
|
|
className={classes.copyBtn}
|
|
position="end"
|
|
disableTypography
|
|
onClick={() => copy(data.slug)}
|
|
>
|
|
{copied ? (
|
|
<FormattedMessage
|
|
defaultMessage="Copied"
|
|
description="button"
|
|
/>
|
|
) : (
|
|
<FormattedMessage
|
|
defaultMessage="Copy"
|
|
description="button"
|
|
/>
|
|
)}
|
|
</InputAdornment>
|
|
)
|
|
}}
|
|
/>
|
|
<FormSpacer />
|
|
</CardContent>
|
|
</Card>
|
|
<CardSpacer />
|
|
<Card>
|
|
<CardTitle
|
|
title={intl.formatMessage({
|
|
defaultMessage: "Channel Settings",
|
|
description: "channel settings"
|
|
})}
|
|
/>
|
|
<CardContent>
|
|
{currencyCodes ? (
|
|
<SingleAutocompleteSelectField
|
|
data-test-id="channel-currency-select-input"
|
|
allowCustomValues
|
|
error={!!formErrors.currencyCode}
|
|
FormHelperTextProps={
|
|
{
|
|
"data-testid": "currency-text-input-helper-text"
|
|
} as ExtendedFormHelperTextProps
|
|
}
|
|
helperText={getChannelsErrorMessage(
|
|
formErrors?.currencyCode,
|
|
intl
|
|
)}
|
|
disabled={disabled}
|
|
label={intl.formatMessage({
|
|
defaultMessage: "Currency",
|
|
description: "channel currency"
|
|
})}
|
|
choices={currencyCodes}
|
|
name="currencyCode"
|
|
displayValue={selectedCurrencyCode}
|
|
value={selectedCurrencyCode}
|
|
onChange={onCurrencyCodeChange}
|
|
/>
|
|
) : (
|
|
<>
|
|
<Typography variant="caption" className={classes.label}>
|
|
<FormattedMessage
|
|
defaultMessage="Selected currency"
|
|
description="selected currency"
|
|
/>
|
|
</Typography>
|
|
<Typography>{data.currencyCode}</Typography>
|
|
</>
|
|
)}
|
|
<FormSpacer />
|
|
<SingleAutocompleteSelectField
|
|
data-test-id="country-select-input"
|
|
error={!!formErrors.defaultCountry}
|
|
FormHelperTextProps={
|
|
{
|
|
"data-testid": "country-text-input-helper-text"
|
|
} as ExtendedFormHelperTextProps
|
|
}
|
|
helperText={getChannelsErrorMessage(
|
|
formErrors?.defaultCountry,
|
|
intl
|
|
)}
|
|
disabled={disabled}
|
|
label={intl.formatMessage({
|
|
defaultMessage: "Default country"
|
|
})}
|
|
choices={countries}
|
|
name="defaultCountry"
|
|
displayValue={selectedCountryDisplayName}
|
|
value={data.defaultCountry}
|
|
onChange={onDefaultCountryChange}
|
|
/>
|
|
</CardContent>
|
|
</Card>
|
|
</>
|
|
);
|
|
};
|
|
|
|
ChannelForm.displayName = "ChannelForm";
|
|
export default ChannelForm;
|