| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- import { useEffect } from 'react';
- import { X, Keyboard } from 'lucide-react';
- import { useTranslation } from 'react-i18next';
- import { Card, CardContent } from './Card';
- interface NavItem {
- id: string;
- to: string;
- labelKey: string;
- }
- interface KeyboardShortcutsModalProps {
- onClose: () => void;
- navItems?: NavItem[];
- }
- function getShortcuts(navItems: NavItem[] | undefined, t: (key: string) => string) {
- const navShortcuts = navItems
- ? navItems.map((item, index) => ({
- keys: [String(index + 1)],
- description: `Go to ${t(item.labelKey)}`,
- }))
- : [
- { keys: ['1'], description: 'Go to Printers' },
- { keys: ['2'], description: 'Go to Archives' },
- { keys: ['3'], description: 'Go to Queue' },
- { keys: ['4'], description: 'Go to Statistics' },
- { keys: ['5'], description: 'Go to Cloud Profiles' },
- { keys: ['6'], description: 'Go to Settings' },
- ];
- return [
- { category: 'Navigation', items: navShortcuts },
- { category: 'Archives', items: [
- { keys: ['/'], description: 'Focus search' },
- { keys: ['U'], description: 'Open upload modal' },
- { keys: ['Esc'], description: 'Clear selection / blur input' },
- { keys: ['Right-click'], description: 'Context menu on cards' },
- ]},
- { category: 'K-Profiles', items: [
- { keys: ['R'], description: 'Refresh profiles' },
- { keys: ['N'], description: 'New profile' },
- { keys: ['Esc'], description: 'Exit selection mode' },
- ]},
- { category: 'General', items: [
- { keys: ['?'], description: 'Show this help' },
- ]},
- ];
- }
- function KeyBadge({ children }: { children: string }) {
- return (
- <kbd className="px-2 py-1 text-xs font-mono bg-bambu-dark border border-bambu-dark-tertiary rounded text-white">
- {children}
- </kbd>
- );
- }
- export function KeyboardShortcutsModal({ onClose, navItems }: KeyboardShortcutsModalProps) {
- const { t } = useTranslation();
- const shortcuts = getShortcuts(navItems, t);
- // Close on Escape key
- useEffect(() => {
- const handleKeyDown = (e: KeyboardEvent) => {
- if (e.key === 'Escape') onClose();
- };
- window.addEventListener('keydown', handleKeyDown);
- return () => window.removeEventListener('keydown', handleKeyDown);
- }, [onClose]);
- return (
- <div className="fixed inset-0 bg-black/50 flex items-center justify-center z-50 p-4" onClick={onClose}>
- <Card className="w-full max-w-md" onClick={(e) => e.stopPropagation()}>
- <CardContent className="p-0">
- {/* Header */}
- <div className="flex items-center justify-between p-4 border-b border-bambu-dark-tertiary">
- <div className="flex items-center gap-2">
- <Keyboard className="w-5 h-5 text-bambu-green" />
- <h2 className="text-xl font-semibold text-white">Keyboard Shortcuts</h2>
- </div>
- <button
- onClick={onClose}
- className="text-bambu-gray hover:text-white transition-colors"
- >
- <X className="w-5 h-5" />
- </button>
- </div>
- {/* Shortcuts List */}
- <div className="p-4 space-y-6 max-h-[60vh] overflow-y-auto">
- {shortcuts.map((section) => (
- <div key={section.category}>
- <h3 className="text-sm font-medium text-bambu-gray mb-3">{section.category}</h3>
- <div className="space-y-2">
- {section.items.map((shortcut) => (
- <div key={shortcut.description} className="flex items-center justify-between">
- <span className="text-white text-sm">{shortcut.description}</span>
- <div className="flex gap-1">
- {shortcut.keys.map((key) => (
- <KeyBadge key={key}>{key}</KeyBadge>
- ))}
- </div>
- </div>
- ))}
- </div>
- </div>
- ))}
- </div>
- {/* Footer */}
- <div className="p-4 border-t border-bambu-dark-tertiary">
- <p className="text-xs text-bambu-gray text-center">
- Press <KeyBadge>Esc</KeyBadge> or click outside to close
- </p>
- </div>
- </CardContent>
- </Card>
- </div>
- );
- }
|