From 72b429321553841ac1ff48cf974bfc65da01bb06 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 19 Dec 2022 12:23:39 -0300 Subject: pretty --- .../components/product/InventoryProductForm.tsx | 98 ++++++++++++++-------- 1 file changed, 63 insertions(+), 35 deletions(-) (limited to 'packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx') diff --git a/packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx b/packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx index e44044372..da47f1be3 100644 --- a/packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx +++ b/packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx @@ -23,24 +23,32 @@ import { Translate, useTranslator } from "../../i18n/index.js"; import { ProductMap } from "../../paths/instance/orders/create/CreatePage.js"; type Form = { - product: MerchantBackend.Products.ProductDetail & WithId, + product: MerchantBackend.Products.ProductDetail & WithId; quantity: number; -} +}; interface Props { - currentProducts: ProductMap, - onAddProduct: (product: MerchantBackend.Products.ProductDetail & WithId, quantity: number) => void, - inventory: (MerchantBackend.Products.ProductDetail & WithId)[], + currentProducts: ProductMap; + onAddProduct: ( + product: MerchantBackend.Products.ProductDetail & WithId, + quantity: number, + ) => void; + inventory: (MerchantBackend.Products.ProductDetail & WithId)[]; } -export function InventoryProductForm({ currentProducts, onAddProduct, inventory }: Props): VNode { - const initialState = { quantity: 1 } - const [state, setState] = useState>(initialState) - const [errors, setErrors] = useState>({}) +export function InventoryProductForm({ + currentProducts, + onAddProduct, + inventory, +}: Props): VNode { + const initialState = { quantity: 1 }; + const [state, setState] = useState>(initialState); + const [errors, setErrors] = useState>({}); - const i18n = useTranslator() + const i18n = useTranslator(); - const productWithInfiniteStock = state.product && state.product.total_stock === -1 + const productWithInfiniteStock = + state.product && state.product.total_stock === -1; const submit = (): void => { if (!state.product) { @@ -48,48 +56,68 @@ export function InventoryProductForm({ currentProducts, onAddProduct, inventory return; } if (productWithInfiniteStock) { - onAddProduct(state.product, 1) + onAddProduct(state.product, 1); } else { if (!state.quantity || state.quantity <= 0) { setErrors({ quantity: i18n`Quantity must be greater than 0!` }); return; } - const currentStock = state.product.total_stock - state.product.total_lost - state.product.total_sold - const p = currentProducts[state.product.id] + const currentStock = + state.product.total_stock - + state.product.total_lost - + state.product.total_sold; + const p = currentProducts[state.product.id]; if (p) { if (state.quantity + p.quantity > currentStock) { const left = currentStock - p.quantity; - setErrors({ quantity: i18n`This quantity exceeds remaining stock. Currently, only ${left} units remain unreserved in stock.` }); + setErrors({ + quantity: i18n`This quantity exceeds remaining stock. Currently, only ${left} units remain unreserved in stock.`, + }); return; } - onAddProduct(state.product, state.quantity + p.quantity) + onAddProduct(state.product, state.quantity + p.quantity); } else { if (state.quantity > currentStock) { const left = currentStock; - setErrors({ quantity: i18n`This quantity exceeds remaining stock. Currently, only ${left} units remain unreserved in stock.` }); + setErrors({ + quantity: i18n`This quantity exceeds remaining stock. Currently, only ${left} units remain unreserved in stock.`, + }); return; } - onAddProduct(state.product, state.quantity) + onAddProduct(state.product, state.quantity); } } - setState(initialState) - } + setState(initialState); + }; - return errors={errors} object={state} valueHandler={setState}> - setState(v => ({ ...v, product: p }))} products={inventory} /> - { state.product &&
-
- {!productWithInfiniteStock && - name="quantity" label={i18n`Quantity`} tooltip={i18n`how many products will be added`} /> - } -
-
-
- + return ( + errors={errors} object={state} valueHandler={setState}> + setState((v) => ({ ...v, product: p }))} + products={inventory} + /> + {state.product && ( +
+
+ {!productWithInfiniteStock && ( + + name="quantity" + label={i18n`Quantity`} + tooltip={i18n`how many products will be added`} + /> + )} +
+
+
+ +
+
-
-
} - - + )} + + ); } -- cgit v1.2.3