Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | import { useState } from 'react'; import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query'; import { Link2, Plus, Pencil, Trash2, GripVertical, Loader2, ExternalLink as ExternalLinkIcon } from 'lucide-react'; import { api } from '../api/client'; import type { ExternalLink } from '../api/client'; import { Card, CardContent, CardHeader } from './Card'; import { Button } from './Button'; import { AddExternalLinkModal } from './AddExternalLinkModal'; import { ConfirmModal } from './ConfirmModal'; import { getIconByName } from './IconPicker'; export function ExternalLinksSettings() { const queryClient = useQueryClient(); const [showAddModal, setShowAddModal] = useState(false); const [editingLink, setEditingLink] = useState<ExternalLink | null>(null); const [deletingLink, setDeletingLink] = useState<ExternalLink | null>(null); const [draggedId, setDraggedId] = useState<number | null>(null); // Fetch external links const { data: links, isLoading } = useQuery({ queryKey: ['external-links'], queryFn: api.getExternalLinks, }); // Delete mutation const deleteMutation = useMutation({ mutationFn: (id: number) => api.deleteExternalLink(id), onSuccess: () => { queryClient.invalidateQueries({ queryKey: ['external-links'] }); }, }); // Reorder mutation const reorderMutation = useMutation({ mutationFn: (ids: number[]) => api.reorderExternalLinks(ids), onSuccess: () => { queryClient.invalidateQueries({ queryKey: ['external-links'] }); }, }); const handleDragStart = (e: React.DragEvent, id: number) => { setDraggedId(id); e.dataTransfer.effectAllowed = 'move'; }; const handleDragOver = (e: React.DragEvent) => { e.preventDefault(); e.dataTransfer.dropEffect = 'move'; }; const handleDrop = (e: React.DragEvent, targetId: number) => { e.preventDefault(); if (draggedId === null || draggedId === targetId || !links) return; const currentIds = links.map((l) => l.id); const draggedIndex = currentIds.indexOf(draggedId); const targetIndex = currentIds.indexOf(targetId); if (draggedIndex === -1 || targetIndex === -1) return; // Reorder const newIds = [...currentIds]; newIds.splice(draggedIndex, 1); newIds.splice(targetIndex, 0, draggedId); reorderMutation.mutate(newIds); setDraggedId(null); }; const handleDelete = (link: ExternalLink) => { setDeletingLink(link); }; const confirmDelete = () => { if (deletingLink) { deleteMutation.mutate(deletingLink.id); setDeletingLink(null); } }; return ( <> <Card> <CardHeader> <div className="flex items-center justify-between"> <div className="flex items-center gap-2"> <Link2 className="w-5 h-5 text-bambu-green" /> <h2 className="text-lg font-semibold text-white">Sidebar Links</h2> </div> <Button size="sm" onClick={() => setShowAddModal(true)}> <Plus className="w-4 h-4" /> Add Link </Button> </div> </CardHeader> <CardContent> <p className="text-sm text-bambu-gray mb-4"> Add external links to the sidebar navigation. Drag to reorder. </p> {isLoading ? ( <div className="flex justify-center py-8"> <Loader2 className="w-6 h-6 text-bambu-green animate-spin" /> </div> ) : links && links.length > 0 ? ( <div className="space-y-2"> {links.map((link) => { const Icon = getIconByName(link.icon); return ( <div key={link.id} draggable onDragStart={(e) => handleDragStart(e, link.id)} onDragOver={handleDragOver} onDrop={(e) => handleDrop(e, link.id)} className={`flex items-center gap-3 p-3 rounded-lg bg-bambu-dark border border-bambu-dark-tertiary transition-colors ${ draggedId === link.id ? 'opacity-50' : '' }`} > <GripVertical className="w-6 h-6 md:w-4 md:h-4 text-bambu-gray cursor-grab flex-shrink-0" /> <div className="p-2 rounded-lg bg-bambu-dark-tertiary text-bambu-gray"> <Icon className="w-4 h-4" /> </div> <div className="flex-1 min-w-0"> <div className="flex items-center gap-2"> <span className="text-white font-medium truncate">{link.name}</span> <ExternalLinkIcon className="w-3 h-3 text-bambu-gray flex-shrink-0" /> </div> <span className="text-sm text-bambu-gray truncate block">{link.url}</span> </div> <div className="flex items-center gap-1 flex-shrink-0"> <button onClick={() => setEditingLink(link)} className="p-2 rounded-lg hover:bg-bambu-dark-tertiary text-bambu-gray hover:text-white transition-colors" title="Edit" > <Pencil className="w-4 h-4" /> </button> <button onClick={() => handleDelete(link)} disabled={deleteMutation.isPending} className="p-2 rounded-lg hover:bg-red-500/20 text-bambu-gray hover:text-red-400 transition-colors disabled:opacity-50" title="Delete" > <Trash2 className="w-4 h-4" /> </button> </div> </div> ); })} </div> ) : ( <div className="text-center py-8 text-bambu-gray"> <Link2 className="w-8 h-8 mx-auto mb-2 opacity-50" /> <p>No external links configured</p> <p className="text-sm">Click "Add Link" to add one</p> </div> )} </CardContent> </Card> {/* Add/Edit Modal */} {(showAddModal || editingLink) && ( <AddExternalLinkModal link={editingLink} onClose={() => { setShowAddModal(false); setEditingLink(null); }} /> )} {/* Delete Confirmation Modal */} {deletingLink && ( <ConfirmModal title="Delete Link" message={`Are you sure you want to delete "${deletingLink.name}"? This action cannot be undone.`} confirmText="Delete" cancelText="Cancel" variant="danger" onConfirm={confirmDelete} onCancel={() => setDeletingLink(null)} /> )} </> ); } |