Fix types
This commit is contained in:
parent
035271adf0
commit
1f3d3be072
5 changed files with 50 additions and 7 deletions
|
@ -188,6 +188,7 @@ const ProductOrganization = withStyles(styles, { name: "ProductOrganization" })(
|
|||
onChange={onCollectionChange}
|
||||
fetchChoices={fetchCollections}
|
||||
data-tc="collections"
|
||||
{...fetchMoreCollections}
|
||||
/>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
|
|
@ -19,7 +19,7 @@ import useFormset from "@saleor/hooks/useFormset";
|
|||
import useStateFromProps from "@saleor/hooks/useStateFromProps";
|
||||
import { sectionNames } from "@saleor/intl";
|
||||
import { maybe } from "@saleor/misc";
|
||||
import { ListActions, UserError } from "@saleor/types";
|
||||
import { FetchMoreProps, ListActions, UserError } from "@saleor/types";
|
||||
import createMultiAutocompleteSelectHandler from "@saleor/utils/handlers/multiAutocompleteSelectChangeHandler";
|
||||
import createSingleAutocompleteSelectHandler from "@saleor/utils/handlers/singleAutocompleteSelectChangeHandler";
|
||||
import {
|
||||
|
@ -53,6 +53,8 @@ export interface ProductUpdatePageProps extends ListActions {
|
|||
collections: SearchCollections_search_edges_node[];
|
||||
categories: SearchCategories_search_edges_node[];
|
||||
disabled: boolean;
|
||||
fetchMoreCategories: FetchMoreProps;
|
||||
fetchMoreCollections: FetchMoreProps;
|
||||
variants: ProductDetails_product_variants[];
|
||||
images: ProductDetails_product_images[];
|
||||
product: ProductDetails_product;
|
||||
|
@ -86,6 +88,8 @@ export const ProductUpdatePage: React.FC<ProductUpdatePageProps> = ({
|
|||
errors: userErrors,
|
||||
fetchCategories,
|
||||
fetchCollections,
|
||||
fetchMoreCategories,
|
||||
fetchMoreCollections,
|
||||
images,
|
||||
header,
|
||||
placeholderImage,
|
||||
|
@ -285,6 +289,8 @@ export const ProductUpdatePage: React.FC<ProductUpdatePageProps> = ({
|
|||
errors={errors}
|
||||
fetchCategories={fetchCategories}
|
||||
fetchCollections={fetchCollections}
|
||||
fetchMoreCategories={fetchMoreCategories}
|
||||
fetchMoreCollections={fetchMoreCollections}
|
||||
productType={maybe(() => product.productType)}
|
||||
onCategoryChange={handleCategorySelect}
|
||||
onCollectionChange={handleCollectionSelect}
|
||||
|
|
|
@ -68,9 +68,17 @@ export const ProductUpdate: React.StatelessComponent<ProductUpdateProps> = ({
|
|||
|
||||
return (
|
||||
<SearchCategories variables={DEFAULT_INITIAL_SEARCH_DATA}>
|
||||
{({ search: searchCategories, result: searchCategoriesOpts }) => (
|
||||
{({
|
||||
loadMore: loadMoreCategories,
|
||||
search: searchCategories,
|
||||
result: searchCategoriesOpts
|
||||
}) => (
|
||||
<SearchCollections variables={DEFAULT_INITIAL_SEARCH_DATA}>
|
||||
{({ search: searchCollections, result: searchCollectionsOpts }) => (
|
||||
{({
|
||||
loadMore: loadMoreCollections,
|
||||
search: searchCollections,
|
||||
result: searchCollectionsOpts
|
||||
}) => (
|
||||
<TypedProductDetailsQuery
|
||||
displayLoader
|
||||
require={["product"]}
|
||||
|
@ -295,6 +303,24 @@ export const ProductUpdate: React.StatelessComponent<ProductUpdateProps> = ({
|
|||
selected={listElements.length}
|
||||
toggle={toggle}
|
||||
toggleAll={toggleAll}
|
||||
fetchMoreCategories={{
|
||||
hasMore: maybe(
|
||||
() =>
|
||||
searchCategoriesOpts.data.search.pageInfo
|
||||
.hasNextPage
|
||||
),
|
||||
loading: searchCategoriesOpts.loading,
|
||||
onFetchMore: loadMoreCategories
|
||||
}}
|
||||
fetchMoreCollections={{
|
||||
hasMore: maybe(
|
||||
() =>
|
||||
searchCollectionsOpts.data.search.pageInfo
|
||||
.hasNextPage
|
||||
),
|
||||
loading: searchCollectionsOpts.loading,
|
||||
onFetchMore: loadMoreCollections
|
||||
}}
|
||||
/>
|
||||
<ActionDialog
|
||||
open={params.action === "remove"}
|
||||
|
|
|
@ -1,15 +1,14 @@
|
|||
import { storiesOf } from "@storybook/react";
|
||||
import React from "react";
|
||||
|
||||
import { fetchMoreProps } from "@saleor/fixtures";
|
||||
import ProductCreatePage, {
|
||||
ProductCreatePageSubmitData
|
||||
} from "../../../products/components/ProductCreatePage";
|
||||
|
||||
import { formError } from "../../misc";
|
||||
|
||||
import { product as productFixture } from "../../../products/fixtures";
|
||||
import { productTypes } from "../../../productTypes/fixtures";
|
||||
import Decorator from "../../Decorator";
|
||||
import { formError } from "../../misc";
|
||||
|
||||
const product = productFixture("");
|
||||
|
||||
|
@ -25,6 +24,9 @@ storiesOf("Views / Products / Create product", module)
|
|||
fetchCategories={() => undefined}
|
||||
fetchCollections={() => undefined}
|
||||
fetchProductTypes={() => undefined}
|
||||
fetchMoreCategories={fetchMoreProps}
|
||||
fetchMoreCollections={fetchMoreProps}
|
||||
fetchMoreProductTypes={fetchMoreProps}
|
||||
productTypes={productTypes}
|
||||
categories={[product.category]}
|
||||
onBack={() => undefined}
|
||||
|
@ -42,6 +44,9 @@ storiesOf("Views / Products / Create product", module)
|
|||
fetchCategories={() => undefined}
|
||||
fetchCollections={() => undefined}
|
||||
fetchProductTypes={() => undefined}
|
||||
fetchMoreCategories={fetchMoreProps}
|
||||
fetchMoreCollections={fetchMoreProps}
|
||||
fetchMoreProductTypes={fetchMoreProps}
|
||||
productTypes={productTypes}
|
||||
categories={[product.category]}
|
||||
onBack={() => undefined}
|
||||
|
@ -61,6 +66,9 @@ storiesOf("Views / Products / Create product", module)
|
|||
fetchCategories={() => undefined}
|
||||
fetchCollections={() => undefined}
|
||||
fetchProductTypes={() => undefined}
|
||||
fetchMoreCategories={fetchMoreProps}
|
||||
fetchMoreCollections={fetchMoreProps}
|
||||
fetchMoreProductTypes={fetchMoreProps}
|
||||
productTypes={productTypes}
|
||||
categories={[product.category]}
|
||||
onBack={() => undefined}
|
||||
|
|
|
@ -3,7 +3,7 @@ import React from "react";
|
|||
|
||||
import placeholderImage from "@assets/images/placeholder255x255.png";
|
||||
import { collections } from "@saleor/collections/fixtures";
|
||||
import { listActionsProps } from "@saleor/fixtures";
|
||||
import { fetchMoreProps, listActionsProps } from "@saleor/fixtures";
|
||||
import ProductUpdatePage, {
|
||||
ProductUpdatePageProps
|
||||
} from "@saleor/products/components/ProductUpdatePage";
|
||||
|
@ -20,6 +20,8 @@ const props: ProductUpdatePageProps = {
|
|||
errors: [],
|
||||
fetchCategories: () => undefined,
|
||||
fetchCollections: () => undefined,
|
||||
fetchMoreCategories: fetchMoreProps,
|
||||
fetchMoreCollections: fetchMoreProps,
|
||||
header: product.name,
|
||||
images: product.images,
|
||||
onBack: () => undefined,
|
||||
|
|
Loading…
Reference in a new issue