import {
    PhysicalDeliveryOrderStatus,
    PhysicalDeliveryType,
} from 'src/data/globalTypes';
import type { DeliveryProduct, OrdersResult } from 'src/data/queries';

export const ordersData: OrdersResult = {
    totalCount: 1,
    orders: [
        {
            createdAt: '2022-04-12T09:15:49.257Z',
            createdBy: 'john smith',
            orderDeliveryStatus: PhysicalDeliveryOrderStatus.IN_PROGRESS,
            deliveryType: PhysicalDeliveryType.NEW,
            lastUpdated: '2022-04-13T09:15:49.257Z',
            lastUpdatedBy: 'john smith',
            orderId: '53',
            outputFile: '',
            store: 'Above Board',
            totalProducts: 10,
        },
        {
            createdAt: '2022-05-12T09:15:49.257Z',
            createdBy: 'bob smith',
            orderDeliveryStatus: PhysicalDeliveryOrderStatus.READY_FOR_DELIVERY,
            deliveryType: PhysicalDeliveryType.NEW,
            lastUpdated: '2022-05-13T09:15:49.257Z',
            lastUpdatedBy: 'bob smith',
            orderId: '54',
            outputFile: '',
            store: 'Above Board',
            totalProducts: 5,
        },
    ],
};

export const mockDeliveryProducts: DeliveryProduct[] = [
    {
        productName: 'Ben Rubin',
        productId: 1917531,
        primaryArtist: 'Benner and The Benjamins',
        serviceName: 'Above Board',
        deliveryType: PhysicalDeliveryType.NEW,
        account: 'HANDS OFF TEST ACCOUNT (Jacob Fowler) (25824)',
        salesStartDate: '2016-10-31',
        displayUpc: '191018333393',
        productCode: 'PRD123456',
        configuration: 'Blu-ray',
        genre: 'Christian',
        subGenre: 'Christian Metal',
        price: '4.99',
        imageLocation: '',
    },
    {
        productName: 'Mr. Flute / Love Eyes',
        productId: 1924080,
        primaryArtist: 'Art Webb',
        serviceName: 'Above Board',
        deliveryType: PhysicalDeliveryType.NEW,
        account: 'Cooking Vinyl Limited (25483)',
        salesStartDate: '2014-04-28',
        displayUpc: '5019421603429',
        productCode: 'EXP2CD34',
        configuration: 'CD Album',
        genre: 'R&B',
        subGenre: 'Soul',
        price: '4.99',
        imageLocation: '',
    },
];
