import {
    OwnershipNrProductContentType,
    OwnershipNrProductFormat,
    OwnershipNrProductSubType,
    OwnershipNrTrackRecordingType,
} from 'src/data/globalTypes';
import { getProductInfo } from 'src/utils/formatter';
import type { OwnershipInstance } from 'src/pages/songPage/types';

export const testInstances: OwnershipInstance[] = [
    {
        accountId: 67367,
        accountName: 'Concord Bicycle Music - KNR',
        subaccountId: 1234,
        endDate: null,
        id: 'c70c1429-914a-41b7-9cd1-a1d02f1832ae',
        isrc: 'USVIC9706207',
        number: '1',
        product: {
            id: 'a40c1429-876a-41b7-9cd1-a1d02f1832gh',
            displayArtistName: 'Test Display Arist Name',
            upc: '886443183872',
            code: 'VR062',
            name: 'Fight For Justice',
            imprint: null,
            salesStartDate: '2021-04-01',
            contentType: OwnershipNrProductContentType.DIGITAL,
            format: OwnershipNrProductFormat.ALBUM,
            subType: OwnershipNrProductSubType.VINYL,
            version: 'Verion',
            primaryArtists: [{ id: 'participant-uuid', name: 'WILLOW' }],
            featuredArtists: null,
        },
        recordingType: OwnershipNrTrackRecordingType.AUDIO,
        reference: true,
        startDate: '2021-04-01',
        title: 'Fight For Justice',
        version: null,
        associatedAudioIsrc: null,
        trackNumber: 1,
        discNumber: 1,
        notes: null,
        productInfo: getProductInfo(
            OwnershipNrProductContentType.DIGITAL,
            OwnershipNrTrackRecordingType.AUDIO,
            OwnershipNrProductFormat.ALBUM,
            OwnershipNrProductSubType.VINYL
        ),
        pLineYear: 2021,
        pLineLabel: 'Craft Recordings. Distributed by Concord.',
        pLine: '2021 Craft Recordings. Distributed by Concord.',
        productName: 'Fight for Justice',
        vendor: 'KNR',
        owner: 'KNR',
    },
];
