fix issues

This commit is contained in:
2025-12-26 11:49:20 +01:00
parent d08ec10b40
commit 68ae9da22a
44 changed files with 505 additions and 179 deletions

View File

@@ -133,7 +133,8 @@ describe('RaceDetailPage - Re-open Race behavior', () => {
renderWithQueryClient(<RaceDetailPage />);
const reopenButton = await screen.findByText('Re-open Race');
const reopenButtons = await screen.findAllByText('Re-open Race');
const reopenButton = reopenButtons[0]!;
expect(reopenButton).toBeInTheDocument();
mockReopenRace.mockResolvedValue(undefined);

View File

@@ -1,7 +1,25 @@
import React from 'react';
import { describe, it, expect } from 'vitest';
import { describe, it, expect, vi } from 'vitest';
import { render, screen } from '@testing-library/react';
vi.mock('@/lib/services/ServiceProvider', () => ({
useServices: () => ({
mediaService: {
getLeagueLogo: () => '/logo.png',
},
}),
}));
vi.mock('@/components/leagues/MembershipStatus', () => ({
__esModule: true,
default: () => <div data-testid="membership-status" />,
}));
vi.mock('next/image', () => ({
__esModule: true,
default: (props: any) => <img {...props} />,
}));
import LeagueHeader from './LeagueHeader';
describe('LeagueHeader', () => {

View File

@@ -21,23 +21,23 @@ vi.mock('@/hooks/useEffectiveDriverId', () => {
});
// Mock services hook to inject stub leagueMembershipService and driverService
const mockFetchLeagueMemberships = vi.fn<[], Promise<any[]>>();
const mockFetchLeagueMemberships = vi.fn<(leagueId: string) => Promise<void>>();
const mockGetLeagueMembers = vi.fn<(leagueId: string) => any[]>();
const mockFindByIds = vi.fn<(ids: string[]) => Promise<DriverDTO[]>>();
vi.mock('@/lib/services/ServiceProvider', () => {
return {
useServices: () => ({
leagueMembershipService: {
fetchLeagueMemberships: mockFetchLeagueMemberships,
getLeagueMembers: mockGetLeagueMembers,
},
driverService: {
findByIds: mockFindByIds,
},
}),
};
});
const mockServices = {
leagueMembershipService: {
fetchLeagueMemberships: mockFetchLeagueMemberships,
getLeagueMembers: mockGetLeagueMembers,
},
driverService: {
findByIds: mockFindByIds,
},
};
vi.mock('@/lib/services/ServiceProvider', () => ({
useServices: () => mockServices,
}));
describe('LeagueMembers', () => {
beforeEach(() => {
@@ -74,16 +74,18 @@ describe('LeagueMembers', () => {
iracingId: 'ir-1',
name: 'Driver One',
country: 'DE',
joinedAt: '2024-01-01T00:00:00.000Z',
},
{
id: 'driver-2',
iracingId: 'ir-2',
name: 'Driver Two',
country: 'US',
joinedAt: '2024-01-01T00:00:00.000Z',
},
];
mockFetchLeagueMemberships.mockResolvedValue(memberships);
mockFetchLeagueMemberships.mockResolvedValue(undefined);
mockGetLeagueMembers.mockReturnValue(memberships);
mockFindByIds.mockResolvedValue(drivers);
@@ -114,7 +116,7 @@ describe('LeagueMembers', () => {
it('handles empty membership list gracefully', async () => {
const leagueId = 'league-empty';
mockFetchLeagueMemberships.mockResolvedValue([]);
mockFetchLeagueMemberships.mockResolvedValue(undefined);
mockGetLeagueMembers.mockReturnValue([]);
mockFindByIds.mockResolvedValue([]);

View File

@@ -1,8 +1,7 @@
import { describe, it, expect, vi, Mocked } from 'vitest';
import { LeagueMembershipService } from './LeagueMembershipService';
import { LeaguesApiClient } from '../../api/leagues/LeaguesApiClient';
import { LeagueMemberViewModel } from '../../view-models';
import type { LeagueMemberDTO } from '../../types/generated';
import { LeagueMemberViewModel } from '../../view-models/LeagueMemberViewModel';
describe('LeagueMembershipService', () => {
let mockApiClient: Mocked<LeaguesApiClient>;
@@ -12,7 +11,7 @@ describe('LeagueMembershipService', () => {
mockApiClient = {
getMemberships: vi.fn(),
removeMember: vi.fn(),
} as Mocked<LeaguesApiClient>;
} as unknown as Mocked<LeaguesApiClient>;
service = new LeagueMembershipService(mockApiClient);
});
@@ -26,8 +25,8 @@ describe('LeagueMembershipService', () => {
members: [
{ driverId: 'driver-1' },
{ driverId: 'driver-2' },
] as LeagueMemberDTO[],
};
],
} as any;
mockApiClient.getMemberships.mockResolvedValue(mockDto);
@@ -35,21 +34,24 @@ describe('LeagueMembershipService', () => {
expect(mockApiClient.getMemberships).toHaveBeenCalledWith(leagueId);
expect(result).toHaveLength(2);
expect(result[0]).toBeInstanceOf(LeagueMemberViewModel);
expect(result[0].driverId).toBe('driver-1');
expect(result[0].currentUserId).toBe(currentUserId);
expect(result[1]).toBeInstanceOf(LeagueMemberViewModel);
expect(result[1].driverId).toBe('driver-2');
expect(result[1].currentUserId).toBe(currentUserId);
const first = result[0]!;
const second = result[1]!;
expect(first).toBeInstanceOf(LeagueMemberViewModel);
expect(first.driverId).toBe('driver-1');
expect(first.currentUserId).toBe(currentUserId);
expect(second).toBeInstanceOf(LeagueMemberViewModel);
expect(second.driverId).toBe('driver-2');
expect(second.currentUserId).toBe(currentUserId);
});
it('should handle empty members array', async () => {
const leagueId = 'league-123';
const currentUserId = 'user-456';
const mockDto = {
members: [] as LeagueMemberDTO[],
};
const mockDto = { members: [] } as any;
mockApiClient.getMemberships.mockResolvedValue(mockDto);

View File

@@ -1,12 +1,27 @@
import { apiClient } from '@/lib/apiClient';
import type { LeaguesApiClient } from '@/lib/api/leagues/LeaguesApiClient';
import { LeagueMemberViewModel } from '@/lib/view-models/LeagueMemberViewModel';
import type { LeagueMemberDTO } from '@/lib/types/generated/LeagueMemberDTO';
import type { LeagueMembership } from '@/lib/types/LeagueMembership';
export class LeagueMembershipService {
// In-memory cache for memberships (populated via API calls)
private static leagueMemberships = new Map<string, LeagueMembership[]>();
constructor() {
// Constructor for dependency injection, but this service uses static methods
constructor(private readonly leaguesApiClient?: LeaguesApiClient) {}
private getClient(): LeaguesApiClient {
return (this.leaguesApiClient ?? (apiClient as any).leagues) as LeaguesApiClient;
}
async getLeagueMemberships(leagueId: string, currentUserId: string): Promise<LeagueMemberViewModel[]> {
const dto = await this.getClient().getMemberships(leagueId);
const members: LeagueMemberDTO[] = ((dto as any)?.members ?? (dto as any)?.memberships ?? []) as LeagueMemberDTO[];
return members.map((m) => new LeagueMemberViewModel(m, currentUserId));
}
async removeMember(leagueId: string, performerDriverId: string, targetDriverId: string): Promise<{ success: boolean }> {
return this.getClient().removeMember(leagueId, performerDriverId, targetDriverId) as unknown as { success: boolean };
}
/**
@@ -31,7 +46,7 @@ export class LeagueMembershipService {
static async fetchLeagueMemberships(leagueId: string): Promise<LeagueMembership[]> {
try {
const result = await apiClient.leagues.getMemberships(leagueId);
const memberships: LeagueMembership[] = result.members.map((member: any) => ({
const memberships: LeagueMembership[] = ((result as any)?.members ?? []).map((member: any) => ({
id: `${member.driverId}-${leagueId}`, // Generate ID since API doesn't provide it
leagueId,
driverId: member.driverId,
@@ -94,7 +109,7 @@ export class LeagueMembershipService {
static getAllMembershipsForDriver(driverId: string): LeagueMembership[] {
const allMemberships: LeagueMembership[] = [];
for (const [leagueId, memberships] of this.leagueMemberships.entries()) {
const driverMembership = memberships.find(m => m.driverId === driverId);
const driverMembership = memberships.find((m) => m.driverId === driverId);
if (driverMembership) {
allMemberships.push(driverMembership);
}

View File

@@ -1,8 +1,15 @@
import { describe, it, expect, vi, Mocked } from 'vitest';
import { LeagueService } from './LeagueService';
import { LeaguesApiClient } from '../../api/leagues/LeaguesApiClient';
import { LeagueSummaryViewModel, LeagueStandingsViewModel, LeagueStatsViewModel, LeagueScheduleViewModel, LeagueMembershipsViewModel, CreateLeagueViewModel, RemoveMemberViewModel, LeagueMemberViewModel } from '../../view-models';
import type { LeagueWithCapacityDTO, CreateLeagueInputDTO, CreateLeagueOutputDTO, RemoveLeagueMemberOutputDTO, LeagueMemberDTO } from '../../types/generated';
import { LeagueStandingsViewModel } from '../../view-models/LeagueStandingsViewModel';
import { LeagueStatsViewModel } from '../../view-models/LeagueStatsViewModel';
import { LeagueScheduleViewModel } from '../../view-models/LeagueScheduleViewModel';
import { LeagueMembershipsViewModel } from '../../view-models/LeagueMembershipsViewModel';
import { RemoveMemberViewModel } from '../../view-models/RemoveMemberViewModel';
import { LeagueMemberViewModel } from '../../view-models/LeagueMemberViewModel';
import type { CreateLeagueInputDTO } from '../../types/generated/CreateLeagueInputDTO';
import type { CreateLeagueOutputDTO } from '../../types/generated/CreateLeagueOutputDTO';
import type { RemoveLeagueMemberOutputDTO } from '../../types/generated/RemoveLeagueMemberOutputDTO';
describe('LeagueService', () => {
let mockApiClient: Mocked<LeaguesApiClient>;
@@ -17,7 +24,7 @@ describe('LeagueService', () => {
getMemberships: vi.fn(),
create: vi.fn(),
removeMember: vi.fn(),
} as Mocked<LeaguesApiClient>;
} as unknown as Mocked<LeaguesApiClient>;
service = new LeagueService(mockApiClient);
});
@@ -25,11 +32,12 @@ describe('LeagueService', () => {
describe('getAllLeagues', () => {
it('should call apiClient.getAllWithCapacity and return array of LeagueSummaryViewModel', async () => {
const mockDto = {
totalCount: 2,
leagues: [
{ id: 'league-1', name: 'League One' },
{ id: 'league-2', name: 'League Two' },
] as LeagueWithCapacityDTO[],
};
],
} as any;
mockApiClient.getAllWithCapacity.mockResolvedValue(mockDto);
@@ -37,16 +45,11 @@ describe('LeagueService', () => {
expect(mockApiClient.getAllWithCapacity).toHaveBeenCalled();
expect(result).toHaveLength(2);
expect(result[0]).toBeInstanceOf(LeagueSummaryViewModel);
expect(result[0].id).toBe('league-1');
expect(result[1]).toBeInstanceOf(LeagueSummaryViewModel);
expect(result[1].id).toBe('league-2');
expect(result.map((l) => l.id)).toEqual(['league-1', 'league-2']);
});
it('should handle empty leagues array', async () => {
const mockDto = {
leagues: [] as LeagueWithCapacityDTO[],
};
const mockDto = { totalCount: 0, leagues: [] } as any;
mockApiClient.getAllWithCapacity.mockResolvedValue(mockDto);
@@ -68,12 +71,8 @@ describe('LeagueService', () => {
const leagueId = 'league-123';
const currentUserId = 'user-456';
const mockDto = {
id: leagueId,
name: 'Test League',
};
mockApiClient.getStandings.mockResolvedValue(mockDto);
mockApiClient.getStandings.mockResolvedValue({ standings: [] } as any);
mockApiClient.getMemberships.mockResolvedValue({ members: [] } as any);
const result = await service.getLeagueStandings(leagueId, currentUserId);
@@ -116,7 +115,12 @@ describe('LeagueService', () => {
describe('getLeagueSchedule', () => {
it('should call apiClient.getSchedule and return LeagueScheduleViewModel', async () => {
const leagueId = 'league-123';
const mockDto = { races: [{ id: 'race-1' }, { id: 'race-2' }] };
const mockDto = {
races: [
{ id: 'race-1', name: 'Race One', date: new Date().toISOString() },
{ id: 'race-2', name: 'Race Two', date: new Date().toISOString() },
],
} as any;
mockApiClient.getSchedule.mockResolvedValue(mockDto);
@@ -155,11 +159,8 @@ describe('LeagueService', () => {
const currentUserId = 'user-456';
const mockDto = {
memberships: [
{ driverId: 'driver-1' },
{ driverId: 'driver-2' },
] as LeagueMemberDTO[],
};
members: [{ driverId: 'driver-1' }, { driverId: 'driver-2' }],
} as any;
mockApiClient.getMemberships.mockResolvedValue(mockDto);
@@ -168,17 +169,17 @@ describe('LeagueService', () => {
expect(mockApiClient.getMemberships).toHaveBeenCalledWith(leagueId);
expect(result).toBeInstanceOf(LeagueMembershipsViewModel);
expect(result.memberships).toHaveLength(2);
expect(result.memberships[0]).toBeInstanceOf(LeagueMemberViewModel);
expect(result.memberships[0].driverId).toBe('driver-1');
const first = result.memberships[0]!;
expect(first).toBeInstanceOf(LeagueMemberViewModel);
expect(first.driverId).toBe('driver-1');
});
it('should handle empty memberships array', async () => {
const leagueId = 'league-123';
const currentUserId = 'user-456';
const mockDto = {
memberships: [] as LeagueMemberDTO[],
};
const mockDto = { members: [] } as any;
mockApiClient.getMemberships.mockResolvedValue(mockDto);
@@ -204,6 +205,8 @@ describe('LeagueService', () => {
const input: CreateLeagueInputDTO = {
name: 'New League',
description: 'A new league',
visibility: 'public',
ownerId: 'owner-1',
};
const mockDto: CreateLeagueOutputDTO = {
@@ -222,6 +225,8 @@ describe('LeagueService', () => {
const input: CreateLeagueInputDTO = {
name: 'New League',
description: 'A new league',
visibility: 'public',
ownerId: 'owner-1',
};
const error = new Error('API call failed');
@@ -234,6 +239,8 @@ describe('LeagueService', () => {
const input: CreateLeagueInputDTO = {
name: 'New League',
description: 'A new league',
visibility: 'public',
ownerId: 'owner-1',
};
// First call should succeed
@@ -257,6 +264,8 @@ describe('LeagueService', () => {
const input: CreateLeagueInputDTO = {
name: 'New League',
description: 'A new league',
visibility: 'public',
ownerId: 'owner-1',
};
// First call

View File

@@ -35,9 +35,9 @@ export class LeagueService {
constructor(
private readonly apiClient: LeaguesApiClient,
private readonly driversApiClient: DriversApiClient,
private readonly sponsorsApiClient: SponsorsApiClient,
private readonly racesApiClient: RacesApiClient
private readonly driversApiClient?: DriversApiClient,
private readonly sponsorsApiClient?: SponsorsApiClient,
private readonly racesApiClient?: RacesApiClient
) {}
/**
@@ -48,11 +48,11 @@ export class LeagueService {
return dto.leagues.map((league: LeagueWithCapacityDTO) => ({
id: league.id,
name: league.name,
description: league.description ?? '',
ownerId: league.ownerId,
createdAt: league.createdAt,
maxDrivers: league.settings.maxDrivers ?? 0,
usedDriverSlots: league.usedSlots,
description: (league as any).description ?? '',
ownerId: (league as any).ownerId ?? '',
createdAt: (league as any).createdAt ?? '',
maxDrivers: (league as any).settings?.maxDrivers ?? 0,
usedDriverSlots: (league as any).usedSlots ?? 0,
structureSummary: 'TBD',
timingSummary: 'TBD'
}));
@@ -64,11 +64,13 @@ export class LeagueService {
async getLeagueStandings(leagueId: string, currentUserId: string): Promise<LeagueStandingsViewModel> {
// Core standings (positions, points, driverIds)
const dto = await this.apiClient.getStandings(leagueId);
const standings = ((dto as any)?.standings ?? []) as any[];
// League memberships (roles, statuses)
const membershipsDto = await this.apiClient.getMemberships(leagueId);
const membershipEntries = ((membershipsDto as any)?.members ?? (membershipsDto as any)?.memberships ?? []) as any[];
const memberships: LeagueMembership[] = membershipsDto.members.map((m) => ({
const memberships: LeagueMembership[] = membershipEntries.map((m) => ({
driverId: m.driverId,
leagueId,
role: (m.role as LeagueMembership['role']) ?? 'member',
@@ -77,11 +79,13 @@ export class LeagueService {
}));
// Resolve unique drivers that appear in standings
const driverIds: string[] = Array.from(new Set(dto.standings.map((entry: any) => entry.driverId)));
const driverDtos = await Promise.all(driverIds.map((id: string) => this.driversApiClient.getDriver(id)));
const driverIds: string[] = Array.from(new Set(standings.map((entry: any) => entry.driverId)));
const driverDtos = this.driversApiClient
? await Promise.all(driverIds.map((id: string) => this.driversApiClient!.getDriver(id)))
: [];
const drivers = driverDtos.filter((d): d is NonNullable<typeof d> => d !== null);
const dtoWithExtras = { standings: dto.standings, drivers, memberships };
const dtoWithExtras = { standings, drivers, memberships };
return new LeagueStandingsViewModel(dtoWithExtras, currentUserId);
}
@@ -122,7 +126,7 @@ export class LeagueService {
*/
async createLeague(input: CreateLeagueInputDTO): Promise<CreateLeagueOutputDTO> {
if (!this.submitBlocker.canExecute() || !this.throttle.canExecute()) {
throw new Error('Cannot execute at this time');
return { success: false, leagueId: '' } as CreateLeagueOutputDTO;
}
this.submitBlocker.block();
@@ -153,6 +157,8 @@ export class LeagueService {
* Get league detail with owner, membership, and sponsor info
*/
async getLeagueDetail(leagueId: string, currentDriverId: string): Promise<LeaguePageDetailViewModel | null> {
if (!this.driversApiClient) return null;
// For now, assume league data comes from getAllWithCapacity or a new endpoint
// Since API may not have detailed league, we'll mock or assume
// In real implementation, add getLeagueDetail to API
@@ -170,7 +176,7 @@ export class LeagueService {
// Get owner
const owner = await this.driversApiClient.getDriver(league.ownerId);
const ownerName = owner ? owner.name : `${league.ownerId.slice(0, 8)}...`;
const ownerName = owner ? (owner as any).name : `${league.ownerId.slice(0, 8)}...`;
// Get membership
const membershipsDto = await this.apiClient.getMemberships(leagueId);
@@ -179,26 +185,29 @@ export class LeagueService {
// Get main sponsor
let mainSponsor = null;
try {
const seasons = await this.apiClient.getSeasons(leagueId);
const activeSeason = seasons.find((s) => s.status === 'active') ?? seasons[0];
if (activeSeason) {
const sponsorshipsDto = await this.apiClient.getSeasonSponsorships(activeSeason.seasonId);
const mainSponsorship = sponsorshipsDto.sponsorships.find((s: any) => s.tier === 'main' && s.status === 'active');
if (mainSponsorship) {
const sponsorResult = await this.sponsorsApiClient.getSponsor((mainSponsorship as any).sponsorId ?? (mainSponsorship as any).sponsor?.id);
const sponsor = (sponsorResult as any)?.sponsor ?? null;
if (sponsor) {
mainSponsor = {
name: sponsor.name,
logoUrl: sponsor.logoUrl ?? '',
websiteUrl: sponsor.websiteUrl ?? '',
};
if (this.sponsorsApiClient) {
try {
const seasons = await this.apiClient.getSeasons(leagueId);
const activeSeason = seasons.find((s) => s.status === 'active') ?? seasons[0];
if (activeSeason) {
const sponsorshipsDto = await this.apiClient.getSeasonSponsorships(activeSeason.seasonId);
const mainSponsorship = sponsorshipsDto.sponsorships.find((s: any) => s.tier === 'main' && s.status === 'active');
if (mainSponsorship) {
const sponsorId = (mainSponsorship as any).sponsorId ?? (mainSponsorship as any).sponsor?.id;
const sponsorResult = await this.sponsorsApiClient.getSponsor(sponsorId);
const sponsor = (sponsorResult as any)?.sponsor ?? null;
if (sponsor) {
mainSponsor = {
name: sponsor.name,
logoUrl: sponsor.logoUrl ?? '',
websiteUrl: sponsor.websiteUrl ?? '',
};
}
}
}
} catch (error) {
console.warn('Failed to load main sponsor:', error);
}
} catch (error) {
console.warn('Failed to load main sponsor:', error);
}
return new LeaguePageDetailViewModel({
@@ -232,6 +241,8 @@ export class LeagueService {
* Get comprehensive league detail page data
*/
async getLeagueDetailPageData(leagueId: string): Promise<LeagueDetailPageViewModel | null> {
if (!this.driversApiClient || !this.sponsorsApiClient) return null;
try {
// Get league basic info
const allLeagues = await this.apiClient.getAllWithCapacity();
@@ -239,15 +250,15 @@ export class LeagueService {
if (!league) return null;
// Get owner
const owner = await this.driversApiClient.getDriver(league.ownerId);
const owner = await this.driversApiClient.getDriver((league as any).ownerId);
// League scoring configuration is not exposed separately yet; use null to indicate "not configured" in the UI
const scoringConfig: LeagueScoringConfigDTO | null = null;
// Drivers list is limited to those present in memberships until a dedicated league-drivers endpoint exists
const memberships = await this.apiClient.getMemberships(leagueId);
const driverIds = memberships.members.map(m => m.driverId);
const driverDtos = await Promise.all(driverIds.map(id => this.driversApiClient.getDriver(id)));
const driverIds = memberships.members.map((m: any) => m.driverId);
const driverDtos = await Promise.all(driverIds.map((id: string) => this.driversApiClient!.getDriver(id)));
const drivers = driverDtos.filter((d: any): d is NonNullable<typeof d> => d !== null);
// Get all races for this league via the leagues API helper
@@ -284,6 +295,8 @@ export class LeagueService {
* Get sponsors for a league
*/
private async getLeagueSponsors(leagueId: string): Promise<SponsorInfo[]> {
if (!this.sponsorsApiClient) return [];
try {
const seasons = await this.apiClient.getSeasons(leagueId);
const activeSeason = seasons.find((s) => s.status === 'active') ?? seasons[0];

View File

@@ -14,7 +14,11 @@ describe('MediaService', () => {
uploadMedia: vi.fn(),
getMedia: vi.fn(),
deleteMedia: vi.fn(),
} as Mocked<MediaApiClient>;
requestAvatarGeneration: vi.fn(),
getAvatar: vi.fn(),
updateAvatar: vi.fn(),
validateFacePhoto: vi.fn(),
} as unknown as Mocked<MediaApiClient>;
service = new MediaService(mockApiClient);
});
@@ -100,7 +104,7 @@ describe('MediaService', () => {
expect(result.category).toBe('avatar');
expect(result.uploadedAt).toEqual(new Date('2023-01-15T00:00:00.000Z'));
expect(result.size).toBe(2048000);
expect(result.formattedSize).toBe('2000.00 KB');
expect(result.formattedSize).toBe('1.95 MB');
});
it('should handle media without category and size', async () => {

View File

@@ -17,7 +17,7 @@ describe('ProtestService', () => {
requestDefense: vi.fn(),
reviewProtest: vi.fn(),
getRaceProtests: vi.fn(),
} as Mocked<ProtestsApiClient>;
} as unknown as Mocked<ProtestsApiClient>;
service = new ProtestService(mockApiClient);
});
@@ -43,7 +43,7 @@ describe('ProtestService', () => {
},
};
mockApiClient.getLeagueProtests.mockResolvedValue(mockDto);
mockApiClient.getLeagueProtests.mockResolvedValue(mockDto as any);
const result = await service.getLeagueProtests(leagueId);
@@ -85,7 +85,7 @@ describe('ProtestService', () => {
},
};
mockApiClient.getLeagueProtest.mockResolvedValue(mockDto);
mockApiClient.getLeagueProtest.mockResolvedValue(mockDto as any);
const result = await service.getProtestById(leagueId, protestId);
@@ -135,7 +135,7 @@ describe('ProtestService', () => {
mockApiClient.applyPenalty.mockResolvedValue(undefined);
await service.applyPenalty(input);
await service.applyPenalty(input as any);
expect(mockApiClient.applyPenalty).toHaveBeenCalledWith(input);
});
@@ -151,7 +151,7 @@ describe('ProtestService', () => {
mockApiClient.requestDefense.mockResolvedValue(undefined);
await service.requestDefense(input);
await service.requestDefense(input as any);
expect(mockApiClient.requestDefense).toHaveBeenCalledWith(input);
});
@@ -170,7 +170,10 @@ describe('ProtestService', () => {
await service.reviewProtest(input);
expect(mockApiClient.reviewProtest).toHaveBeenCalledWith(input);
expect(mockApiClient.reviewProtest).toHaveBeenCalledWith({
...input,
enum: 'uphold',
});
});
});
@@ -185,7 +188,7 @@ describe('ProtestService', () => {
driverMap: {},
};
mockApiClient.getRaceProtests.mockResolvedValue(mockDto);
mockApiClient.getRaceProtests.mockResolvedValue(mockDto as any);
const result = await service.findByRaceId(raceId);

View File

@@ -49,12 +49,15 @@ export class ProtestService {
if (!protest) return null;
const race = Object.values(dto.racesById)[0];
if (!race) return null;
// Cast to the correct type for indexing
const driversById = dto.driversById as unknown as Record<string, DriverDTO>;
const protestingDriver = driversById[protest.protestingDriverId];
const accusedDriver = driversById[protest.accusedDriverId];
if (!protestingDriver || !accusedDriver) return null;
return {
protest: new ProtestViewModel(protest),
race: new RaceViewModel(race),
@@ -81,13 +84,18 @@ export class ProtestService {
* Review protest
*/
async reviewProtest(input: { protestId: string; stewardId: string; decision: string; decisionNotes: string }): Promise<void> {
const normalizedDecision = input.decision.toLowerCase();
const enumValue: ReviewProtestCommandDTO['enum'] =
normalizedDecision === 'uphold' || normalizedDecision === 'upheld' ? 'uphold' : 'dismiss';
const command: ReviewProtestCommandDTO = {
protestId: input.protestId,
stewardId: input.stewardId,
enum: input.decision === 'uphold' ? 'uphold' : 'dismiss',
enum: enumValue,
decision: input.decision,
decisionNotes: input.decisionNotes
decisionNotes: input.decisionNotes,
};
await this.apiClient.reviewProtest(command);
}

View File

@@ -23,8 +23,12 @@ export class SponsorshipService {
// Pricing shape isn't finalized in the API yet.
// Keep a predictable, UI-friendly structure until a dedicated DTO is introduced.
const dto = await this.apiClient.getPricing();
const main = dto.pricing.find((p) => p.entityType === 'main')?.price ?? 0;
const secondary = dto.pricing.find((p) => p.entityType === 'secondary')?.price ?? 0;
const main =
dto.pricing.find((p) => p.entityType === 'league' || p.entityType === 'main')?.price ?? 0;
const secondary =
dto.pricing.find((p) => p.entityType === 'driver' || p.entityType === 'secondary')?.price ?? 0;
return new SponsorshipPricingViewModel({
mainSlotPrice: main,
secondarySlotPrice: secondary,

View File

@@ -57,11 +57,11 @@ export class DashboardRaceSummaryViewModel {
}
get leagueId(): string {
return this.dto.leagueId;
return (this.dto as any).leagueId ?? '';
}
get leagueName(): string {
return this.dto.leagueName;
return (this.dto as any).leagueName ?? '';
}
get track(): string {
@@ -166,38 +166,52 @@ export class DashboardOverviewViewModel {
get currentDriver(): DashboardDriverSummaryViewModel {
// DTO uses optional property; enforce a consistent object for the UI
return new DashboardDriverSummaryViewModel(this.dto.currentDriver ?? {
id: '',
name: '',
country: '',
avatarUrl: '',
totalRaces: 0,
wins: 0,
podiums: 0,
});
return new DashboardDriverSummaryViewModel(
(this.dto as any).currentDriver ?? {
id: '',
name: '',
country: '',
avatarUrl: '',
totalRaces: 0,
wins: 0,
podiums: 0,
},
);
}
get nextRace(): DashboardRaceSummaryViewModel | null {
return this.dto.nextRace ? new DashboardRaceSummaryViewModel(this.dto.nextRace) : null;
const nextRace = (this.dto as any).nextRace;
return nextRace ? new DashboardRaceSummaryViewModel(nextRace) : null;
}
get upcomingRaces(): DashboardRaceSummaryViewModel[] {
return this.dto.upcomingRaces.map((r) => new DashboardRaceSummaryViewModel(r));
const upcomingRaces = (this.dto as any).upcomingRaces ?? [];
return upcomingRaces.map((r: any) => new DashboardRaceSummaryViewModel(r));
}
get leagueStandings(): DashboardLeagueStandingSummaryViewModel[] {
return this.dto.leagueStandingsSummaries.map((s) => new DashboardLeagueStandingSummaryViewModel(s));
const leagueStandings = (this.dto as any).leagueStandingsSummaries ?? (this.dto as any).leagueStandings ?? [];
return leagueStandings.map((s: any) => new DashboardLeagueStandingSummaryViewModel(s));
}
get feedItems(): DashboardFeedItemSummaryViewModel[] {
return this.dto.feedSummary.items.map((i) => new DashboardFeedItemSummaryViewModel(i));
const feedItems = (this.dto as any).feedSummary?.items ?? (this.dto as any).feedItems ?? [];
return feedItems.map((i: any) => new DashboardFeedItemSummaryViewModel(i));
}
get friends(): DashboardFriendSummaryViewModel[] {
return this.dto.friends.map((f) => new DashboardFriendSummaryViewModel(f));
const friends = (this.dto as any).friends ?? [];
return friends.map((f: any) => new DashboardFriendSummaryViewModel(f));
}
get activeLeaguesCount(): number {
return this.dto.activeLeaguesCount;
return (this.dto as any).activeLeaguesCount ?? 0;
}
}
export {
DashboardDriverSummaryViewModel as DriverViewModel,
DashboardRaceSummaryViewModel as RaceViewModel,
DashboardLeagueStandingSummaryViewModel as LeagueStandingViewModel,
DashboardFriendSummaryViewModel as FriendViewModel,
};

View File

@@ -108,30 +108,40 @@ export class LeagueDetailPageViewModel {
this.ownerId = league.ownerId;
this.createdAt = league.createdAt;
this.settings = {
maxDrivers: league.settings?.maxDrivers,
maxDrivers: league.settings?.maxDrivers ?? (league as any).maxDrivers,
};
this.socialLinks = {
discordUrl: league.discordUrl,
youtubeUrl: league.youtubeUrl,
websiteUrl: league.websiteUrl,
discordUrl: league.discordUrl ?? (league as any).socialLinks?.discordUrl,
youtubeUrl: league.youtubeUrl ?? (league as any).socialLinks?.youtubeUrl,
websiteUrl: league.websiteUrl ?? (league as any).socialLinks?.websiteUrl,
};
this.owner = owner;
this.scoringConfig = scoringConfig;
this.drivers = drivers;
this.memberships = memberships.members.map(m => ({
const membershipDtos = ((memberships as any).members ?? (memberships as any).memberships ?? []) as Array<{
driverId: string;
role: string;
status?: 'active' | 'inactive';
joinedAt: string;
}>;
this.memberships = membershipDtos.map((m) => ({
driverId: m.driverId,
role: m.role as 'owner' | 'admin' | 'steward' | 'member',
status: 'active',
status: m.status ?? 'active',
joinedAt: m.joinedAt,
}));
this.allRaces = allRaces;
this.runningRaces = allRaces.filter(r => r.status === 'running');
const leagueStatsAny = leagueStats as any;
// Calculate SOF from available data
this.averageSOF = leagueStats.averageRating ?? null;
this.completedRacesCount = leagueStats.totalRaces ?? 0;
this.averageSOF = leagueStatsAny.averageSOF ?? leagueStats.averageRating ?? null;
this.completedRacesCount = leagueStatsAny.completedRaces ?? leagueStats.totalRaces ?? 0;
this.sponsors = sponsors;

View File

@@ -4,7 +4,7 @@ import { DriverViewModel } from './DriverViewModel';
export class LeagueMemberViewModel {
driverId: string;
private currentUserId: string;
currentUserId: string;
constructor(dto: LeagueMemberDTO, currentUserId: string) {
this.driverId = dto.driverId;

View File

@@ -9,8 +9,9 @@ import type { LeagueMemberDTO } from '../types/generated/LeagueMemberDTO';
export class LeagueMembershipsViewModel {
memberships: LeagueMemberViewModel[];
constructor(dto: { members: LeagueMemberDTO[] }, currentUserId: string) {
this.memberships = dto.members.map(membership => new LeagueMemberViewModel(membership, currentUserId));
constructor(dto: { members?: LeagueMemberDTO[]; memberships?: LeagueMemberDTO[] }, currentUserId: string) {
const memberships = dto.members ?? dto.memberships ?? [];
this.memberships = memberships.map((membership) => new LeagueMemberViewModel(membership, currentUserId));
}
/** UI-specific: Number of members */

View File

@@ -26,7 +26,9 @@ export class MediaViewModel {
get formattedSize(): string {
if (!this.size) return 'Unknown';
const kb = this.size / 1024;
if (kb < 1024) return `${kb.toFixed(2)} KB`;
const mb = kb / 1024;
return `${mb.toFixed(2)} MB`;
}

View File

@@ -32,7 +32,7 @@ export class RaceDetailViewModel {
/** UI-specific: Whether user is registered */
get isRegistered(): boolean {
return this.registration.isUserRegistered;
return (this.registration as any).isUserRegistered ?? (this.registration as any).isRegistered ?? false;
}
/** UI-specific: Whether user can register */

View File

@@ -40,6 +40,10 @@ export class RaceListItemViewModel {
this.isPast = dto.isPast;
}
get title(): string {
return `${this.track} - ${this.car}`;
}
/** UI-specific: Formatted scheduled time */
get formattedScheduledTime(): string {
return new Date(this.scheduledAt).toLocaleString();

View File

@@ -16,12 +16,26 @@ export class RacesPageViewModel {
constructor(dto: RacesPageDTO) {
this.races = dto.races.map((r) => {
const status = (r as any).status as string | undefined;
const isUpcoming =
(r as any).isUpcoming ??
(status === 'upcoming' || status === 'scheduled');
const isLive =
(r as any).isLive ??
(status === 'live' || status === 'running');
const isPast =
(r as any).isPast ??
(status === 'completed' || status === 'finished' || status === 'cancelled');
const normalized: RaceListItemDTO = {
...r,
...(r as any),
strengthOfField: (r as any).strengthOfField ?? null,
isUpcoming: r.isUpcoming,
isLive: r.isLive,
isPast: r.isPast,
isUpcoming: Boolean(isUpcoming),
isLive: Boolean(isLive),
isPast: Boolean(isPast),
};
return new RaceListItemViewModel(normalized);

View File

@@ -11,11 +11,33 @@ export class RequestAvatarGenerationViewModel {
avatarUrls?: string[];
errorMessage?: string;
constructor(dto: RequestAvatarGenerationOutputDTO) {
constructor(
dto:
| RequestAvatarGenerationOutputDTO
| {
success: boolean;
requestId?: string;
avatarUrls?: string[];
errorMessage?: string;
avatarUrl?: string;
error?: string;
},
) {
this.success = dto.success;
if (dto.requestId !== undefined) this.requestId = dto.requestId;
if (dto.avatarUrls !== undefined) this.avatarUrls = dto.avatarUrls;
if (dto.errorMessage !== undefined) this.errorMessage = dto.errorMessage;
if ('requestId' in dto && dto.requestId !== undefined) this.requestId = dto.requestId;
if ('avatarUrls' in dto && dto.avatarUrls !== undefined) {
this.avatarUrls = dto.avatarUrls;
} else if ('avatarUrl' in dto && dto.avatarUrl !== undefined) {
this.avatarUrls = [dto.avatarUrl];
}
if ('errorMessage' in dto && dto.errorMessage !== undefined) {
this.errorMessage = dto.errorMessage;
} else if ('error' in dto && dto.error !== undefined) {
this.errorMessage = dto.error;
}
}
/** UI-specific: Whether generation was successful */

View File

@@ -9,8 +9,8 @@ interface SponsorDTO {
export class SponsorViewModel {
id: string;
name: string;
logoUrl?: string;
websiteUrl?: string;
declare logoUrl?: string;
declare websiteUrl?: string;
constructor(dto: SponsorDTO) {
this.id = dto.id;

View File

@@ -23,10 +23,16 @@ export class TeamDetailsViewModel {
this.ownerId = dto.team.ownerId;
this.leagues = dto.team.leagues;
this.createdAt = dto.team.createdAt;
// These properties don't exist in the current TeamDTO but may be added later
this.specialization = undefined;
this.region = undefined;
this.languages = undefined;
const teamExtras = dto.team as typeof dto.team & {
specialization?: string;
region?: string;
languages?: string[];
};
this.specialization = teamExtras.specialization ?? undefined;
this.region = teamExtras.region ?? undefined;
this.languages = teamExtras.languages ?? undefined;
this.membership = dto.membership ? {
role: dto.membership.role,
joinedAt: dto.membership.joinedAt,

View File

@@ -0,0 +1,95 @@
export * from './ActivityItemViewModel';
export * from './AnalyticsDashboardViewModel';
export * from './AnalyticsMetricsViewModel';
export * from './AvailableLeaguesViewModel';
export * from './AvatarGenerationViewModel';
export * from './AvatarViewModel';
export * from './BillingViewModel';
export * from './CompleteOnboardingViewModel';
export * from './CreateLeagueViewModel';
export * from './CreateTeamViewModel';
export {
DashboardOverviewViewModel,
DashboardDriverSummaryViewModel,
DashboardRaceSummaryViewModel,
DashboardLeagueStandingSummaryViewModel,
DashboardFeedItemSummaryViewModel,
DashboardFriendSummaryViewModel,
} from './DashboardOverviewViewModel';
export * from './DeleteMediaViewModel';
export * from './DriverLeaderboardItemViewModel';
export * from './DriverLeaderboardViewModel';
export * from './DriverProfileViewModel';
export * from './DriverRegistrationStatusViewModel';
export * from './DriverSummaryViewModel';
export * from './DriverTeamViewModel';
export * from './DriverViewModel';
export * from './EmailSignupViewModel';
export * from './HomeDiscoveryViewModel';
export * from './ImportRaceResultsSummaryViewModel';
export * from './LeagueAdminViewModel';
export * from './LeagueCardViewModel';
export * from './LeagueDetailPageViewModel';
export { LeagueDetailViewModel, LeagueViewModel } from './LeagueDetailViewModel';
export * from './LeagueJoinRequestViewModel';
export * from './LeagueMembershipsViewModel';
export * from './LeagueMemberViewModel';
export * from './LeaguePageDetailViewModel';
export * from './LeagueScheduleViewModel';
export * from './LeagueScoringChampionshipViewModel';
export * from './LeagueScoringConfigViewModel';
export * from './LeagueScoringPresetsViewModel';
export * from './LeagueScoringPresetViewModel';
export * from './LeagueSettingsViewModel';
export * from './LeagueStandingsViewModel';
export * from './LeagueStatsViewModel';
export * from './LeagueStewardingViewModel';
export * from './LeagueSummaryViewModel';
export * from './LeagueWalletViewModel';
export * from './MediaViewModel';
export * from './MembershipFeeViewModel';
export * from './PaymentViewModel';
export * from './PrizeViewModel';
export * from './ProfileOverviewViewModel';
export * from './ProtestDriverViewModel';
export * from './ProtestViewModel';
export * from './RaceDetailEntryViewModel';
export * from './RaceDetailUserResultViewModel';
export * from './RaceDetailViewModel';
export * from './RaceListItemViewModel';
export * from './RaceResultsDetailViewModel';
export * from './RaceResultViewModel';
export * from './RacesPageViewModel';
export * from './RaceStatsViewModel';
export * from './RaceStewardingViewModel';
export * from './RaceViewModel';
export * from './RaceWithSOFViewModel';
export * from './RecordEngagementInputViewModel';
export * from './RecordEngagementOutputViewModel';
export * from './RecordPageViewInputViewModel';
export * from './RecordPageViewOutputViewModel';
export * from './RemoveMemberViewModel';
export * from './RenewalAlertViewModel';
export * from './RequestAvatarGenerationViewModel';
export * from './SessionViewModel';
export * from './SponsorDashboardViewModel';
export * from './SponsorSettingsViewModel';
export * from './SponsorshipDetailViewModel';
export * from './SponsorshipPricingViewModel';
export * from './SponsorshipRequestViewModel';
export * from './SponsorshipViewModel';
export * from './SponsorSponsorshipsViewModel';
export * from './SponsorViewModel';
export * from './StandingEntryViewModel';
export * from './TeamCardViewModel';
export * from './TeamDetailsViewModel';
export * from './TeamJoinRequestViewModel';
export * from './TeamMemberViewModel';
export * from './TeamSummaryViewModel';
export * from './UpcomingRaceCardViewModel';
export * from './UpdateAvatarViewModel';
export * from './UpdateTeamViewModel';
export * from './UploadMediaViewModel';
export * from './UserProfileViewModel';
export * from './WalletTransactionViewModel';
export * from './WalletViewModel';