feat: Extract type definitions

This commit is contained in:
gpt-engineer-app[bot]
2025-10-12 20:33:10 +00:00
parent 442b83d815
commit 25c63a7b4c
2 changed files with 150 additions and 52 deletions

135
src/types/moderation.ts Normal file
View File

@@ -0,0 +1,135 @@
/**
* Moderation Queue Type Definitions
*
* This file contains all TypeScript types and interfaces used by the moderation queue system.
* Extracted from ModerationQueue.tsx to improve maintainability and reusability.
*/
/**
* Represents a single item in the moderation queue.
* Can be either a review or a content submission.
*/
export interface ModerationItem {
/** Unique identifier for the item */
id: string;
/** Type of moderation item */
type: 'review' | 'content_submission';
/** Raw content data (structure varies by type) */
content: any;
/** Timestamp when the item was created */
created_at: string;
/** Timestamp when the item was last updated */
updated_at?: string;
/** ID of the user who submitted this item */
user_id: string;
/** Current status of the item */
status: string;
/** Type of submission (e.g., 'park', 'ride', 'review') */
submission_type?: string;
/** Profile information of the submitting user */
user_profile?: {
username: string;
display_name?: string;
avatar_url?: string;
};
/** Display name of the entity being modified */
entity_name?: string;
/** Display name of the park (for ride submissions) */
park_name?: string;
/** Timestamp when the item was reviewed */
reviewed_at?: string;
/** ID of the moderator who reviewed this item */
reviewed_by?: string;
/** Notes left by the reviewing moderator */
reviewer_notes?: string;
/** Profile information of the reviewing moderator */
reviewer_profile?: {
username: string;
display_name?: string;
avatar_url?: string;
};
/** Whether this submission has been escalated for senior review */
escalated?: boolean;
/** ID of the moderator this item is assigned to */
assigned_to?: string;
/** Timestamp until which this item is locked by a moderator */
locked_until?: string;
/** Internal flag indicating item is being removed (optimistic update) */
_removing?: boolean;
/** Sub-items for composite submissions */
submission_items?: Array<{
id: string;
item_type: string;
item_data: any;
status: string;
}>;
}
/**
* Filter options for entity types in the moderation queue
*/
export type EntityFilter = 'all' | 'reviews' | 'submissions' | 'photos';
/**
* Filter options for submission status in the moderation queue
*/
export type StatusFilter = 'all' | 'pending' | 'partially_approved' | 'flagged' | 'approved' | 'rejected';
/**
* Available tabs in the moderation interface
*/
export type QueueTab = 'mainQueue' | 'archive';
/**
* Fields that can be used for sorting the moderation queue
*/
export type SortField = 'created_at' | 'username' | 'submission_type' | 'status' | 'escalated';
/**
* Direction for sorting (ascending or descending)
*/
export type SortDirection = 'asc' | 'desc';
/**
* Configuration for sorting the moderation queue
*/
export interface SortConfig {
/** Field to sort by */
field: SortField;
/** Direction to sort */
direction: SortDirection;
}
/**
* Loading states for the moderation queue
*/
export type LoadingState = 'initial' | 'loading' | 'refreshing' | 'ready';
/**
* Ref interface for the ModerationQueue component
* Allows parent components to trigger actions imperatively
*/
export interface ModerationQueueRef {
/** Manually refresh the queue data */
refresh: () => void;
}