website refactor
This commit is contained in:
36
apps/website/lib/queries/ActionsPageQuery.ts
Normal file
36
apps/website/lib/queries/ActionsPageQuery.ts
Normal file
@@ -0,0 +1,36 @@
|
||||
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'
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user