37 lines
972 B
TypeScript
37 lines
972 B
TypeScript
import { Result } from '@/lib/contracts/Result';
|
|
|
|
export interface ActionItem {
|
|
id: string;
|
|
type: 'USER_UPDATE' | 'ONBOARDING' | 'AVATAR_GEN' | 'PROFILE_UPDATE' | 'LEAGUE_SCHEDULE' | 'SPONSORSHIP';
|
|
status: 'PENDING' | 'COMPLETED' | 'FAILED' | 'IN_PROGRESS';
|
|
timestamp: string;
|
|
initiator: string;
|
|
details: string;
|
|
}
|
|
|
|
export class ActionsPageQuery {
|
|
async execute(): Promise<Result<{ actions: ActionItem[] }, string>> {
|
|
// Mock data for now
|
|
return Result.ok({
|
|
actions: [
|
|
{
|
|
id: '1',
|
|
type: 'USER_UPDATE',
|
|
status: 'COMPLETED',
|
|
timestamp: new Date().toISOString(),
|
|
initiator: 'Admin',
|
|
details: 'Updated status for user 123'
|
|
},
|
|
{
|
|
id: '2',
|
|
type: 'AVATAR_GEN',
|
|
status: 'IN_PROGRESS',
|
|
timestamp: new Date().toISOString(),
|
|
initiator: 'User 456',
|
|
details: 'Generating AI avatars'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
}
|