49 lines
1.7 KiB
TypeScript
49 lines
1.7 KiB
TypeScript
import { Result } from '@/lib/contracts/Result';
|
|
import { LeagueService } from '@/lib/services/leagues/LeagueService';
|
|
import { LeaguesApiClient } from '@/lib/api/leagues/LeaguesApiClient';
|
|
import { ConsoleErrorReporter } from '@/lib/infrastructure/logging/ConsoleErrorReporter';
|
|
import { ConsoleLogger } from '@/lib/infrastructure/logging/ConsoleLogger';
|
|
|
|
/**
|
|
* WalletMutation
|
|
*
|
|
* Framework-agnostic mutation for wallet operations.
|
|
* Can be called from Server Actions or other contexts.
|
|
*/
|
|
export class WalletMutation {
|
|
private service: LeagueService;
|
|
|
|
constructor() {
|
|
// Manual wiring for serverless
|
|
const baseUrl = process.env.NEXT_PUBLIC_API_URL || '';
|
|
const errorReporter = new ConsoleErrorReporter();
|
|
const logger = new ConsoleLogger();
|
|
const apiClient = new LeaguesApiClient(baseUrl, errorReporter, logger);
|
|
|
|
this.service = new LeagueService();
|
|
}
|
|
|
|
async withdraw(leagueId: string, amount: number): Promise<Result<void, string>> {
|
|
try {
|
|
// TODO: Implement when wallet withdrawal API is available
|
|
// For now, return success
|
|
console.log('withdraw called with:', { leagueId, amount });
|
|
return Result.ok(undefined);
|
|
} catch (error) {
|
|
console.error('withdraw failed:', error);
|
|
return Result.err('Failed to withdraw funds');
|
|
}
|
|
}
|
|
|
|
async exportTransactions(leagueId: string): Promise<Result<void, string>> {
|
|
try {
|
|
// TODO: Implement when export API is available
|
|
// For now, return success
|
|
console.log('exportTransactions called with:', { leagueId });
|
|
return Result.ok(undefined);
|
|
} catch (error) {
|
|
console.error('exportTransactions failed:', error);
|
|
return Result.err('Failed to export transactions');
|
|
}
|
|
}
|
|
} |