final plolish phase 2

This commit is contained in:
IGNY8 VPS (Salman)
2025-12-27 15:25:05 +00:00
parent 99982eb4fb
commit b9e4b6f7e2
27 changed files with 2229 additions and 280 deletions

View File

@@ -460,37 +460,36 @@ export const createTasksPageConfig = (
value: 0,
accentColor: 'blue' as const,
calculate: (data) => data.totalCount || 0,
tooltip: 'Total content generation tasks. Tasks process ideas into written content automatically.',
tooltip: 'Total content generation tasks. Select tasks and click "Generate Content" to write articles.',
},
{
label: 'In Queue',
value: 0,
accentColor: 'amber' as const,
calculate: (data) => data.tasks.filter((t: Task) => t.status === 'queued').length,
tooltip: 'Tasks queued for processing. These will be picked up by the content generation system.',
tooltip: 'Tasks waiting for content generation. Select and click "Generate Content" to write articles.',
},
{
label: 'Processing',
value: 0,
accentColor: 'blue' as const,
calculate: (data) => data.tasks.filter((t: Task) => t.status === 'in_progress').length,
tooltip: 'Tasks currently being processed. Content is being generated by AI right now.',
tooltip: 'Tasks being written by AI. Content will appear in Drafts when complete (~2-3 min each).',
},
{
label: 'Completed',
value: 0,
accentColor: 'green' as const,
calculate: (data) => data.tasks.filter((t: Task) => t.status === 'completed').length,
tooltip: 'Successfully completed tasks. Generated content is ready for review and publishing.',
tooltip: 'Tasks with generated content. Review articles in Writer → Content before publishing.',
},
{
label: 'Failed',
value: 0,
accentColor: 'red' as const,
calculate: (data) => data.tasks.filter((t: Task) => t.status === 'failed').length,
tooltip: 'Failed tasks that need attention. Review error logs and retry or modify the task.',
tooltip: 'Failed tasks needing attention. Click to view error details and retry generation.',
},
],
};
};