Add tax section to product view
This commit is contained in:
parent
2805b752f0
commit
2b92211b99
24 changed files with 424 additions and 204 deletions
|
@ -3,6 +3,7 @@ import { makeStyles } from "@material-ui/core/styles";
|
||||||
import TextField from "@material-ui/core/TextField";
|
import TextField from "@material-ui/core/TextField";
|
||||||
import useStateFromProps from "@saleor/hooks/useStateFromProps";
|
import useStateFromProps from "@saleor/hooks/useStateFromProps";
|
||||||
import { FetchMoreProps } from "@saleor/types";
|
import { FetchMoreProps } from "@saleor/types";
|
||||||
|
import classNames from "classnames";
|
||||||
import Downshift from "downshift";
|
import Downshift from "downshift";
|
||||||
import { filter } from "fuzzaldrin";
|
import { filter } from "fuzzaldrin";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
@ -27,6 +28,7 @@ const useStyles = makeStyles(
|
||||||
export interface SingleAutocompleteSelectFieldProps
|
export interface SingleAutocompleteSelectFieldProps
|
||||||
extends Partial<FetchMoreProps> {
|
extends Partial<FetchMoreProps> {
|
||||||
add?: SingleAutocompleteActionType;
|
add?: SingleAutocompleteActionType;
|
||||||
|
className?: string;
|
||||||
error?: boolean;
|
error?: boolean;
|
||||||
name: string;
|
name: string;
|
||||||
displayValue: string;
|
displayValue: string;
|
||||||
|
@ -51,6 +53,7 @@ const SingleAutocompleteSelectFieldComponent: React.FC<SingleAutocompleteSelectF
|
||||||
const {
|
const {
|
||||||
add,
|
add,
|
||||||
allowCustomValues,
|
allowCustomValues,
|
||||||
|
className,
|
||||||
choices,
|
choices,
|
||||||
disabled,
|
disabled,
|
||||||
displayValue,
|
displayValue,
|
||||||
|
@ -122,7 +125,10 @@ const SingleAutocompleteSelectFieldComponent: React.FC<SingleAutocompleteSelectF
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={classes.container} {...rest}>
|
<div
|
||||||
|
className={classNames(classes.container, className)}
|
||||||
|
{...rest}
|
||||||
|
>
|
||||||
<TextField
|
<TextField
|
||||||
InputProps={{
|
InputProps={{
|
||||||
...InputProps,
|
...InputProps,
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import gql from "graphql-tag";
|
import gql from "graphql-tag";
|
||||||
|
|
||||||
import { metadataFragment } from "./metadata";
|
import { metadataFragment } from "./metadata";
|
||||||
|
import { taxTypeFragment } from "./taxes";
|
||||||
import { weightFragment } from "./weight";
|
import { weightFragment } from "./weight";
|
||||||
|
|
||||||
export const stockFragment = gql`
|
export const stockFragment = gql`
|
||||||
|
@ -107,6 +108,7 @@ export const productFragmentDetails = gql`
|
||||||
${stockFragment}
|
${stockFragment}
|
||||||
${weightFragment}
|
${weightFragment}
|
||||||
${metadataFragment}
|
${metadataFragment}
|
||||||
|
${taxTypeFragment}
|
||||||
fragment Product on Product {
|
fragment Product on Product {
|
||||||
...ProductVariantAttributesFragment
|
...ProductVariantAttributesFragment
|
||||||
...MetadataFragment
|
...MetadataFragment
|
||||||
|
@ -173,10 +175,16 @@ export const productFragmentDetails = gql`
|
||||||
id
|
id
|
||||||
name
|
name
|
||||||
hasVariants
|
hasVariants
|
||||||
|
taxType {
|
||||||
|
...TaxTypeFragment
|
||||||
|
}
|
||||||
}
|
}
|
||||||
weight {
|
weight {
|
||||||
...WeightFragment
|
...WeightFragment
|
||||||
}
|
}
|
||||||
|
taxType {
|
||||||
|
...TaxTypeFragment
|
||||||
|
}
|
||||||
availableForPurchase
|
availableForPurchase
|
||||||
visibleInListings
|
visibleInListings
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,3 +26,9 @@ export const shopTaxesFragment = gql`
|
||||||
displayGrossPrices
|
displayGrossPrices
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
export const taxTypeFragment = gql`
|
||||||
|
fragment TaxTypeFragment on TaxType {
|
||||||
|
description
|
||||||
|
taxCode
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
|
@ -52,12 +52,19 @@ export interface Product_productType_variantAttributes {
|
||||||
values: (Product_productType_variantAttributes_values | null)[] | null;
|
values: (Product_productType_variantAttributes_values | null)[] | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface Product_productType_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface Product_productType {
|
export interface Product_productType {
|
||||||
__typename: "ProductType";
|
__typename: "ProductType";
|
||||||
id: string;
|
id: string;
|
||||||
variantAttributes: (Product_productType_variantAttributes | null)[] | null;
|
variantAttributes: (Product_productType_variantAttributes | null)[] | null;
|
||||||
name: string;
|
name: string;
|
||||||
hasVariants: boolean;
|
hasVariants: boolean;
|
||||||
|
taxType: Product_productType_taxType | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Product_pricing_priceRangeUndiscounted_start_gross {
|
export interface Product_pricing_priceRangeUndiscounted_start_gross {
|
||||||
|
@ -186,6 +193,12 @@ export interface Product_weight {
|
||||||
value: number;
|
value: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface Product_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface Product {
|
export interface Product {
|
||||||
__typename: "Product";
|
__typename: "Product";
|
||||||
id: string;
|
id: string;
|
||||||
|
@ -210,6 +223,7 @@ export interface Product {
|
||||||
images: (Product_images | null)[] | null;
|
images: (Product_images | null)[] | null;
|
||||||
variants: (Product_variants | null)[] | null;
|
variants: (Product_variants | null)[] | null;
|
||||||
weight: Product_weight | null;
|
weight: Product_weight | null;
|
||||||
|
taxType: Product_taxType | null;
|
||||||
availableForPurchase: any | null;
|
availableForPurchase: any | null;
|
||||||
visibleInListings: boolean;
|
visibleInListings: boolean;
|
||||||
}
|
}
|
||||||
|
|
13
src/fragments/types/TaxTypeFragment.ts
Normal file
13
src/fragments/types/TaxTypeFragment.ts
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
// This file was automatically generated and should not be edited.
|
||||||
|
|
||||||
|
// ====================================================
|
||||||
|
// GraphQL fragment: TaxTypeFragment
|
||||||
|
// ====================================================
|
||||||
|
|
||||||
|
export interface TaxTypeFragment {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
|
@ -2,7 +2,6 @@ import Card from "@material-ui/core/Card";
|
||||||
import CardContent from "@material-ui/core/CardContent";
|
import CardContent from "@material-ui/core/CardContent";
|
||||||
import { makeStyles } from "@material-ui/core/styles";
|
import { makeStyles } from "@material-ui/core/styles";
|
||||||
import CardTitle from "@saleor/components/CardTitle";
|
import CardTitle from "@saleor/components/CardTitle";
|
||||||
import ControlledCheckbox from "@saleor/components/ControlledCheckbox";
|
|
||||||
import PriceField from "@saleor/components/PriceField";
|
import PriceField from "@saleor/components/PriceField";
|
||||||
import { ProductErrorFragment } from "@saleor/fragments/types/ProductErrorFragment";
|
import { ProductErrorFragment } from "@saleor/fragments/types/ProductErrorFragment";
|
||||||
import { getFormErrors, getProductErrorMessage } from "@saleor/utils/errors";
|
import { getFormErrors, getProductErrorMessage } from "@saleor/utils/errors";
|
||||||
|
@ -23,7 +22,6 @@ const useStyles = makeStyles(
|
||||||
interface ProductPricingProps {
|
interface ProductPricingProps {
|
||||||
currency?: string;
|
currency?: string;
|
||||||
data: {
|
data: {
|
||||||
chargeTaxes: boolean;
|
|
||||||
basePrice: number;
|
basePrice: number;
|
||||||
};
|
};
|
||||||
disabled: boolean;
|
disabled: boolean;
|
||||||
|
@ -46,17 +44,7 @@ const ProductPricing: React.FC<ProductPricingProps> = props => {
|
||||||
defaultMessage: "Pricing",
|
defaultMessage: "Pricing",
|
||||||
description: "product pricing"
|
description: "product pricing"
|
||||||
})}
|
})}
|
||||||
>
|
|
||||||
<ControlledCheckbox
|
|
||||||
name="chargeTaxes"
|
|
||||||
label={intl.formatMessage({
|
|
||||||
defaultMessage: "Charge taxes for this item"
|
|
||||||
})}
|
|
||||||
checked={data.chargeTaxes}
|
|
||||||
onChange={onChange}
|
|
||||||
disabled={disabled}
|
|
||||||
/>
|
/>
|
||||||
</CardTitle>
|
|
||||||
<CardContent>
|
<CardContent>
|
||||||
<div className={classes.root}>
|
<div className={classes.root}>
|
||||||
<PriceField
|
<PriceField
|
||||||
|
|
109
src/products/components/ProductTaxes/ProductTaxes.tsx
Normal file
109
src/products/components/ProductTaxes/ProductTaxes.tsx
Normal file
|
@ -0,0 +1,109 @@
|
||||||
|
import Card from "@material-ui/core/Card";
|
||||||
|
import CardContent from "@material-ui/core/CardContent";
|
||||||
|
import makeStyles from "@material-ui/core/styles/makeStyles";
|
||||||
|
import CardTitle from "@saleor/components/CardTitle";
|
||||||
|
import ControlledCheckbox from "@saleor/components/ControlledCheckbox";
|
||||||
|
import Hr from "@saleor/components/Hr";
|
||||||
|
import SingleAutocompleteSelectField from "@saleor/components/SingleAutocompleteSelectField";
|
||||||
|
import { TaxTypeFragment } from "@saleor/fragments/types/TaxTypeFragment";
|
||||||
|
import { FormChange } from "@saleor/hooks/useForm";
|
||||||
|
import { sectionNames } from "@saleor/intl";
|
||||||
|
import React from "react";
|
||||||
|
import { useIntl } from "react-intl";
|
||||||
|
|
||||||
|
export interface ProductTaxesProps {
|
||||||
|
data: {
|
||||||
|
changeTaxCode: boolean;
|
||||||
|
chargeTaxes: boolean;
|
||||||
|
taxCode: string;
|
||||||
|
};
|
||||||
|
disabled: boolean;
|
||||||
|
selectedTaxTypeDisplayName: string;
|
||||||
|
taxTypes: TaxTypeFragment[];
|
||||||
|
onChange: FormChange;
|
||||||
|
onTaxTypeChange: FormChange;
|
||||||
|
}
|
||||||
|
|
||||||
|
const useStyles = makeStyles(
|
||||||
|
theme => ({
|
||||||
|
content: {
|
||||||
|
paddingTop: theme.spacing(2)
|
||||||
|
},
|
||||||
|
hr: {
|
||||||
|
margin: theme.spacing(2, 0)
|
||||||
|
},
|
||||||
|
select: {
|
||||||
|
margin: theme.spacing(2, 0)
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
{
|
||||||
|
name: "ProductTaxes"
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
const ProductTaxes: React.FC<ProductTaxesProps> = ({
|
||||||
|
data,
|
||||||
|
disabled,
|
||||||
|
selectedTaxTypeDisplayName,
|
||||||
|
taxTypes,
|
||||||
|
onChange,
|
||||||
|
onTaxTypeChange
|
||||||
|
}) => {
|
||||||
|
const intl = useIntl();
|
||||||
|
const classes = useStyles({});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Card>
|
||||||
|
<CardTitle title={intl.formatMessage(sectionNames.taxes)} />
|
||||||
|
<CardContent className={classes.content}>
|
||||||
|
<ControlledCheckbox
|
||||||
|
checked={data.changeTaxCode}
|
||||||
|
disabled={disabled}
|
||||||
|
label={intl.formatMessage({
|
||||||
|
defaultMessage: "Change default product’s tax rate",
|
||||||
|
description: "checkbox"
|
||||||
|
})}
|
||||||
|
name="changeTaxCode"
|
||||||
|
onChange={onChange}
|
||||||
|
/>
|
||||||
|
<Hr className={classes.hr} />
|
||||||
|
<ControlledCheckbox
|
||||||
|
checked={data.chargeTaxes}
|
||||||
|
disabled={disabled}
|
||||||
|
label={intl.formatMessage({
|
||||||
|
defaultMessage: "Charge taxes on this product",
|
||||||
|
description: "checkbox"
|
||||||
|
})}
|
||||||
|
name="chargeTaxes"
|
||||||
|
onChange={onChange}
|
||||||
|
/>
|
||||||
|
{data.changeTaxCode && (
|
||||||
|
<SingleAutocompleteSelectField
|
||||||
|
className={classes.select}
|
||||||
|
disabled={disabled}
|
||||||
|
displayValue={selectedTaxTypeDisplayName}
|
||||||
|
label={intl.formatMessage({
|
||||||
|
defaultMessage: "Tax Rate",
|
||||||
|
description: "select tax ratte"
|
||||||
|
})}
|
||||||
|
name="taxCode"
|
||||||
|
onChange={onTaxTypeChange}
|
||||||
|
value={data.taxCode}
|
||||||
|
choices={
|
||||||
|
taxTypes?.map(taxType => ({
|
||||||
|
label: taxType.description,
|
||||||
|
value: taxType.taxCode
|
||||||
|
})) || []
|
||||||
|
}
|
||||||
|
InputProps={{
|
||||||
|
autoComplete: "off"
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
ProductTaxes.displayName = "ProductTaxes";
|
||||||
|
export default ProductTaxes;
|
2
src/products/components/ProductTaxes/index.ts
Normal file
2
src/products/components/ProductTaxes/index.ts
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
export * from "./ProductTaxes";
|
||||||
|
export { default } from "./ProductTaxes";
|
|
@ -10,6 +10,7 @@ import PageHeader from "@saleor/components/PageHeader";
|
||||||
import SaveButtonBar from "@saleor/components/SaveButtonBar";
|
import SaveButtonBar from "@saleor/components/SaveButtonBar";
|
||||||
import SeoForm from "@saleor/components/SeoForm";
|
import SeoForm from "@saleor/components/SeoForm";
|
||||||
import { ProductErrorFragment } from "@saleor/fragments/types/ProductErrorFragment";
|
import { ProductErrorFragment } from "@saleor/fragments/types/ProductErrorFragment";
|
||||||
|
import { TaxTypeFragment } from "@saleor/fragments/types/TaxTypeFragment";
|
||||||
import { WarehouseFragment } from "@saleor/fragments/types/WarehouseFragment";
|
import { WarehouseFragment } from "@saleor/fragments/types/WarehouseFragment";
|
||||||
import useDateLocalize from "@saleor/hooks/useDateLocalize";
|
import useDateLocalize from "@saleor/hooks/useDateLocalize";
|
||||||
import useFormset from "@saleor/hooks/useFormset";
|
import useFormset from "@saleor/hooks/useFormset";
|
||||||
|
@ -52,6 +53,7 @@ import ProductOrganization from "../ProductOrganization";
|
||||||
import ProductPricing from "../ProductPricing";
|
import ProductPricing from "../ProductPricing";
|
||||||
import ProductShipping from "../ProductShipping/ProductShipping";
|
import ProductShipping from "../ProductShipping/ProductShipping";
|
||||||
import ProductStocks, { ProductStockInput } from "../ProductStocks";
|
import ProductStocks, { ProductStockInput } from "../ProductStocks";
|
||||||
|
import ProductTaxes from "../ProductTaxes";
|
||||||
import ProductVariants from "../ProductVariants";
|
import ProductVariants from "../ProductVariants";
|
||||||
|
|
||||||
export interface ProductUpdatePageProps extends ListActions {
|
export interface ProductUpdatePageProps extends ListActions {
|
||||||
|
@ -69,6 +71,7 @@ export interface ProductUpdatePageProps extends ListActions {
|
||||||
header: string;
|
header: string;
|
||||||
saveButtonBarState: ConfirmButtonTransitionState;
|
saveButtonBarState: ConfirmButtonTransitionState;
|
||||||
warehouses: WarehouseFragment[];
|
warehouses: WarehouseFragment[];
|
||||||
|
taxTypes: TaxTypeFragment[];
|
||||||
fetchCategories: (query: string) => void;
|
fetchCategories: (query: string) => void;
|
||||||
fetchCollections: (query: string) => void;
|
fetchCollections: (query: string) => void;
|
||||||
onVariantsAdd: () => void;
|
onVariantsAdd: () => void;
|
||||||
|
@ -110,6 +113,7 @@ export const ProductUpdatePage: React.FC<ProductUpdatePageProps> = ({
|
||||||
saveButtonBarState,
|
saveButtonBarState,
|
||||||
variants,
|
variants,
|
||||||
warehouses,
|
warehouses,
|
||||||
|
taxTypes,
|
||||||
onBack,
|
onBack,
|
||||||
onDelete,
|
onDelete,
|
||||||
onImageDelete,
|
onImageDelete,
|
||||||
|
@ -159,6 +163,10 @@ export const ProductUpdatePage: React.FC<ProductUpdatePageProps> = ({
|
||||||
getChoices(maybe(() => product.collections, []))
|
getChoices(maybe(() => product.collections, []))
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const [selectedTaxType, setSelectedTaxType] = useStateFromProps(
|
||||||
|
product?.taxType.description
|
||||||
|
);
|
||||||
|
|
||||||
const {
|
const {
|
||||||
isMetadataModified,
|
isMetadataModified,
|
||||||
isPrivateMetadataModified,
|
isPrivateMetadataModified,
|
||||||
|
@ -175,6 +183,11 @@ export const ProductUpdatePage: React.FC<ProductUpdatePageProps> = ({
|
||||||
const currency =
|
const currency =
|
||||||
product?.variants?.length && product.variants[0].price.currency;
|
product?.variants?.length && product.variants[0].price.currency;
|
||||||
const hasVariants = maybe(() => product.productType.hasVariants, false);
|
const hasVariants = maybe(() => product.productType.hasVariants, false);
|
||||||
|
const taxTypeChoices =
|
||||||
|
taxTypes?.map(taxType => ({
|
||||||
|
label: taxType.description,
|
||||||
|
value: taxType.taxCode
|
||||||
|
})) || [];
|
||||||
|
|
||||||
const handleSubmit = (data: ProductUpdatePageFormData) => {
|
const handleSubmit = (data: ProductUpdatePageFormData) => {
|
||||||
const metadata = isMetadataModified ? data.metadata : undefined;
|
const metadata = isMetadataModified ? data.metadata : undefined;
|
||||||
|
@ -244,6 +257,11 @@ export const ProductUpdatePage: React.FC<ProductUpdatePageProps> = ({
|
||||||
triggerChange
|
triggerChange
|
||||||
);
|
);
|
||||||
const changeMetadata = makeMetadataChangeHandler(change);
|
const changeMetadata = makeMetadataChangeHandler(change);
|
||||||
|
const handleTaxTypeSelect = createSingleAutocompleteSelectHandler(
|
||||||
|
change,
|
||||||
|
setSelectedTaxType,
|
||||||
|
taxTypeChoices
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
@ -415,6 +433,15 @@ export const ProductUpdatePage: React.FC<ProductUpdatePageProps> = ({
|
||||||
}}
|
}}
|
||||||
onChange={change}
|
onChange={change}
|
||||||
/>
|
/>
|
||||||
|
<CardSpacer />
|
||||||
|
<ProductTaxes
|
||||||
|
data={data}
|
||||||
|
disabled={disabled}
|
||||||
|
selectedTaxTypeDisplayName={selectedTaxType}
|
||||||
|
taxTypes={taxTypes}
|
||||||
|
onChange={change}
|
||||||
|
onTaxTypeChange={handleTaxTypeSelect}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</Grid>
|
</Grid>
|
||||||
<SaveButtonBar
|
<SaveButtonBar
|
||||||
|
|
|
@ -205,8 +205,10 @@ export const product: (
|
||||||
hasVariants: true,
|
hasVariants: true,
|
||||||
id: "pt76406",
|
id: "pt76406",
|
||||||
name: "Versatile",
|
name: "Versatile",
|
||||||
seoDescription: "Omnis rerum ea. Fugit dignissimos modi est rerum",
|
taxType: {
|
||||||
seoTitle: "Ergonomic Plastic Bacon",
|
__typename: "TaxType",
|
||||||
|
taxCode: "standard"
|
||||||
|
},
|
||||||
variantAttributes: [
|
variantAttributes: [
|
||||||
{
|
{
|
||||||
__typename: "Attribute",
|
__typename: "Attribute",
|
||||||
|
@ -253,6 +255,10 @@ export const product: (
|
||||||
seoDescription: "Seo description",
|
seoDescription: "Seo description",
|
||||||
seoTitle: "Seo title",
|
seoTitle: "Seo title",
|
||||||
sku: "59661-34207",
|
sku: "59661-34207",
|
||||||
|
taxType: {
|
||||||
|
__typename: "TaxType",
|
||||||
|
taxCode: "standard"
|
||||||
|
},
|
||||||
thumbnail: { __typename: "Image" as "Image", url: placeholderImage },
|
thumbnail: { __typename: "Image" as "Image", url: placeholderImage },
|
||||||
url: "/example-url",
|
url: "/example-url",
|
||||||
variants: [
|
variants: [
|
||||||
|
|
|
@ -137,36 +137,8 @@ export const useProductImagesReorder = makeMutation<
|
||||||
export const productUpdateMutation = gql`
|
export const productUpdateMutation = gql`
|
||||||
${productErrorFragment}
|
${productErrorFragment}
|
||||||
${productFragmentDetails}
|
${productFragmentDetails}
|
||||||
mutation ProductUpdate(
|
mutation ProductUpdate($id: ID!, $input: ProductInput!) {
|
||||||
$id: ID!
|
productUpdate(id: $id, input: $input) {
|
||||||
$attributes: [AttributeValueInput]
|
|
||||||
$publicationDate: Date
|
|
||||||
$category: ID
|
|
||||||
$chargeTaxes: Boolean!
|
|
||||||
$collections: [ID]
|
|
||||||
$descriptionJson: JSONString
|
|
||||||
$isPublished: Boolean!
|
|
||||||
$name: String
|
|
||||||
$basePrice: PositiveDecimal
|
|
||||||
$seo: SeoInput
|
|
||||||
$visibleInListings: Boolean
|
|
||||||
) {
|
|
||||||
productUpdate(
|
|
||||||
id: $id
|
|
||||||
input: {
|
|
||||||
attributes: $attributes
|
|
||||||
publicationDate: $publicationDate
|
|
||||||
category: $category
|
|
||||||
chargeTaxes: $chargeTaxes
|
|
||||||
collections: $collections
|
|
||||||
descriptionJson: $descriptionJson
|
|
||||||
isPublished: $isPublished
|
|
||||||
name: $name
|
|
||||||
basePrice: $basePrice
|
|
||||||
seo: $seo
|
|
||||||
visibleInListings: $visibleInListings
|
|
||||||
}
|
|
||||||
) {
|
|
||||||
errors: productErrors {
|
errors: productErrors {
|
||||||
...ProductErrorFragment
|
...ProductErrorFragment
|
||||||
}
|
}
|
||||||
|
@ -189,41 +161,14 @@ export const simpleProductUpdateMutation = gql`
|
||||||
${fragmentVariant}
|
${fragmentVariant}
|
||||||
mutation SimpleProductUpdate(
|
mutation SimpleProductUpdate(
|
||||||
$id: ID!
|
$id: ID!
|
||||||
$attributes: [AttributeValueInput]
|
$input: ProductInput!
|
||||||
$publicationDate: Date
|
|
||||||
$category: ID
|
|
||||||
$chargeTaxes: Boolean!
|
|
||||||
$collections: [ID]
|
|
||||||
$descriptionJson: JSONString
|
|
||||||
$isPublished: Boolean!
|
|
||||||
$name: String
|
|
||||||
$basePrice: PositiveDecimal
|
|
||||||
$productVariantId: ID!
|
$productVariantId: ID!
|
||||||
$productVariantInput: ProductVariantInput!
|
$productVariantInput: ProductVariantInput!
|
||||||
$seo: SeoInput
|
|
||||||
$addStocks: [StockInput!]!
|
$addStocks: [StockInput!]!
|
||||||
$deleteStocks: [ID!]!
|
$deleteStocks: [ID!]!
|
||||||
$updateStocks: [StockInput!]!
|
$updateStocks: [StockInput!]!
|
||||||
$weight: WeightScalar
|
|
||||||
$visibleInListings: Boolean
|
|
||||||
) {
|
|
||||||
productUpdate(
|
|
||||||
id: $id
|
|
||||||
input: {
|
|
||||||
attributes: $attributes
|
|
||||||
publicationDate: $publicationDate
|
|
||||||
category: $category
|
|
||||||
chargeTaxes: $chargeTaxes
|
|
||||||
collections: $collections
|
|
||||||
descriptionJson: $descriptionJson
|
|
||||||
isPublished: $isPublished
|
|
||||||
name: $name
|
|
||||||
basePrice: $basePrice
|
|
||||||
seo: $seo
|
|
||||||
weight: $weight
|
|
||||||
visibleInListings: $visibleInListings
|
|
||||||
}
|
|
||||||
) {
|
) {
|
||||||
|
productUpdate(id: $id, input: $input) {
|
||||||
errors: productErrors {
|
errors: productErrors {
|
||||||
...ProductErrorFragment
|
...ProductErrorFragment
|
||||||
}
|
}
|
||||||
|
@ -282,44 +227,8 @@ export const useSimpleProductUpdateMutation = makeMutation<
|
||||||
export const productCreateMutation = gql`
|
export const productCreateMutation = gql`
|
||||||
${productErrorFragment}
|
${productErrorFragment}
|
||||||
${productFragmentDetails}
|
${productFragmentDetails}
|
||||||
mutation ProductCreate(
|
mutation ProductCreate($input: ProductCreateInput!) {
|
||||||
$attributes: [AttributeValueInput]
|
productCreate(input: $input) {
|
||||||
$publicationDate: Date
|
|
||||||
$category: ID!
|
|
||||||
$chargeTaxes: Boolean!
|
|
||||||
$collections: [ID]
|
|
||||||
$descriptionJson: JSONString
|
|
||||||
$isPublished: Boolean!
|
|
||||||
$name: String!
|
|
||||||
$basePrice: PositiveDecimal
|
|
||||||
$productType: ID!
|
|
||||||
$sku: String
|
|
||||||
$seo: SeoInput
|
|
||||||
$stocks: [StockInput!]!
|
|
||||||
$trackInventory: Boolean!
|
|
||||||
$weight: WeightScalar
|
|
||||||
$visibleInListings: Boolean
|
|
||||||
) {
|
|
||||||
productCreate(
|
|
||||||
input: {
|
|
||||||
attributes: $attributes
|
|
||||||
publicationDate: $publicationDate
|
|
||||||
category: $category
|
|
||||||
chargeTaxes: $chargeTaxes
|
|
||||||
collections: $collections
|
|
||||||
descriptionJson: $descriptionJson
|
|
||||||
isPublished: $isPublished
|
|
||||||
name: $name
|
|
||||||
basePrice: $basePrice
|
|
||||||
productType: $productType
|
|
||||||
sku: $sku
|
|
||||||
seo: $seo
|
|
||||||
stocks: $stocks
|
|
||||||
trackInventory: $trackInventory
|
|
||||||
weight: $weight
|
|
||||||
visibleInListings: $visibleInListings
|
|
||||||
}
|
|
||||||
) {
|
|
||||||
errors: productErrors {
|
errors: productErrors {
|
||||||
...ProductErrorFragment
|
...ProductErrorFragment
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,7 @@ import {
|
||||||
productFragmentDetails,
|
productFragmentDetails,
|
||||||
productVariantAttributesFragment
|
productVariantAttributesFragment
|
||||||
} from "@saleor/fragments/products";
|
} from "@saleor/fragments/products";
|
||||||
|
import { taxTypeFragment } from "@saleor/fragments/taxes";
|
||||||
import { warehouseFragment } from "@saleor/fragments/warehouses";
|
import { warehouseFragment } from "@saleor/fragments/warehouses";
|
||||||
import makeQuery from "@saleor/hooks/makeQuery";
|
import makeQuery from "@saleor/hooks/makeQuery";
|
||||||
import gql from "graphql-tag";
|
import gql from "graphql-tag";
|
||||||
|
@ -166,10 +167,14 @@ export const useCountAllProducts = makeQuery<CountAllProducts, null>(
|
||||||
|
|
||||||
const productDetailsQuery = gql`
|
const productDetailsQuery = gql`
|
||||||
${productFragmentDetails}
|
${productFragmentDetails}
|
||||||
|
${taxTypeFragment}
|
||||||
query ProductDetails($id: ID!) {
|
query ProductDetails($id: ID!) {
|
||||||
product(id: $id) {
|
product(id: $id) {
|
||||||
...Product
|
...Product
|
||||||
}
|
}
|
||||||
|
taxTypes {
|
||||||
|
...TaxTypeFragment
|
||||||
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
export const useProductDetails = makeQuery<
|
export const useProductDetails = makeQuery<
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
// This file was automatically generated and should not be edited.
|
// This file was automatically generated and should not be edited.
|
||||||
|
|
||||||
import { AttributeValueInput, SeoInput, StockInput, ProductErrorCode, AttributeInputTypeEnum, WeightUnitsEnum } from "./../../types/globalTypes";
|
import { ProductCreateInput, ProductErrorCode, AttributeInputTypeEnum, WeightUnitsEnum } from "./../../types/globalTypes";
|
||||||
|
|
||||||
// ====================================================
|
// ====================================================
|
||||||
// GraphQL mutation operation: ProductCreate
|
// GraphQL mutation operation: ProductCreate
|
||||||
|
@ -58,12 +58,19 @@ export interface ProductCreate_productCreate_product_productType_variantAttribut
|
||||||
values: (ProductCreate_productCreate_product_productType_variantAttributes_values | null)[] | null;
|
values: (ProductCreate_productCreate_product_productType_variantAttributes_values | null)[] | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductCreate_productCreate_product_productType_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductCreate_productCreate_product_productType {
|
export interface ProductCreate_productCreate_product_productType {
|
||||||
__typename: "ProductType";
|
__typename: "ProductType";
|
||||||
id: string;
|
id: string;
|
||||||
variantAttributes: (ProductCreate_productCreate_product_productType_variantAttributes | null)[] | null;
|
variantAttributes: (ProductCreate_productCreate_product_productType_variantAttributes | null)[] | null;
|
||||||
name: string;
|
name: string;
|
||||||
hasVariants: boolean;
|
hasVariants: boolean;
|
||||||
|
taxType: ProductCreate_productCreate_product_productType_taxType | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ProductCreate_productCreate_product_pricing_priceRangeUndiscounted_start_gross {
|
export interface ProductCreate_productCreate_product_pricing_priceRangeUndiscounted_start_gross {
|
||||||
|
@ -192,6 +199,12 @@ export interface ProductCreate_productCreate_product_weight {
|
||||||
value: number;
|
value: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductCreate_productCreate_product_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductCreate_productCreate_product {
|
export interface ProductCreate_productCreate_product {
|
||||||
__typename: "Product";
|
__typename: "Product";
|
||||||
id: string;
|
id: string;
|
||||||
|
@ -216,6 +229,7 @@ export interface ProductCreate_productCreate_product {
|
||||||
images: (ProductCreate_productCreate_product_images | null)[] | null;
|
images: (ProductCreate_productCreate_product_images | null)[] | null;
|
||||||
variants: (ProductCreate_productCreate_product_variants | null)[] | null;
|
variants: (ProductCreate_productCreate_product_variants | null)[] | null;
|
||||||
weight: ProductCreate_productCreate_product_weight | null;
|
weight: ProductCreate_productCreate_product_weight | null;
|
||||||
|
taxType: ProductCreate_productCreate_product_taxType | null;
|
||||||
availableForPurchase: any | null;
|
availableForPurchase: any | null;
|
||||||
visibleInListings: boolean;
|
visibleInListings: boolean;
|
||||||
}
|
}
|
||||||
|
@ -231,20 +245,5 @@ export interface ProductCreate {
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ProductCreateVariables {
|
export interface ProductCreateVariables {
|
||||||
attributes?: (AttributeValueInput | null)[] | null;
|
input: ProductCreateInput;
|
||||||
publicationDate?: any | null;
|
|
||||||
category: string;
|
|
||||||
chargeTaxes: boolean;
|
|
||||||
collections?: (string | null)[] | null;
|
|
||||||
descriptionJson?: any | null;
|
|
||||||
isPublished: boolean;
|
|
||||||
name: string;
|
|
||||||
basePrice?: any | null;
|
|
||||||
productType: string;
|
|
||||||
sku?: string | null;
|
|
||||||
seo?: SeoInput | null;
|
|
||||||
stocks: StockInput[];
|
|
||||||
trackInventory: boolean;
|
|
||||||
weight?: any | null;
|
|
||||||
visibleInListings?: boolean | null;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,12 +52,19 @@ export interface ProductDetails_product_productType_variantAttributes {
|
||||||
values: (ProductDetails_product_productType_variantAttributes_values | null)[] | null;
|
values: (ProductDetails_product_productType_variantAttributes_values | null)[] | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductDetails_product_productType_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductDetails_product_productType {
|
export interface ProductDetails_product_productType {
|
||||||
__typename: "ProductType";
|
__typename: "ProductType";
|
||||||
id: string;
|
id: string;
|
||||||
variantAttributes: (ProductDetails_product_productType_variantAttributes | null)[] | null;
|
variantAttributes: (ProductDetails_product_productType_variantAttributes | null)[] | null;
|
||||||
name: string;
|
name: string;
|
||||||
hasVariants: boolean;
|
hasVariants: boolean;
|
||||||
|
taxType: ProductDetails_product_productType_taxType | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ProductDetails_product_pricing_priceRangeUndiscounted_start_gross {
|
export interface ProductDetails_product_pricing_priceRangeUndiscounted_start_gross {
|
||||||
|
@ -186,6 +193,12 @@ export interface ProductDetails_product_weight {
|
||||||
value: number;
|
value: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductDetails_product_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductDetails_product {
|
export interface ProductDetails_product {
|
||||||
__typename: "Product";
|
__typename: "Product";
|
||||||
id: string;
|
id: string;
|
||||||
|
@ -210,12 +223,20 @@ export interface ProductDetails_product {
|
||||||
images: (ProductDetails_product_images | null)[] | null;
|
images: (ProductDetails_product_images | null)[] | null;
|
||||||
variants: (ProductDetails_product_variants | null)[] | null;
|
variants: (ProductDetails_product_variants | null)[] | null;
|
||||||
weight: ProductDetails_product_weight | null;
|
weight: ProductDetails_product_weight | null;
|
||||||
|
taxType: ProductDetails_product_taxType | null;
|
||||||
availableForPurchase: any | null;
|
availableForPurchase: any | null;
|
||||||
visibleInListings: boolean;
|
visibleInListings: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductDetails_taxTypes {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductDetails {
|
export interface ProductDetails {
|
||||||
product: ProductDetails_product | null;
|
product: ProductDetails_product | null;
|
||||||
|
taxTypes: (ProductDetails_taxTypes | null)[] | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ProductDetailsVariables {
|
export interface ProductDetailsVariables {
|
||||||
|
|
|
@ -58,12 +58,19 @@ export interface ProductImageCreate_productImageCreate_product_productType_varia
|
||||||
values: (ProductImageCreate_productImageCreate_product_productType_variantAttributes_values | null)[] | null;
|
values: (ProductImageCreate_productImageCreate_product_productType_variantAttributes_values | null)[] | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductImageCreate_productImageCreate_product_productType_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductImageCreate_productImageCreate_product_productType {
|
export interface ProductImageCreate_productImageCreate_product_productType {
|
||||||
__typename: "ProductType";
|
__typename: "ProductType";
|
||||||
id: string;
|
id: string;
|
||||||
variantAttributes: (ProductImageCreate_productImageCreate_product_productType_variantAttributes | null)[] | null;
|
variantAttributes: (ProductImageCreate_productImageCreate_product_productType_variantAttributes | null)[] | null;
|
||||||
name: string;
|
name: string;
|
||||||
hasVariants: boolean;
|
hasVariants: boolean;
|
||||||
|
taxType: ProductImageCreate_productImageCreate_product_productType_taxType | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ProductImageCreate_productImageCreate_product_pricing_priceRangeUndiscounted_start_gross {
|
export interface ProductImageCreate_productImageCreate_product_pricing_priceRangeUndiscounted_start_gross {
|
||||||
|
@ -192,6 +199,12 @@ export interface ProductImageCreate_productImageCreate_product_weight {
|
||||||
value: number;
|
value: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductImageCreate_productImageCreate_product_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductImageCreate_productImageCreate_product {
|
export interface ProductImageCreate_productImageCreate_product {
|
||||||
__typename: "Product";
|
__typename: "Product";
|
||||||
id: string;
|
id: string;
|
||||||
|
@ -216,6 +229,7 @@ export interface ProductImageCreate_productImageCreate_product {
|
||||||
images: (ProductImageCreate_productImageCreate_product_images | null)[] | null;
|
images: (ProductImageCreate_productImageCreate_product_images | null)[] | null;
|
||||||
variants: (ProductImageCreate_productImageCreate_product_variants | null)[] | null;
|
variants: (ProductImageCreate_productImageCreate_product_variants | null)[] | null;
|
||||||
weight: ProductImageCreate_productImageCreate_product_weight | null;
|
weight: ProductImageCreate_productImageCreate_product_weight | null;
|
||||||
|
taxType: ProductImageCreate_productImageCreate_product_taxType | null;
|
||||||
availableForPurchase: any | null;
|
availableForPurchase: any | null;
|
||||||
visibleInListings: boolean;
|
visibleInListings: boolean;
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,12 +58,19 @@ export interface ProductImageUpdate_productImageUpdate_product_productType_varia
|
||||||
values: (ProductImageUpdate_productImageUpdate_product_productType_variantAttributes_values | null)[] | null;
|
values: (ProductImageUpdate_productImageUpdate_product_productType_variantAttributes_values | null)[] | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductImageUpdate_productImageUpdate_product_productType_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductImageUpdate_productImageUpdate_product_productType {
|
export interface ProductImageUpdate_productImageUpdate_product_productType {
|
||||||
__typename: "ProductType";
|
__typename: "ProductType";
|
||||||
id: string;
|
id: string;
|
||||||
variantAttributes: (ProductImageUpdate_productImageUpdate_product_productType_variantAttributes | null)[] | null;
|
variantAttributes: (ProductImageUpdate_productImageUpdate_product_productType_variantAttributes | null)[] | null;
|
||||||
name: string;
|
name: string;
|
||||||
hasVariants: boolean;
|
hasVariants: boolean;
|
||||||
|
taxType: ProductImageUpdate_productImageUpdate_product_productType_taxType | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ProductImageUpdate_productImageUpdate_product_pricing_priceRangeUndiscounted_start_gross {
|
export interface ProductImageUpdate_productImageUpdate_product_pricing_priceRangeUndiscounted_start_gross {
|
||||||
|
@ -192,6 +199,12 @@ export interface ProductImageUpdate_productImageUpdate_product_weight {
|
||||||
value: number;
|
value: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductImageUpdate_productImageUpdate_product_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductImageUpdate_productImageUpdate_product {
|
export interface ProductImageUpdate_productImageUpdate_product {
|
||||||
__typename: "Product";
|
__typename: "Product";
|
||||||
id: string;
|
id: string;
|
||||||
|
@ -216,6 +229,7 @@ export interface ProductImageUpdate_productImageUpdate_product {
|
||||||
images: (ProductImageUpdate_productImageUpdate_product_images | null)[] | null;
|
images: (ProductImageUpdate_productImageUpdate_product_images | null)[] | null;
|
||||||
variants: (ProductImageUpdate_productImageUpdate_product_variants | null)[] | null;
|
variants: (ProductImageUpdate_productImageUpdate_product_variants | null)[] | null;
|
||||||
weight: ProductImageUpdate_productImageUpdate_product_weight | null;
|
weight: ProductImageUpdate_productImageUpdate_product_weight | null;
|
||||||
|
taxType: ProductImageUpdate_productImageUpdate_product_taxType | null;
|
||||||
availableForPurchase: any | null;
|
availableForPurchase: any | null;
|
||||||
visibleInListings: boolean;
|
visibleInListings: boolean;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
// This file was automatically generated and should not be edited.
|
// This file was automatically generated and should not be edited.
|
||||||
|
|
||||||
import { AttributeValueInput, SeoInput, ProductErrorCode, AttributeInputTypeEnum, WeightUnitsEnum } from "./../../types/globalTypes";
|
import { ProductInput, ProductErrorCode, AttributeInputTypeEnum, WeightUnitsEnum } from "./../../types/globalTypes";
|
||||||
|
|
||||||
// ====================================================
|
// ====================================================
|
||||||
// GraphQL mutation operation: ProductUpdate
|
// GraphQL mutation operation: ProductUpdate
|
||||||
|
@ -58,12 +58,19 @@ export interface ProductUpdate_productUpdate_product_productType_variantAttribut
|
||||||
values: (ProductUpdate_productUpdate_product_productType_variantAttributes_values | null)[] | null;
|
values: (ProductUpdate_productUpdate_product_productType_variantAttributes_values | null)[] | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductUpdate_productUpdate_product_productType_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductUpdate_productUpdate_product_productType {
|
export interface ProductUpdate_productUpdate_product_productType {
|
||||||
__typename: "ProductType";
|
__typename: "ProductType";
|
||||||
id: string;
|
id: string;
|
||||||
variantAttributes: (ProductUpdate_productUpdate_product_productType_variantAttributes | null)[] | null;
|
variantAttributes: (ProductUpdate_productUpdate_product_productType_variantAttributes | null)[] | null;
|
||||||
name: string;
|
name: string;
|
||||||
hasVariants: boolean;
|
hasVariants: boolean;
|
||||||
|
taxType: ProductUpdate_productUpdate_product_productType_taxType | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ProductUpdate_productUpdate_product_pricing_priceRangeUndiscounted_start_gross {
|
export interface ProductUpdate_productUpdate_product_pricing_priceRangeUndiscounted_start_gross {
|
||||||
|
@ -192,6 +199,12 @@ export interface ProductUpdate_productUpdate_product_weight {
|
||||||
value: number;
|
value: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductUpdate_productUpdate_product_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductUpdate_productUpdate_product {
|
export interface ProductUpdate_productUpdate_product {
|
||||||
__typename: "Product";
|
__typename: "Product";
|
||||||
id: string;
|
id: string;
|
||||||
|
@ -216,6 +229,7 @@ export interface ProductUpdate_productUpdate_product {
|
||||||
images: (ProductUpdate_productUpdate_product_images | null)[] | null;
|
images: (ProductUpdate_productUpdate_product_images | null)[] | null;
|
||||||
variants: (ProductUpdate_productUpdate_product_variants | null)[] | null;
|
variants: (ProductUpdate_productUpdate_product_variants | null)[] | null;
|
||||||
weight: ProductUpdate_productUpdate_product_weight | null;
|
weight: ProductUpdate_productUpdate_product_weight | null;
|
||||||
|
taxType: ProductUpdate_productUpdate_product_taxType | null;
|
||||||
availableForPurchase: any | null;
|
availableForPurchase: any | null;
|
||||||
visibleInListings: boolean;
|
visibleInListings: boolean;
|
||||||
}
|
}
|
||||||
|
@ -232,15 +246,5 @@ export interface ProductUpdate {
|
||||||
|
|
||||||
export interface ProductUpdateVariables {
|
export interface ProductUpdateVariables {
|
||||||
id: string;
|
id: string;
|
||||||
attributes?: (AttributeValueInput | null)[] | null;
|
input: ProductInput;
|
||||||
publicationDate?: any | null;
|
|
||||||
category?: string | null;
|
|
||||||
chargeTaxes: boolean;
|
|
||||||
collections?: (string | null)[] | null;
|
|
||||||
descriptionJson?: any | null;
|
|
||||||
isPublished: boolean;
|
|
||||||
name?: string | null;
|
|
||||||
basePrice?: any | null;
|
|
||||||
seo?: SeoInput | null;
|
|
||||||
visibleInListings?: boolean | null;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,12 +58,19 @@ export interface ProductVariantReorder_productVariantReorder_product_productType
|
||||||
values: (ProductVariantReorder_productVariantReorder_product_productType_variantAttributes_values | null)[] | null;
|
values: (ProductVariantReorder_productVariantReorder_product_productType_variantAttributes_values | null)[] | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductVariantReorder_productVariantReorder_product_productType_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductVariantReorder_productVariantReorder_product_productType {
|
export interface ProductVariantReorder_productVariantReorder_product_productType {
|
||||||
__typename: "ProductType";
|
__typename: "ProductType";
|
||||||
id: string;
|
id: string;
|
||||||
variantAttributes: (ProductVariantReorder_productVariantReorder_product_productType_variantAttributes | null)[] | null;
|
variantAttributes: (ProductVariantReorder_productVariantReorder_product_productType_variantAttributes | null)[] | null;
|
||||||
name: string;
|
name: string;
|
||||||
hasVariants: boolean;
|
hasVariants: boolean;
|
||||||
|
taxType: ProductVariantReorder_productVariantReorder_product_productType_taxType | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ProductVariantReorder_productVariantReorder_product_pricing_priceRangeUndiscounted_start_gross {
|
export interface ProductVariantReorder_productVariantReorder_product_pricing_priceRangeUndiscounted_start_gross {
|
||||||
|
@ -192,6 +199,12 @@ export interface ProductVariantReorder_productVariantReorder_product_weight {
|
||||||
value: number;
|
value: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductVariantReorder_productVariantReorder_product_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductVariantReorder_productVariantReorder_product {
|
export interface ProductVariantReorder_productVariantReorder_product {
|
||||||
__typename: "Product";
|
__typename: "Product";
|
||||||
id: string;
|
id: string;
|
||||||
|
@ -216,6 +229,7 @@ export interface ProductVariantReorder_productVariantReorder_product {
|
||||||
images: (ProductVariantReorder_productVariantReorder_product_images | null)[] | null;
|
images: (ProductVariantReorder_productVariantReorder_product_images | null)[] | null;
|
||||||
variants: (ProductVariantReorder_productVariantReorder_product_variants | null)[] | null;
|
variants: (ProductVariantReorder_productVariantReorder_product_variants | null)[] | null;
|
||||||
weight: ProductVariantReorder_productVariantReorder_product_weight | null;
|
weight: ProductVariantReorder_productVariantReorder_product_weight | null;
|
||||||
|
taxType: ProductVariantReorder_productVariantReorder_product_taxType | null;
|
||||||
availableForPurchase: any | null;
|
availableForPurchase: any | null;
|
||||||
visibleInListings: boolean;
|
visibleInListings: boolean;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
// This file was automatically generated and should not be edited.
|
// This file was automatically generated and should not be edited.
|
||||||
|
|
||||||
import { AttributeValueInput, ProductVariantInput, SeoInput, StockInput, ProductErrorCode, AttributeInputTypeEnum, WeightUnitsEnum, StockErrorCode } from "./../../types/globalTypes";
|
import { ProductInput, ProductVariantInput, StockInput, ProductErrorCode, AttributeInputTypeEnum, WeightUnitsEnum, StockErrorCode } from "./../../types/globalTypes";
|
||||||
|
|
||||||
// ====================================================
|
// ====================================================
|
||||||
// GraphQL mutation operation: SimpleProductUpdate
|
// GraphQL mutation operation: SimpleProductUpdate
|
||||||
|
@ -58,12 +58,19 @@ export interface SimpleProductUpdate_productUpdate_product_productType_variantAt
|
||||||
values: (SimpleProductUpdate_productUpdate_product_productType_variantAttributes_values | null)[] | null;
|
values: (SimpleProductUpdate_productUpdate_product_productType_variantAttributes_values | null)[] | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface SimpleProductUpdate_productUpdate_product_productType_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface SimpleProductUpdate_productUpdate_product_productType {
|
export interface SimpleProductUpdate_productUpdate_product_productType {
|
||||||
__typename: "ProductType";
|
__typename: "ProductType";
|
||||||
id: string;
|
id: string;
|
||||||
variantAttributes: (SimpleProductUpdate_productUpdate_product_productType_variantAttributes | null)[] | null;
|
variantAttributes: (SimpleProductUpdate_productUpdate_product_productType_variantAttributes | null)[] | null;
|
||||||
name: string;
|
name: string;
|
||||||
hasVariants: boolean;
|
hasVariants: boolean;
|
||||||
|
taxType: SimpleProductUpdate_productUpdate_product_productType_taxType | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SimpleProductUpdate_productUpdate_product_pricing_priceRangeUndiscounted_start_gross {
|
export interface SimpleProductUpdate_productUpdate_product_pricing_priceRangeUndiscounted_start_gross {
|
||||||
|
@ -192,6 +199,12 @@ export interface SimpleProductUpdate_productUpdate_product_weight {
|
||||||
value: number;
|
value: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface SimpleProductUpdate_productUpdate_product_taxType {
|
||||||
|
__typename: "TaxType";
|
||||||
|
description: string | null;
|
||||||
|
taxCode: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface SimpleProductUpdate_productUpdate_product {
|
export interface SimpleProductUpdate_productUpdate_product {
|
||||||
__typename: "Product";
|
__typename: "Product";
|
||||||
id: string;
|
id: string;
|
||||||
|
@ -216,6 +229,7 @@ export interface SimpleProductUpdate_productUpdate_product {
|
||||||
images: (SimpleProductUpdate_productUpdate_product_images | null)[] | null;
|
images: (SimpleProductUpdate_productUpdate_product_images | null)[] | null;
|
||||||
variants: (SimpleProductUpdate_productUpdate_product_variants | null)[] | null;
|
variants: (SimpleProductUpdate_productUpdate_product_variants | null)[] | null;
|
||||||
weight: SimpleProductUpdate_productUpdate_product_weight | null;
|
weight: SimpleProductUpdate_productUpdate_product_weight | null;
|
||||||
|
taxType: SimpleProductUpdate_productUpdate_product_taxType | null;
|
||||||
availableForPurchase: any | null;
|
availableForPurchase: any | null;
|
||||||
visibleInListings: boolean;
|
visibleInListings: boolean;
|
||||||
}
|
}
|
||||||
|
@ -814,21 +828,10 @@ export interface SimpleProductUpdate {
|
||||||
|
|
||||||
export interface SimpleProductUpdateVariables {
|
export interface SimpleProductUpdateVariables {
|
||||||
id: string;
|
id: string;
|
||||||
attributes?: (AttributeValueInput | null)[] | null;
|
input: ProductInput;
|
||||||
publicationDate?: any | null;
|
|
||||||
category?: string | null;
|
|
||||||
chargeTaxes: boolean;
|
|
||||||
collections?: (string | null)[] | null;
|
|
||||||
descriptionJson?: any | null;
|
|
||||||
isPublished: boolean;
|
|
||||||
name?: string | null;
|
|
||||||
basePrice?: any | null;
|
|
||||||
productVariantId: string;
|
productVariantId: string;
|
||||||
productVariantInput: ProductVariantInput;
|
productVariantInput: ProductVariantInput;
|
||||||
seo?: SeoInput | null;
|
|
||||||
addStocks: StockInput[];
|
addStocks: StockInput[];
|
||||||
deleteStocks: string[];
|
deleteStocks: string[];
|
||||||
updateStocks: StockInput[];
|
updateStocks: StockInput[];
|
||||||
weight?: any | null;
|
|
||||||
visibleInListings?: boolean | null;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -174,20 +174,22 @@ export interface ProductUpdatePageFormData extends MetadataFormData {
|
||||||
availableForPurchase: string;
|
availableForPurchase: string;
|
||||||
basePrice: number;
|
basePrice: number;
|
||||||
category: string | null;
|
category: string | null;
|
||||||
collections: string[];
|
changeTaxCode: boolean;
|
||||||
chargeTaxes: boolean;
|
chargeTaxes: boolean;
|
||||||
|
collections: string[];
|
||||||
description: RawDraftContentState;
|
description: RawDraftContentState;
|
||||||
isAvailableForPurchase: boolean;
|
|
||||||
isAvailable: boolean;
|
isAvailable: boolean;
|
||||||
|
isAvailableForPurchase: boolean;
|
||||||
isPublished: boolean;
|
isPublished: boolean;
|
||||||
name: string;
|
name: string;
|
||||||
publicationDate: string;
|
publicationDate: string;
|
||||||
seoDescription: string;
|
seoDescription: string;
|
||||||
seoTitle: string;
|
seoTitle: string;
|
||||||
sku: string;
|
sku: string;
|
||||||
|
taxCode: string;
|
||||||
trackInventory: boolean;
|
trackInventory: boolean;
|
||||||
weight: string;
|
|
||||||
visibleInListings: boolean;
|
visibleInListings: boolean;
|
||||||
|
weight: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getProductUpdatePageFormData(
|
export function getProductUpdatePageFormData(
|
||||||
|
@ -198,6 +200,8 @@ export function getProductUpdatePageFormData(
|
||||||
availableForPurchase: product?.availableForPurchase,
|
availableForPurchase: product?.availableForPurchase,
|
||||||
basePrice: maybe(() => product.variants[0].price.amount, 0),
|
basePrice: maybe(() => product.variants[0].price.amount, 0),
|
||||||
category: maybe(() => product.category.id, ""),
|
category: maybe(() => product.category.id, ""),
|
||||||
|
changeTaxCode:
|
||||||
|
product?.productType.taxType.taxCode !== product?.taxType.taxCode,
|
||||||
chargeTaxes: maybe(() => product.chargeTaxes, false),
|
chargeTaxes: maybe(() => product.chargeTaxes, false),
|
||||||
collections: maybe(
|
collections: maybe(
|
||||||
() => product.collections.map(collection => collection.id),
|
() => product.collections.map(collection => collection.id),
|
||||||
|
@ -222,6 +226,7 @@ export function getProductUpdatePageFormData(
|
||||||
: undefined,
|
: undefined,
|
||||||
""
|
""
|
||||||
),
|
),
|
||||||
|
taxCode: product?.taxType.taxCode,
|
||||||
trackInventory: !!product?.variants[0]?.trackInventory,
|
trackInventory: !!product?.variants[0]?.trackInventory,
|
||||||
visibleInListings: !!product?.visibleInListings,
|
visibleInListings: !!product?.visibleInListings,
|
||||||
weight: product?.weight?.value.toString() || ""
|
weight: product?.weight?.value.toString() || ""
|
||||||
|
|
|
@ -91,6 +91,7 @@ export const ProductCreateView: React.FC = () => {
|
||||||
const handleCreate = async (formData: ProductCreatePageSubmitData) => {
|
const handleCreate = async (formData: ProductCreatePageSubmitData) => {
|
||||||
const result = await productCreate({
|
const result = await productCreate({
|
||||||
variables: {
|
variables: {
|
||||||
|
input: {
|
||||||
attributes: formData.attributes.map(attribute => ({
|
attributes: formData.attributes.map(attribute => ({
|
||||||
id: attribute.id,
|
id: attribute.id,
|
||||||
values: attribute.value
|
values: attribute.value
|
||||||
|
@ -118,6 +119,7 @@ export const ProductCreateView: React.FC = () => {
|
||||||
visibleInListings: formData.visibleInListings,
|
visibleInListings: formData.visibleInListings,
|
||||||
weight: weight(formData.weight)
|
weight: weight(formData.weight)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
const productId = result.data.productCreate?.product?.id;
|
const productId = result.data.productCreate?.product?.id;
|
||||||
|
|
|
@ -292,6 +292,7 @@ export const ProductUpdate: React.FC<ProductUpdateProps> = ({ id, params }) => {
|
||||||
warehouses={
|
warehouses={
|
||||||
warehouses.data?.warehouses.edges.map(edge => edge.node) || []
|
warehouses.data?.warehouses.edges.map(edge => edge.node) || []
|
||||||
}
|
}
|
||||||
|
taxTypes={data?.taxTypes}
|
||||||
variants={maybe(() => product.variants)}
|
variants={maybe(() => product.variants)}
|
||||||
onBack={handleBack}
|
onBack={handleBack}
|
||||||
onDelete={() => openModal("remove")}
|
onDelete={() => openModal("remove")}
|
||||||
|
|
|
@ -41,6 +41,8 @@ export function createUpdateHandler(
|
||||||
) {
|
) {
|
||||||
return async (data: ProductUpdatePageSubmitData) => {
|
return async (data: ProductUpdatePageSubmitData) => {
|
||||||
const productVariables: ProductUpdateVariables = {
|
const productVariables: ProductUpdateVariables = {
|
||||||
|
id: product.id,
|
||||||
|
input: {
|
||||||
attributes: data.attributes.map(attribute => ({
|
attributes: data.attributes.map(attribute => ({
|
||||||
id: attribute.id,
|
id: attribute.id,
|
||||||
values: attribute.value[0] === "" ? [] : attribute.value
|
values: attribute.value[0] === "" ? [] : attribute.value
|
||||||
|
@ -50,7 +52,6 @@ export function createUpdateHandler(
|
||||||
chargeTaxes: data.chargeTaxes,
|
chargeTaxes: data.chargeTaxes,
|
||||||
collections: data.collections,
|
collections: data.collections,
|
||||||
descriptionJson: JSON.stringify(data.description),
|
descriptionJson: JSON.stringify(data.description),
|
||||||
id: product.id,
|
|
||||||
isPublished: data.isPublished,
|
isPublished: data.isPublished,
|
||||||
name: data.name,
|
name: data.name,
|
||||||
publicationDate:
|
publicationDate:
|
||||||
|
@ -59,7 +60,11 @@ export function createUpdateHandler(
|
||||||
description: data.seoDescription,
|
description: data.seoDescription,
|
||||||
title: data.seoTitle
|
title: data.seoTitle
|
||||||
},
|
},
|
||||||
|
taxCode: data.changeTaxCode
|
||||||
|
? data.taxCode
|
||||||
|
: product.productType.taxType.taxCode,
|
||||||
visibleInListings: data.visibleInListings
|
visibleInListings: data.visibleInListings
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let errors: Array<
|
let errors: Array<
|
||||||
|
@ -74,13 +79,16 @@ export function createUpdateHandler(
|
||||||
...productVariables,
|
...productVariables,
|
||||||
addStocks: data.addStocks.map(mapFormsetStockToStockInput),
|
addStocks: data.addStocks.map(mapFormsetStockToStockInput),
|
||||||
deleteStocks: data.removeStocks,
|
deleteStocks: data.removeStocks,
|
||||||
|
input: {
|
||||||
|
...productVariables.input,
|
||||||
|
weight: weight(data.weight)
|
||||||
|
},
|
||||||
productVariantId: product.variants[0].id,
|
productVariantId: product.variants[0].id,
|
||||||
productVariantInput: {
|
productVariantInput: {
|
||||||
sku: data.sku,
|
sku: data.sku,
|
||||||
trackInventory: data.trackInventory
|
trackInventory: data.trackInventory
|
||||||
},
|
},
|
||||||
updateStocks: data.updateStocks.map(mapFormsetStockToStockInput),
|
updateStocks: data.updateStocks.map(mapFormsetStockToStockInput)
|
||||||
weight: weight(data.weight)
|
|
||||||
});
|
});
|
||||||
errors = [
|
errors = [
|
||||||
...result.data.productUpdate.errors,
|
...result.data.productUpdate.errors,
|
||||||
|
|
|
@ -1341,6 +1341,28 @@ export interface PriceRangeInput {
|
||||||
lte?: number | null;
|
lte?: number | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductCreateInput {
|
||||||
|
attributes?: (AttributeValueInput | null)[] | null;
|
||||||
|
publicationDate?: any | null;
|
||||||
|
category?: string | null;
|
||||||
|
chargeTaxes?: boolean | null;
|
||||||
|
collections?: (string | null)[] | null;
|
||||||
|
description?: string | null;
|
||||||
|
descriptionJson?: any | null;
|
||||||
|
isPublished?: boolean | null;
|
||||||
|
name?: string | null;
|
||||||
|
slug?: string | null;
|
||||||
|
taxCode?: string | null;
|
||||||
|
seo?: SeoInput | null;
|
||||||
|
weight?: any | null;
|
||||||
|
sku?: string | null;
|
||||||
|
trackInventory?: boolean | null;
|
||||||
|
basePrice?: any | null;
|
||||||
|
visibleInListings?: boolean | null;
|
||||||
|
productType: string;
|
||||||
|
stocks?: StockInput[] | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductFilterInput {
|
export interface ProductFilterInput {
|
||||||
isPublished?: boolean | null;
|
isPublished?: boolean | null;
|
||||||
collections?: (string | null)[] | null;
|
collections?: (string | null)[] | null;
|
||||||
|
@ -1356,6 +1378,26 @@ export interface ProductFilterInput {
|
||||||
productTypes?: (string | null)[] | null;
|
productTypes?: (string | null)[] | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProductInput {
|
||||||
|
attributes?: (AttributeValueInput | null)[] | null;
|
||||||
|
publicationDate?: any | null;
|
||||||
|
category?: string | null;
|
||||||
|
chargeTaxes?: boolean | null;
|
||||||
|
collections?: (string | null)[] | null;
|
||||||
|
description?: string | null;
|
||||||
|
descriptionJson?: any | null;
|
||||||
|
isPublished?: boolean | null;
|
||||||
|
name?: string | null;
|
||||||
|
slug?: string | null;
|
||||||
|
taxCode?: string | null;
|
||||||
|
seo?: SeoInput | null;
|
||||||
|
weight?: any | null;
|
||||||
|
sku?: string | null;
|
||||||
|
trackInventory?: boolean | null;
|
||||||
|
basePrice?: any | null;
|
||||||
|
visibleInListings?: boolean | null;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ProductOrder {
|
export interface ProductOrder {
|
||||||
direction: OrderDirection;
|
direction: OrderDirection;
|
||||||
attributeId?: string | null;
|
attributeId?: string | null;
|
||||||
|
|
Loading…
Reference in a new issue