48 lines
905 B
TypeScript
48 lines
905 B
TypeScript
export const mockTeam = {
|
|
id: 'team-1',
|
|
name: 'Team 1',
|
|
seasonId: 'season-1',
|
|
ownerId: 'user-1',
|
|
draftPosition: 1,
|
|
createdAt: new Date('2025-01-01'),
|
|
updatedAt: new Date('2025-01-01'),
|
|
};
|
|
|
|
export const mockTeams = [
|
|
mockTeam,
|
|
{
|
|
id: 'team-2',
|
|
name: 'Team 2',
|
|
seasonId: 'season-1',
|
|
ownerId: 'user-2',
|
|
draftPosition: 2,
|
|
createdAt: new Date('2025-01-01'),
|
|
updatedAt: new Date('2025-01-01'),
|
|
},
|
|
{
|
|
id: 'team-3',
|
|
name: 'Team 3',
|
|
seasonId: 'season-1',
|
|
ownerId: null,
|
|
draftPosition: 3,
|
|
createdAt: new Date('2025-01-01'),
|
|
updatedAt: new Date('2025-01-01'),
|
|
},
|
|
];
|
|
|
|
export const mockDraftSlots = [
|
|
{
|
|
id: 'slot-1',
|
|
seasonId: 'season-1',
|
|
teamId: 'team-1',
|
|
draftOrder: 1,
|
|
team: mockTeams[0],
|
|
},
|
|
{
|
|
id: 'slot-2',
|
|
seasonId: 'season-1',
|
|
teamId: 'team-2',
|
|
draftOrder: 2,
|
|
team: mockTeams[1],
|
|
},
|
|
];
|