saleor-dashboard/src/components/SeoForm/SeoForm.tsx
Dominik Żegleń 416d7d87f6
Improve theming (#1020)
* Remove unused code

* Move theme to separate directory

* Separate types

* Separate shadows

* Separate shadows

* Rename types

* Modularize code

* Do not pollute prototypes

* Fix missing import

* Aliast mui styles

* Import theming internally

* Fix types

* Fix override type
2021-03-30 09:40:18 +02:00

297 lines
8.6 KiB
TypeScript

import Button from "@material-ui/core/Button";
import Card from "@material-ui/core/Card";
import CardContent from "@material-ui/core/CardContent";
import TextField from "@material-ui/core/TextField";
import Typography from "@material-ui/core/Typography";
import { CollectionErrorFragment } from "@saleor/fragments/types/CollectionErrorFragment";
import { PageErrorFragment } from "@saleor/fragments/types/PageErrorFragment";
import { ProductErrorFragment } from "@saleor/fragments/types/ProductErrorFragment";
import { makeStyles } from "@saleor/theme";
import { getFieldError, getProductErrorMessage } from "@saleor/utils/errors";
import getPageErrorMessage from "@saleor/utils/errors/page";
import classNames from "classnames";
import React from "react";
import { defineMessages, FormattedMessage, useIntl } from "react-intl";
import slugify from "slugify";
import CardTitle from "../CardTitle";
import FormSpacer from "../FormSpacer";
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(
theme => ({
addressBar: {
color: "#006621",
fontSize: "13px",
lineHeight: "16px",
marginBottom: "2px",
overflow: "hidden",
textOverflow: "ellipsis",
whiteSpace: "nowrap"
},
container: {
width: "100%"
},
descriptionBar: {
color: "#545454",
fontSize: "13px",
lineHeight: "18px",
overflowWrap: "break-word"
},
helperText: {
marginBottom: theme.spacing(3)
},
label: {
flex: 1
},
labelContainer: {
"& span": {
paddingRight: 30
},
display: "flex"
},
preview: {
minHeight: theme.spacing(10)
},
title: {
padding: 0
},
titleBar: {
color: "#1a0dab",
fontSize: "18px",
lineHeight: "21px",
overflowWrap: "break-word",
textDecoration: "none",
wordWrap: "break-word"
}
}),
{ name: "SeoForm" }
);
interface SeoFormProps {
description?: string;
descriptionPlaceholder: string;
disabled?: boolean;
errors?: Array<
PageErrorFragment | ProductErrorFragment | CollectionErrorFragment
>;
loading?: boolean;
helperText?: string;
allowEmptySlug?: boolean;
title: string;
slug: string;
slugPlaceholder?: string;
titlePlaceholder: string;
onChange(event: any);
onClick?();
}
const SeoForm: React.FC<SeoFormProps> = props => {
const {
description,
descriptionPlaceholder,
disabled,
errors = [],
helperText,
allowEmptySlug = false,
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 { seoFieldMessage } = defineMessages({
seoFieldMessage: {
defaultMessage: "If empty, the preview shows what will be autogenerated."
}
});
const getSlugHelperMessage = () => {
const error = !!getError(SeoField.slug);
if (allowEmptySlug && !error) {
return intl.formatMessage(seoFieldMessage);
}
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 (
<Card>
<CardTitle
title={intl.formatMessage({
defaultMessage: "Search Engine Preview"
})}
toolbar={
<Button color="primary" variant="text" onClick={toggleExpansion}>
<FormattedMessage
defaultMessage="Edit website SEO"
description="button"
/>
</Button>
}
/>
<CardContent>
{shouldDisplayHelperText && (
<Typography
className={classNames({ [classes.helperText]: expanded })}
>
{helperText}
</Typography>
)}
{expanded && (
<div className={classes.container}>
<TextField
error={!!getError(SeoField.slug) || slug.length > maxSlugLength}
name={SeoField.slug}
label={
<div className={classes.labelContainer}>
<div className={classes.label}>
<FormattedMessage defaultMessage="Slug" />
</div>
{slug?.length > 0 && (
<span>
<FormattedMessage
defaultMessage="{numberOfCharacters} of {maxCharacters} characters"
description="character limit"
values={{
maxCharacters: maxSlugLength,
numberOfCharacters: slug?.length
}}
/>
</span>
)}
</div>
}
InputProps={{
inputProps: {
maxLength: maxSlugLength
}
}}
helperText={getSlugHelperMessage()}
value={slug}
disabled={loading || disabled}
placeholder={slug || slugify(slugPlaceholder, { lower: true })}
onChange={handleSlugChange}
fullWidth
/>
<FormSpacer />
<TextField
error={title.length > maxTitleLength}
name={SeoField.title}
label={
<div className={classes.labelContainer}>
<div className={classes.label}>
<FormattedMessage defaultMessage="Search engine title" />
</div>
{title?.length > 0 && (
<span>
<FormattedMessage
defaultMessage="{numberOfCharacters} of {maxCharacters} characters"
description="character limit"
values={{
maxCharacters: maxTitleLength,
numberOfCharacters: title.length
}}
/>
</span>
)}
</div>
}
InputProps={{
inputProps: {
maxLength: maxTitleLength
}
}}
helperText={intl.formatMessage(seoFieldMessage)}
value={title}
disabled={loading || disabled}
placeholder={titlePlaceholder}
onChange={onChange}
fullWidth
/>
<FormSpacer />
<TextField
error={description.length > maxDescriptionLength}
name={SeoField.description}
label={
<div className={classes.labelContainer}>
<div className={classes.label}>
<FormattedMessage defaultMessage="Search engine description" />
</div>
{description?.length > 0 && (
<span>
<FormattedMessage
defaultMessage="{numberOfCharacters} of {maxCharacters} characters"
description="character limit"
values={{
maxCharacters: maxDescriptionLength,
numberOfCharacters: description.length
}}
/>
</span>
)}
</div>
}
helperText={intl.formatMessage(seoFieldMessage)}
InputProps={{
inputProps: {
maxLength: maxDescriptionLength
}
}}
value={description}
onChange={onChange}
disabled={loading || disabled}
fullWidth
multiline
placeholder={descriptionPlaceholder}
rows={10}
/>
</div>
)}
</CardContent>
</Card>
);
};
SeoForm.displayName = "SeoForm";
export default SeoForm;