saleor-dashboard/src/components/SeoForm/SeoForm.tsx
2023-05-23 10:35:16 +02:00

243 lines
7.2 KiB
TypeScript

import {
CollectionErrorFragment,
PageErrorFragment,
ProductErrorFragment,
} from "@dashboard/graphql";
import { getFieldError, getProductErrorMessage } from "@dashboard/utils/errors";
import getPageErrorMessage from "@dashboard/utils/errors/page";
import { TextField } from "@material-ui/core";
import { makeStyles } from "@saleor/macaw-ui";
import { Box, Button, Input, Text } from "@saleor/macaw-ui/next";
import React from "react";
import { FormattedMessage, useIntl } from "react-intl";
import { DashboardCard } from "../Card";
enum SeoField {
slug = "slug",
title = "seoTitle",
description = "seoDescription",
}
const SLUG_REGEX = /^[a-zA-Z0-9\-\_]+$/;
const maxSlugLength = 255;
const maxTitleLength = 70;
const maxDescriptionLength = 300;
const useStyles = makeStyles(
{
label: {
flex: 1,
},
labelContainer: {
"& span": {
paddingRight: 30,
},
display: "flex",
},
},
{ name: "SeoForm" },
);
interface SeoFormProps {
description?: string | null;
descriptionPlaceholder: string;
disabled?: boolean;
errors?: Array<
PageErrorFragment | ProductErrorFragment | CollectionErrorFragment
>;
loading?: boolean;
helperText?: string;
allowEmptySlug?: boolean;
title: string | null;
slug: string;
slugPlaceholder?: string;
titlePlaceholder: string;
onChange(event: any);
onClick?();
}
export const SeoForm: React.FC<SeoFormProps> = props => {
const {
description,
descriptionPlaceholder,
disabled,
errors = [],
helperText,
loading,
title,
slug,
slugPlaceholder,
titlePlaceholder,
onChange,
} = props;
const classes = useStyles(props);
const intl = useIntl();
const [expanded, setExpansionStatus] = React.useState(false);
const toggleExpansion = () => setExpansionStatus(!expanded);
const shouldDisplayHelperText = helperText && !expanded;
const getSlugHelperMessage = () => {
const error = !!getError(SeoField.slug);
return error ? getSlugErrorMessage() : "";
};
const getSlugErrorMessage = () => {
const error = getError(SeoField.slug);
const { __typename: type } = error;
return type === "ProductError"
? getProductErrorMessage(error as ProductErrorFragment, intl)
: getPageErrorMessage(error as PageErrorFragment, intl);
};
const handleSlugChange = (event: React.ChangeEvent<any>) => {
const { value } = event.target;
if (value === "" || SLUG_REGEX.test(value)) {
onChange(event);
}
};
const getError = (fieldName: SeoField) => getFieldError(errors, fieldName);
return (
<DashboardCard>
<DashboardCard.Title>
<Box display="flex" justifyContent="space-between" alignItems="center">
<FormattedMessage
defaultMessage="Search Engine Preview"
id="TGX4T1"
/>
<Button
variant="secondary"
onClick={toggleExpansion}
data-test-id="edit-seo"
type="button"
>
<FormattedMessage
id="s5Imt5"
defaultMessage="Edit website SEO"
description="button"
/>
</Button>
</Box>
</DashboardCard.Title>
<DashboardCard.Content>
{shouldDisplayHelperText && <Text>{helperText}</Text>}
{expanded && (
<Box display="grid" gap={5}>
<Box>
<Input
error={!!getError(SeoField.slug) || slug.length > maxSlugLength}
name={SeoField.slug}
label={
<Box display="flex" gap={3}>
<Box as="span">
<FormattedMessage defaultMessage="Slug" id="IoDlcd" />
</Box>
{slug?.length > 0 && (
<Box as="span">
<FormattedMessage
defaultMessage="({numberOfCharacters} of {maxCharacters} characters)"
id="yi1HSj"
values={{
maxCharacters: maxSlugLength,
numberOfCharacters: slug?.length,
}}
/>
</Box>
)}
</Box>
}
helperText={getSlugHelperMessage()}
size="small"
value={slug}
onChange={handleSlugChange}
disabled={loading || disabled}
maxLength={maxSlugLength}
placeholder={slugPlaceholder}
/>
</Box>
<Input
size="small"
error={title?.length > maxTitleLength}
name={SeoField.title}
value={title ?? ""}
disabled={loading || disabled}
onChange={onChange}
maxLength={maxTitleLength}
placeholder={titlePlaceholder}
label={
<Box display="flex" gap={3}>
<Box as="span">
<FormattedMessage
defaultMessage="Search engine title"
id="w2Cewo"
/>
</Box>
{title?.length > 0 && (
<Box as="span">
<FormattedMessage
defaultMessage="({numberOfCharacters} of {maxCharacters} characters)"
id="yi1HSj"
values={{
maxCharacters: maxTitleLength,
numberOfCharacters: title?.length,
}}
/>
</Box>
)}
</Box>
}
/>
<TextField
error={description?.length > maxDescriptionLength}
name={SeoField.description}
label={
<div className={classes.labelContainer}>
<div className={classes.label}>
<FormattedMessage
id="CXTIq8"
defaultMessage="Search engine description"
/>
</div>
{description?.length > 0 && (
<span>
<FormattedMessage
id="ChAjJu"
defaultMessage="{numberOfCharacters} of {maxCharacters} characters"
description="character limit"
values={{
maxCharacters: maxDescriptionLength,
numberOfCharacters: description.length,
}}
/>
</span>
)}
</div>
}
InputProps={{
inputProps: {
maxLength: maxDescriptionLength,
},
}}
value={description ?? ""}
onChange={onChange}
disabled={loading || disabled}
fullWidth
multiline
placeholder={descriptionPlaceholder}
rows={10}
/>
</Box>
)}
</DashboardCard.Content>
</DashboardCard>
);
};