dnr-product-card
Version:
This is a test deployment package to npm
50 lines (43 loc) • 1.22 kB
text/typescript
import { Props as ProductButtonsProps } from '../components/ProductButtons';
import { Props as ProductCardProps } from '../components/ProductCard';
import { Props as ProductImageProps } from '../components/ProductImage';
import { Props as ProductTitleProps } from '../components/ProductTitle';
export interface Product {
id: string;
name: string;
img?: string;
}
export interface ProductContextProps {
counter: number;
product: Product
increaseBy: (value: number) => void
maxCount?: number;
}
export interface ProductCardHOCProps {
(Props: ProductCardProps): JSX.Element;
Buttons: (Props: ProductButtonsProps) => JSX.Element;
Image: (Props: ProductImageProps) => JSX.Element;
Title: (Props: ProductTitleProps) => JSX.Element;
}
export interface OnChangeArgs {
product: Product;
count: number;
}
export interface ProductInCart extends Product {
count: number;
}
export interface Cart {
[key: string]: ProductInCart;
}
export interface InitialValues {
count?: number;
maxCount?: number;
}
export interface ProductCardHandlers {
count: number;
isMaxCountReached: boolean;
maxCount?: number;
product: Product;
increaseBy: (value: number) => void;
reset: () => void;
}