saleor-dashboard/src/products/views/ProductCreate.tsx

164 lines
6.8 KiB
TypeScript
Raw Normal View History

2019-08-09 10:26:22 +00:00
import React from "react";
import { useIntl } from "react-intl";
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";
import useShop from "@saleor/hooks/useShop";
import { DEFAULT_INITIAL_SEARCH_DATA } from "../../config";
import SearchCategories from "../../containers/SearchCategories";
import SearchCollections from "../../containers/SearchCollections";
import { decimal, getMutationState, maybe } from "../../misc";
2019-08-09 11:14:35 +00:00
import ProductCreatePage, {
ProductCreatePageSubmitData
} from "../components/ProductCreatePage";
2019-06-19 14:40:52 +00:00
import { TypedProductCreateMutation } from "../mutations";
import { TypedProductCreateQuery } from "../queries";
import { ProductCreate } from "../types/ProductCreate";
import { productListUrl, productUrl } from "../urls";
interface ProductUpdateProps {
id: string;
}
export const ProductUpdate: React.StatelessComponent<
ProductUpdateProps
> = () => {
const navigate = useNavigator();
const notify = useNotifier();
const shop = useShop();
const intl = useIntl();
2019-06-19 14:40:52 +00:00
const handleAttributesEdit = undefined;
const handleBack = () => navigate(productListUrl());
return (
<SearchCategories variables={DEFAULT_INITIAL_SEARCH_DATA}>
{({ search: searchCategory, result: searchCategoryOpts }) => (
<SearchCollections variables={DEFAULT_INITIAL_SEARCH_DATA}>
{({ search: searchCollection, result: searchCollectionOpts }) => (
<TypedProductCreateQuery displayLoader>
{({ data, loading }) => {
const handleSuccess = (data: ProductCreate) => {
if (data.productCreate.errors.length === 0) {
notify({
text: intl.formatMessage({
defaultMessage: "Product created"
})
2019-06-19 14:40:52 +00:00
});
navigate(productUrl(data.productCreate.product.id));
2019-08-09 11:14:35 +00:00
} else {
const attributeError = data.productCreate.errors.find(
err => err.field === "attributes"
);
if (!!attributeError) {
notify({ text: attributeError.message });
}
2019-06-19 14:40:52 +00:00
}
};
return (
<TypedProductCreateMutation onCompleted={handleSuccess}>
{(
productCreate,
{
called: productCreateCalled,
data: productCreateData,
loading: productCreateDataLoading
}
) => {
2019-08-09 11:14:35 +00:00
const handleSubmit = (
formData: ProductCreatePageSubmitData
) => {
2019-06-19 14:40:52 +00:00
productCreate({
variables: {
2019-08-09 11:14:35 +00:00
attributes: formData.attributes.map(attribute => ({
id: attribute.id,
values: attribute.value
})),
2019-06-19 14:40:52 +00:00
basePrice: decimal(formData.basePrice),
2019-08-09 11:14:35 +00:00
category: formData.category,
2019-06-19 14:40:52 +00:00
chargeTaxes: formData.chargeTaxes,
2019-08-09 11:14:35 +00:00
collections: formData.collections,
2019-06-19 14:40:52 +00:00
descriptionJson: JSON.stringify(
formData.description
),
isPublished: formData.isPublished,
name: formData.name,
2019-08-09 11:14:35 +00:00
productType: formData.productType,
2019-06-19 14:40:52 +00:00
publicationDate:
formData.publicationDate !== ""
? formData.publicationDate
: null,
2019-08-09 11:14:35 +00:00
seo: {
description: formData.seoDescription,
title: formData.seoTitle
},
2019-06-19 14:40:52 +00:00
sku: formData.sku,
stockQuantity:
formData.stockQuantity !== null
? formData.stockQuantity
: 0
}
});
};
const disabled = loading || productCreateDataLoading;
const formTransitionState = getMutationState(
productCreateCalled,
productCreateDataLoading,
maybe(() => productCreateData.productCreate.errors)
);
return (
<>
<WindowTitle
title={intl.formatMessage({
defaultMessage: "Create Product",
description: "window title"
})}
/>
2019-06-19 14:40:52 +00:00
<ProductCreatePage
currency={maybe(() => shop.defaultCurrency)}
categories={maybe(
() => searchCategoryOpts.data.categories.edges,
[]
).map(edge => edge.node)}
collections={maybe(
() => searchCollectionOpts.data.collections.edges,
[]
).map(edge => edge.node)}
disabled={disabled}
errors={maybe(
() => productCreateData.productCreate.errors,
[]
)}
fetchCategories={searchCategory}
fetchCollections={searchCollection}
header={intl.formatMessage({
defaultMessage: "New Product",
description: "page header"
})}
2019-06-19 14:40:52 +00:00
productTypes={maybe(() =>
data.productTypes.edges.map(edge => edge.node)
)}
onAttributesEdit={handleAttributesEdit}
onBack={handleBack}
onSubmit={handleSubmit}
saveButtonBarState={formTransitionState}
/>
</>
);
}}
</TypedProductCreateMutation>
);
}}
</TypedProductCreateQuery>
)}
</SearchCollections>
)}
</SearchCategories>
);
};
export default ProductUpdate;