Pulse/frontend-modern/src/components/Settings/SettingsSectionNav.tsx
rcourtman de403f39be feat: add Docker icon to settings navigation
Add Docker tab to the settings section navigation using the same DockerIcon component used in the main navigation. The icon is rendered at w-4 h-4 to match the visual weight of the lucide icons at size 16.

Now the settings navigation shows: Virtual Environment, Backup Server, Mail Gateway, and Docker.
2025-10-24 11:35:49 +00:00

78 lines
2.4 KiB
TypeScript

import type { Component } from 'solid-js';
import { For } from 'solid-js';
import Server from 'lucide-solid/icons/server';
import HardDrive from 'lucide-solid/icons/hard-drive';
import Mail from 'lucide-solid/icons/mail';
import { DockerIcon } from '@/components/icons/DockerIcon';
type SettingsSection = 'pve' | 'pbs' | 'pmg' | 'docker' | 'host' | 'podman' | 'kubernetes';
interface SettingsSectionNavProps {
current: SettingsSection;
onSelect: (section: SettingsSection) => void;
class?: string;
}
const allSections: Array<{
id: SettingsSection;
label: string;
icon: typeof Server | Component<{ class?: string }>;
}> = [
{
id: 'pve',
label: 'Virtual Environment',
icon: Server,
},
{
id: 'pbs',
label: 'Backup Server',
icon: HardDrive,
},
{
id: 'pmg',
label: 'Mail Gateway',
icon: Mail,
},
{
id: 'docker',
label: 'Docker',
icon: DockerIcon,
},
];
export const SettingsSectionNav: Component<SettingsSectionNavProps> = (props) => {
const baseClasses =
'inline-flex items-center gap-2 px-2 sm:px-3 py-1 text-xs sm:text-sm font-medium border-b-2 border-transparent text-gray-600 dark:text-gray-400 transition-colors focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-400/60 focus-visible:ring-offset-2 focus-visible:ring-offset-white dark:focus-visible:ring-offset-gray-900';
return (
<div class={`flex flex-wrap items-center gap-3 sm:gap-4 ${props.class ?? ''}`} aria-label="Settings sections">
<For each={allSections}>
{(section) => {
const isActive = section.id === props.current;
const classes = isActive
? `${baseClasses} text-blue-600 dark:text-blue-300 border-blue-500 dark:border-blue-400`
: `${baseClasses} hover:text-blue-500 dark:hover:text-blue-300 hover:border-blue-300/70 dark:hover:border-blue-500/50`;
const Icon = section.icon;
const isDockerIcon = section.id === 'docker';
return (
<button
type="button"
class={classes}
onClick={() => props.onSelect(section.id)}
aria-pressed={isActive}
>
{isDockerIcon ? (
<Icon class="w-4 h-4" />
) : (
<Icon size={16} stroke-width={2} />
)}
<span>{section.label}</span>
</button>
);
}}
</For>
</div>
);
};