saleor-dashboard/src/collections/views/CollectionCreate.tsx

76 lines
2.5 KiB
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import { WindowTitle } from "@saleor/components/WindowTitle";
import useNavigator from "@saleor/hooks/useNavigator";
import useNotifier from "@saleor/hooks/useNotifier";
2020-03-05 14:59:55 +00:00
import { commonMessages } from "@saleor/intl";
import React from "react";
import { useIntl } from "react-intl";
2019-06-19 14:40:52 +00:00
import { CollectionCreateInput } from "../../types/globalTypes";
import CollectionCreatePage from "../components/CollectionCreatePage/CollectionCreatePage";
import { useCollectionCreateMutation } from "../mutations";
2019-06-19 14:40:52 +00:00
import { collectionListUrl, collectionUrl } from "../urls";
export const CollectionCreate: React.FC = () => {
2019-06-19 14:40:52 +00:00
const navigate = useNavigator();
const notify = useNotifier();
const intl = useIntl();
2019-06-19 14:40:52 +00:00
const [createCollection, createCollectionOpts] = useCollectionCreateMutation({
onCompleted: data => {
if (data.collectionCreate.errors.length === 0) {
2019-06-19 14:40:52 +00:00
notify({
status: "success",
text: intl.formatMessage(commonMessages.savedChanges)
2019-06-19 14:40:52 +00:00
});
navigate(collectionUrl(data.collectionCreate.collection.id));
} else {
const backgroundImageError = data.collectionCreate.errors.find(
error =>
error.field === ("backgroundImage" as keyof CollectionCreateInput)
);
if (backgroundImageError) {
notify({
status: "error",
text: intl.formatMessage(commonMessages.somethingWentWrong)
});
}
2019-06-19 14:40:52 +00:00
}
}
});
2019-06-19 14:40:52 +00:00
return (
<>
<WindowTitle
title={intl.formatMessage({
defaultMessage: "Create collection",
description: "window title"
})}
/>
<CollectionCreatePage
errors={createCollectionOpts.data?.collectionCreate.errors || []}
onBack={() => navigate(collectionListUrl())}
disabled={createCollectionOpts.loading}
onSubmit={formData =>
createCollection({
variables: {
input: {
backgroundImage: formData.backgroundImage.value,
backgroundImageAlt: formData.backgroundImageAlt,
descriptionJson: JSON.stringify(formData.description),
isPublished: formData.isPublished,
name: formData.name,
seo: {
description: formData.seoDescription,
title: formData.seoTitle
2019-12-06 17:11:46 +00:00
}
}
2019-12-06 17:11:46 +00:00
}
})
}
saveButtonBarState={createCollectionOpts.status}
/>
</>
2019-06-19 14:40:52 +00:00
);
};
export default CollectionCreate;