43 lines
1.7 KiB
TypeScript
43 lines
1.7 KiB
TypeScript
import React from 'react';
|
|
import { SIDEBAR_SECTION_CONFIG_MAP, SIDEBAR_SECTION_DESCRIPTIONS } from '@/constants/sidebar';
|
|
import type { SidebarSection } from '@/constants/sidebar';
|
|
|
|
interface SectionPlaceholderProps {
|
|
sectionId: SidebarSection;
|
|
variant: 'sidebar' | 'page';
|
|
}
|
|
|
|
export const SectionPlaceholder: React.FC<SectionPlaceholderProps> = ({ sectionId, variant }) => {
|
|
const config = SIDEBAR_SECTION_CONFIG_MAP[sectionId];
|
|
const Icon = config.icon;
|
|
|
|
if (variant === 'sidebar') {
|
|
return (
|
|
<div className="flex h-full flex-col items-center justify-center gap-3 px-6 text-center">
|
|
<div className="rounded-full bg-accent/40 p-3 text-muted-foreground">
|
|
<Icon className="h-5 w-5" />
|
|
</div>
|
|
<h3 className="typography-ui-label font-semibold text-foreground">{config.label}</h3>
|
|
<p className="typography-meta max-w-xs text-muted-foreground">
|
|
{SIDEBAR_SECTION_DESCRIPTIONS[sectionId]}
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="flex h-full flex-col items-center justify-center gap-4 px-6 text-center">
|
|
<div className="rounded-full bg-accent/40 p-4 text-muted-foreground">
|
|
<Icon className="h-8 w-8" />
|
|
</div>
|
|
<div className="flex flex-col gap-2">
|
|
<h2 className="typography-h2 font-semibold text-foreground">{config.label}</h2>
|
|
<p className="typography-body max-w-md text-muted-foreground">
|
|
{SIDEBAR_SECTION_DESCRIPTIONS[sectionId]}
|
|
</p>
|
|
</div>
|
|
<p className="typography-meta text-muted-foreground/60">Coming soon...</p>
|
|
</div>
|
|
);
|
|
};
|