import { Props as ProductCardProps } from "../components/ProductCard";
import { Props as ProductTitleProps } from "../components/ProductTitle";
import { Props as ProductImageProps } from "../components/ProductImage";
import { Props as ProductButtonsProps } from "../components/ProductButtons";

export interface IProduct {
    id: string;
    title: string;
    img?: string;
}

export interface ProductContextProps {
    counter: number;
    product: IProduct;
    maxCount?: number;
    increaseBy: (value: number) => void;
}

export interface ProductCardHOCProps {
    ({ children, product }: ProductCardProps): JSX.Element;
    Title: ({ title }: ProductTitleProps) => JSX.Element;
    Image: ({ img }: ProductImageProps) => JSX.Element;
    Buttons: ({ className }: ProductButtonsProps) => JSX.Element;
}

export interface onChangeArgs {
    product: IProduct;
    count: number;
}

export interface ProductInCart extends IProduct {
    count: number;
}

export interface InicialValues {
    count?: number;
    maxCount?: number;
}

export interface ProductCardHandlers {
    count: number;
    isMaxCountReached: boolean;
    maxCount?: number;
    product: IProduct;

    increaseBy: (value: number) => void;
    reset: () => void;
}
