21 lines
787 B
TypeScript
21 lines
787 B
TypeScript
import type { IRankingService, DriverRanking } from '@gridpilot/racing/domain/services/IRankingService';
|
|
import type { Logger } from '@gridpilot/shared/logging/Logger';
|
|
|
|
export class InMemoryRankingService implements IRankingService {
|
|
constructor(private readonly logger: Logger) {
|
|
this.logger.info('InMemoryRankingService initialized.');
|
|
}
|
|
|
|
getAllDriverRankings(): DriverRanking[] {
|
|
this.logger.debug('[InMemoryRankingService] Getting all driver rankings.');
|
|
|
|
// Mock data for demonstration purposes
|
|
const mockRankings: DriverRanking[] = [
|
|
{ driverId: 'driver-1', rating: 2500, overallRank: 1 },
|
|
{ driverId: 'driver-2', rating: 2400, overallRank: 2 },
|
|
{ driverId: 'driver-3', rating: 2300, overallRank: 3 },
|
|
];
|
|
return mockRankings;
|
|
}
|
|
}
|