2019-08-09 10:26:22 +00:00
|
|
|
import React from "react";
|
2019-08-26 17:53:22 +00:00
|
|
|
import { useIntl } from "react-intl";
|
2019-06-19 14:40:52 +00:00
|
|
|
|
|
|
|
import { WindowTitle } from "@saleor/components/WindowTitle";
|
2019-11-21 14:59:06 +00:00
|
|
|
import { DEFAULT_INITIAL_SEARCH_DATA } from "@saleor/config";
|
2019-06-19 14:40:52 +00:00
|
|
|
import useNavigator from "@saleor/hooks/useNavigator";
|
|
|
|
import useNotifier from "@saleor/hooks/useNotifier";
|
|
|
|
import useShop from "@saleor/hooks/useShop";
|
2019-11-19 15:47:12 +00:00
|
|
|
import useCategorySearch from "@saleor/searches/useCategorySearch";
|
2019-11-19 16:04:53 +00:00
|
|
|
import useCollectionSearch from "@saleor/searches/useCollectionSearch";
|
2019-11-19 17:00:14 +00:00
|
|
|
import useProductTypeSearch from "@saleor/searches/useProductTypeSearch";
|
2019-06-19 14:40:52 +00:00
|
|
|
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 { ProductCreate } from "../types/ProductCreate";
|
|
|
|
import { productListUrl, productUrl } from "../urls";
|
|
|
|
|
|
|
|
interface ProductUpdateProps {
|
|
|
|
id: string;
|
|
|
|
}
|
|
|
|
|
2019-11-07 11:34:54 +00:00
|
|
|
export const ProductUpdate: React.FC<ProductUpdateProps> = () => {
|
2019-06-19 14:40:52 +00:00
|
|
|
const navigate = useNavigator();
|
|
|
|
const notify = useNotifier();
|
|
|
|
const shop = useShop();
|
2019-08-26 17:53:22 +00:00
|
|
|
const intl = useIntl();
|
2019-11-19 15:47:12 +00:00
|
|
|
const {
|
|
|
|
loadMore: loadMoreCategories,
|
|
|
|
search: searchCategory,
|
|
|
|
result: searchCategoryOpts
|
|
|
|
} = useCategorySearch({
|
|
|
|
variables: DEFAULT_INITIAL_SEARCH_DATA
|
|
|
|
});
|
2019-11-19 16:04:53 +00:00
|
|
|
const {
|
|
|
|
loadMore: loadMoreCollections,
|
|
|
|
search: searchCollection,
|
|
|
|
result: searchCollectionOpts
|
|
|
|
} = useCollectionSearch({
|
|
|
|
variables: DEFAULT_INITIAL_SEARCH_DATA
|
|
|
|
});
|
2019-11-19 17:00:14 +00:00
|
|
|
const {
|
|
|
|
loadMore: loadMoreProductTypes,
|
|
|
|
search: searchProductTypes,
|
|
|
|
result: searchProductTypesOpts
|
|
|
|
} = useProductTypeSearch({
|
|
|
|
variables: DEFAULT_INITIAL_SEARCH_DATA
|
|
|
|
});
|
2019-06-19 14:40:52 +00:00
|
|
|
|
|
|
|
const handleBack = () => navigate(productListUrl());
|
|
|
|
|
2019-11-19 17:00:14 +00:00
|
|
|
const handleSuccess = (data: ProductCreate) => {
|
|
|
|
if (data.productCreate.errors.length === 0) {
|
|
|
|
notify({
|
|
|
|
text: intl.formatMessage({
|
|
|
|
defaultMessage: "Product created"
|
|
|
|
})
|
|
|
|
});
|
|
|
|
navigate(productUrl(data.productCreate.product.id));
|
|
|
|
} 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 (
|
2019-11-19 17:00:14 +00:00
|
|
|
<TypedProductCreateMutation onCompleted={handleSuccess}>
|
|
|
|
{(
|
|
|
|
productCreate,
|
|
|
|
{
|
|
|
|
called: productCreateCalled,
|
|
|
|
data: productCreateData,
|
|
|
|
loading: productCreateDataLoading
|
|
|
|
}
|
|
|
|
) => {
|
|
|
|
const handleSubmit = (formData: ProductCreatePageSubmitData) => {
|
|
|
|
productCreate({
|
|
|
|
variables: {
|
|
|
|
attributes: formData.attributes.map(attribute => ({
|
|
|
|
id: attribute.id,
|
|
|
|
values: attribute.value
|
|
|
|
})),
|
|
|
|
basePrice: decimal(formData.basePrice),
|
|
|
|
category: formData.category,
|
|
|
|
chargeTaxes: formData.chargeTaxes,
|
|
|
|
collections: formData.collections,
|
|
|
|
descriptionJson: JSON.stringify(formData.description),
|
|
|
|
isPublished: formData.isPublished,
|
|
|
|
name: formData.name,
|
|
|
|
productType: formData.productType,
|
|
|
|
publicationDate:
|
|
|
|
formData.publicationDate !== ""
|
|
|
|
? formData.publicationDate
|
|
|
|
: null,
|
|
|
|
seo: {
|
|
|
|
description: formData.seoDescription,
|
|
|
|
title: formData.seoTitle
|
|
|
|
},
|
|
|
|
sku: formData.sku,
|
|
|
|
stockQuantity:
|
|
|
|
formData.stockQuantity !== null ? formData.stockQuantity : 0
|
2019-11-19 16:04:53 +00:00
|
|
|
}
|
2019-11-19 17:00:14 +00:00
|
|
|
});
|
2019-11-19 16:04:53 +00:00
|
|
|
};
|
2019-06-19 14:40:52 +00:00
|
|
|
|
2019-11-19 17:00:14 +00:00
|
|
|
const formTransitionState = getMutationState(
|
|
|
|
productCreateCalled,
|
|
|
|
productCreateDataLoading,
|
|
|
|
maybe(() => productCreateData.productCreate.errors)
|
|
|
|
);
|
2019-11-19 16:04:53 +00:00
|
|
|
return (
|
2019-11-19 17:00:14 +00:00
|
|
|
<>
|
|
|
|
<WindowTitle
|
|
|
|
title={intl.formatMessage({
|
|
|
|
defaultMessage: "Create Product",
|
|
|
|
description: "window title"
|
|
|
|
})}
|
|
|
|
/>
|
|
|
|
<ProductCreatePage
|
|
|
|
currency={maybe(() => shop.defaultCurrency)}
|
|
|
|
categories={maybe(
|
|
|
|
() => searchCategoryOpts.data.search.edges,
|
|
|
|
[]
|
|
|
|
).map(edge => edge.node)}
|
|
|
|
collections={maybe(
|
|
|
|
() => searchCollectionOpts.data.search.edges,
|
|
|
|
[]
|
|
|
|
).map(edge => edge.node)}
|
|
|
|
disabled={productCreateDataLoading}
|
|
|
|
errors={maybe(() => productCreateData.productCreate.errors, [])}
|
|
|
|
fetchCategories={searchCategory}
|
|
|
|
fetchCollections={searchCollection}
|
|
|
|
fetchProductTypes={searchProductTypes}
|
|
|
|
header={intl.formatMessage({
|
|
|
|
defaultMessage: "New Product",
|
|
|
|
description: "page header"
|
|
|
|
})}
|
|
|
|
productTypes={maybe(() =>
|
|
|
|
searchProductTypesOpts.data.search.edges.map(edge => edge.node)
|
|
|
|
)}
|
|
|
|
onBack={handleBack}
|
|
|
|
onSubmit={handleSubmit}
|
|
|
|
saveButtonBarState={formTransitionState}
|
|
|
|
fetchMoreCategories={{
|
|
|
|
hasMore: maybe(
|
|
|
|
() => searchCategoryOpts.data.search.pageInfo.hasNextPage
|
|
|
|
),
|
|
|
|
loading: searchCategoryOpts.loading,
|
|
|
|
onFetchMore: loadMoreCategories
|
|
|
|
}}
|
|
|
|
fetchMoreCollections={{
|
|
|
|
hasMore: maybe(
|
|
|
|
() => searchCollectionOpts.data.search.pageInfo.hasNextPage
|
|
|
|
),
|
|
|
|
loading: searchCollectionOpts.loading,
|
|
|
|
onFetchMore: loadMoreCollections
|
|
|
|
}}
|
|
|
|
fetchMoreProductTypes={{
|
|
|
|
hasMore: maybe(
|
|
|
|
() => searchProductTypesOpts.data.search.pageInfo.hasNextPage
|
|
|
|
),
|
|
|
|
loading: searchProductTypesOpts.loading,
|
|
|
|
onFetchMore: loadMoreProductTypes
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</>
|
2019-11-19 16:04:53 +00:00
|
|
|
);
|
|
|
|
}}
|
2019-11-19 17:00:14 +00:00
|
|
|
</TypedProductCreateMutation>
|
2019-06-19 14:40:52 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
export default ProductUpdate;
|