Phase 1 fixes

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-05 04:52:16 +00:00
parent ff44827b35
commit de0e42cca8
22 changed files with 22 additions and 221 deletions

View File

@@ -372,14 +372,6 @@ const AutomationPage: React.FC = () => {
}
};
if (loading) {
return (
<div className="flex items-center justify-center min-h-[60vh]">
<div className="text-lg text-gray-600 dark:text-gray-400">Loading automation...</div>
</div>
);
}
if (!activeSite) {
return (
<div className="flex items-center justify-center min-h-[60vh]">

View File

@@ -184,13 +184,7 @@ export default function OptimizerContentSelector() {
{/* Filters */}
<ContentFilter onFilterChange={setFilters} />
{loading ? (
<div className="text-center py-12">
<div className="inline-block animate-spin rounded-full h-8 w-8 border-b-2 border-brand-500"></div>
<p className="mt-2 text-gray-600 dark:text-gray-400">Loading content...</p>
</div>
) : (
<div className="bg-white dark:bg-gray-800 rounded-lg shadow overflow-hidden">
<div className="bg-white dark:bg-gray-800 rounded-lg shadow overflow-hidden">
<div className="overflow-x-auto">
<table className="min-w-full divide-y divide-gray-200 dark:divide-gray-700">
<thead className="bg-gray-50 dark:bg-gray-900">
@@ -300,7 +294,6 @@ export default function OptimizerContentSelector() {
</div>
)}
</div>
)}
{/* Module footer placeholder - module on hold */}
</div>

View File

@@ -119,17 +119,6 @@ export default function ClusterDetail() {
setActiveTab(tab);
};
if (loading) {
return (
<>
<PageMeta title="Cluster Details" description="Loading cluster information" />
<div className="flex items-center justify-center h-64">
<div className="text-gray-500">Loading cluster...</div>
</div>
</>
);
}
if (!cluster) {
return (
<>

View File

@@ -392,17 +392,6 @@ export default function ContentCalendar() {
);
}
if (loading) {
return (
<>
<PageMeta title="Content Calendar" description="View and manage scheduled content" />
<div className="flex items-center justify-center h-64">
<div className="text-gray-500">Loading calendar...</div>
</div>
</>
);
}
return (
<>
<PageMeta title="Content Calendar" description="View and manage scheduled content" />

View File

@@ -64,18 +64,6 @@ const CreditsAndBilling: React.FC = () => {
).join(' ');
};
if (loading) {
return (
<>
<PageMeta title="Usage & Billing" description="View your usage and billing" />
<div className="text-center py-12">
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-primary-600 mx-auto"></div>
<p className="mt-4 text-gray-600 dark:text-gray-400">Loading billing data...</p>
</div>
</>
);
}
return (
<>
<PageMeta title="Usage & Billing" description="View your usage and billing" />

View File

@@ -375,17 +375,6 @@ export default function Sites() {
return industry?.sectors || [];
};
if (loading) {
return (
<div className="flex h-screen items-center justify-center">
<div className="text-center">
<div className="mb-4 h-8 w-8 animate-spin rounded-full border-4 border-gray-300 border-t-brand-600 mx-auto"></div>
<p className="text-gray-600 dark:text-gray-400">Loading sites...</p>
</div>
</div>
);
}
return (
<>
<PageMeta title="Your Websites" description="Manage all your websites here - Add new sites, configure settings, and track content for each one" />

View File

@@ -215,11 +215,7 @@ export default function SiteContentManager() {
</Card>
{/* Content List */}
{loading ? (
<Card className="p-12 text-center">
<div className="text-gray-500">Loading content...</div>
</Card>
) : filteredContent.length === 0 ? (
{filteredContent.length === 0 ? (
<Card className="p-12 text-center">
<p className="text-gray-600 dark:text-gray-400 mb-4">
No content found

View File

@@ -229,17 +229,6 @@ export default function SiteDashboard() {
}
};
if (loading) {
return (
<>
<PageMeta title="Site Dashboard" />
<div className="flex items-center justify-center h-64">
<div className="text-gray-500">Loading site dashboard...</div>
</div>
</>
);
}
if (!site) {
return (
<>

View File

@@ -477,17 +477,6 @@ export default function SiteList() {
const hasActiveFilters = searchTerm || siteTypeFilter || hostingTypeFilter || statusFilter || integrationFilter;
if (loading) {
return (
<>
<PageMeta title="Site List" />
<div className="flex items-center justify-center h-64">
<div className="text-gray-500">Loading sites...</div>
</div>
</>
);
}
return (
<>
<PageMeta title="Your Websites - IGNY8" />

View File

@@ -264,17 +264,6 @@ export default function PageManager() {
}
};
if (loading) {
return (
<>
<PageMeta title="Page Manager" />
<div className="flex items-center justify-center h-64">
<div className="text-gray-500">Loading pages...</div>
</div>
</>
);
}
return (
<>
<PageMeta title="Page Manager - IGNY8" />

View File

@@ -216,17 +216,6 @@ export default function PostEditor() {
{ value: 'published', label: 'Published' },
];
if (loading) {
return (
<>
<PageMeta title="Post Editor" />
<div className="flex items-center justify-center h-64">
<div className="text-gray-500">Loading post...</div>
</div>
</>
);
}
return (
<>
<PageMeta title={content.id ? 'Edit Post' : 'New Post'} />

View File

@@ -206,17 +206,6 @@ export default function PublishingQueue() {
});
};
if (loading) {
return (
<>
<PageMeta title="Publishing Queue" description="View and manage scheduled content" />
<div className="flex items-center justify-center h-64">
<div className="text-gray-500">Loading queue...</div>
</div>
</>
);
}
return (
<>
<PageMeta title="Publishing Queue" description="View and manage scheduled content" />

View File

@@ -667,17 +667,6 @@ export default function SiteSettings() {
{ value: 'multi', label: 'Multi-Destination' },
];
if (loading) {
return (
<>
<PageMeta title="Site Settings" />
<div className="flex items-center justify-center h-64">
<div className="text-gray-500">Loading site settings...</div>
</div>
</>
);
}
return (
<>
<PageMeta title="Site Settings - IGNY8" />

View File

@@ -116,17 +116,6 @@ export default function SyncDashboard() {
}
};
if (loading) {
return (
<>
<PageMeta title="Sync Dashboard" />
<div className="flex items-center justify-center h-64">
<div className="text-gray-500">Loading sync data...</div>
</div>
</>
);
}
if (!syncStatus) {
return (
<>

View File

@@ -184,20 +184,6 @@ export default function Prompts() {
});
};
if (loading) {
return (
<>
<PageMeta title="Prompts - IGNY8" description="AI prompts management" />
<div className="flex items-center justify-center min-h-screen">
<div className="text-center">
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-primary-500 mx-auto"></div>
<p className="mt-4 text-gray-600 dark:text-gray-400">Loading prompts...</p>
</div>
</div>
</>
);
}
return (
<>
<PageMeta title="Prompt Library - IGNY8" description="Manage your AI writing prompts" />

View File

@@ -832,7 +832,6 @@ export default function AccountSettingsPage() {
</div>
</div>
</Modal>
</div>
</>
);
}

View File

@@ -311,20 +311,6 @@ export default function ContentSettingsPage() {
images: 'Image Settings',
};
if (loading) {
return (
<div className="p-6">
<PageMeta title="Content Settings" description="Configure your content generation settings" />
<div className="flex items-center justify-center h-64">
<div className="flex flex-col items-center gap-3">
<Loader2Icon className="w-8 h-8 animate-spin text-[var(--color-brand-500)]" />
<div className="text-gray-500 dark:text-gray-400">Loading settings...</div>
</div>
</div>
</div>
);
}
return (
<div className="p-6">
<PageMeta title="Content Settings" description="Configure your content generation settings" />

View File

@@ -145,23 +145,6 @@ export default function PurchaseCreditsPage() {
}
};
if (loading) {
return (
<>
<PageMeta title="Purchase Credits" description="Top up your account with credit packages" />
<PageHeader
title="Purchase Credits"
badge={{ icon: <ZapIcon className="w-4 h-4" />, color: 'blue' }}
/>
<div className="p-6">
<div className="flex items-center justify-center h-64">
<Loader2Icon className="w-8 h-8 animate-spin text-[var(--color-brand-500)]" />
</div>
</div>
</>
);
}
if (showManualPaymentForm && invoiceData) {
const selectedMethod = paymentMethods.find((m) => m.type === selectedPaymentMethod);

View File

@@ -56,26 +56,6 @@ export default function UsageAnalyticsPage() {
}
};
if (loading) {
return (
<>
<PageMeta title="Usage & Analytics" description="Monitor your plan limits and usage" />
<PageHeader
title="Usage & Analytics"
badge={{ icon: <TrendingUpIcon className="w-4 h-4" />, color: 'blue' }}
/>
<div className="p-6">
<div className="flex items-center justify-center h-64">
<div className="flex flex-col items-center gap-3">
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-brand-500"></div>
<div className="text-gray-500 dark:text-gray-400">Loading usage data...</div>
</div>
</div>
</div>
</>
);
}
const tabTitles: Record<TabType, string> = {
limits: 'Limits & Usage',
activity: 'Credit History',
@@ -280,7 +260,6 @@ export default function UsageAnalyticsPage() {
</div>
)}
</div>
</div>
</>
);
}