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 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 | import React, { useState, useEffect, useCallback } from 'react'; import { useQuery, useMutation } from '@tanstack/react-query'; import { Gauge, Loader2, RefreshCw, Printer, Plus, X, AlertCircle, WifiOff, Trash2, Search, Copy, Download, Upload, CheckSquare, Square, StickyNote, } from 'lucide-react'; import { api } from '../api/client'; import type { KProfile, KProfileCreate, KProfileDelete } from '../api/client'; import { Card, CardContent } from './Card'; import { Button } from './Button'; import { useToast } from '../contexts/ToastContext'; interface KProfileCardProps { profile: KProfile; onEdit: () => void; onCopy?: () => void; selectionMode?: boolean; isSelected?: boolean; onToggleSelect?: () => void; note?: string; // Note text to display as preview } // Truncate to 3 decimal places (like Bambu Studio) instead of rounding const truncateK = (value: string) => { const num = parseFloat(value); return (Math.trunc(num * 1000) / 1000).toFixed(3); }; // Get flow type label from nozzle_id (e.g., "HH00-0.4" -> "HF", "HS00-0.4" -> "S") const getFlowTypeLabel = (nozzleId: string) => { if (nozzleId.startsWith('HH')) return 'HF'; // High Flow return 'S'; // Standard Flow (default) }; // Extract nozzle type prefix from nozzle_id (e.g., "HH00-0.4" -> "HH00") const getNozzleTypePrefix = (nozzleId: string) => { const match = nozzleId.match(/^([A-Z]{2}\d{2})/); return match ? match[1] : 'HH00'; }; // Extract filament name from profile name (e.g., "High Flow_Devil Design PLA Basic" -> "Devil Design PLA Basic") const extractFilamentName = (profileName: string) => { // Profile names are formatted as "{Flow Type}_{Filament Name}" or "{Flow Type} {Filament Name}" // Remove common prefixes - check both underscore and space separators const prefixes = [ 'High Flow_', 'High Flow ', // underscore or space 'Standard_', 'Standard ', 'HF_', 'HF ', 'S_', 'S ', ]; for (const prefix of prefixes) { if (profileName.startsWith(prefix)) { return profileName.slice(prefix.length); } } // If no prefix found, check for underscore separator const underscoreIdx = profileName.indexOf('_'); if (underscoreIdx > 0) { return profileName.slice(underscoreIdx + 1); } return profileName; }; function KProfileCard({ profile, onEdit, onCopy, selectionMode, isSelected, onToggleSelect, note }: KProfileCardProps) { const flowType = getFlowTypeLabel(profile.nozzle_id); const diameter = profile.nozzle_diameter; const handleClick = () => { if (selectionMode && onToggleSelect) { onToggleSelect(); } else { onEdit(); } }; return ( <div className="flex items-center gap-2"> {selectionMode && ( <button onClick={onToggleSelect} className="text-bambu-gray hover:text-white transition-colors p-1" > {isSelected ? ( <CheckSquare className="w-4 h-4 text-bambu-green" /> ) : ( <Square className="w-4 h-4" /> )} </button> )} <button onClick={handleClick} className={`flex-1 text-left px-3 py-2 bg-bambu-dark rounded hover:bg-bambu-dark-tertiary transition-colors ${isSelected ? 'ring-1 ring-bambu-green' : ''}`} > <div className="flex items-center gap-2"> <span className="text-bambu-green font-mono text-sm font-bold whitespace-nowrap"> {truncateK(profile.k_value)} </span> <span className="text-white text-sm truncate flex-1" title={profile.name}> {profile.name || 'Unnamed'} </span> {note && ( <span title="Has note"> <StickyNote className="w-3 h-3 text-yellow-500" /> </span> )} <span className="text-xs text-bambu-gray whitespace-nowrap"> {flowType} {diameter} </span> </div> {note && ( <div className="text-xs mt-0.5 truncate text-yellow-500/70" title={note}> Note: {note.length > 50 ? note.substring(0, 50) + '...' : note} </div> )} </button> {!selectionMode && onCopy && ( <button onClick={(e) => { e.stopPropagation(); onCopy(); }} className="text-bambu-gray hover:text-white transition-colors p-1" title="Copy profile" > <Copy className="w-4 h-4" /> </button> )} </div> ); } interface KProfileModalProps { profile?: KProfile; printerId: number; nozzleDiameter: string; existingProfiles?: KProfile[]; // Existing profiles for filament selection isDualNozzle?: boolean; // Whether this is a dual-nozzle printer initialNote?: string; // Initial note value for the profile initialNoteKey?: string | null; // Key the note was stored under (for clearing) onClose: () => void; onSave: () => void; onSaveNote?: (settingId: string, note: string) => void; // Callback to save note } function KProfileModal({ profile, printerId, nozzleDiameter, existingProfiles = [], isDualNozzle = false, initialNote = '', initialNoteKey = null, onClose, onSave, onSaveNote, }: KProfileModalProps) { const { showToast } = useToast(); const [name, setName] = useState(profile?.name || ''); const [kValue, setKValue] = useState( profile?.k_value ? truncateK(profile.k_value) : '0.020' ); const [filamentId, setFilamentId] = useState(profile?.filament_id || ''); // Split nozzle into type and diameter const [nozzleType, setNozzleType] = useState( profile?.nozzle_id ? getNozzleTypePrefix(profile.nozzle_id) : 'HH00' ); const [modalDiameter, setModalDiameter] = useState( profile?.nozzle_diameter || nozzleDiameter ); // For new profiles on dual-nozzle: allow selecting multiple extruders // For editing: use single extruder from the profile const [selectedExtruders, setSelectedExtruders] = useState<number[]>( profile ? [profile.extruder_id] : isDualNozzle ? [0, 1] : [0] // Default: both extruders for new dual-nozzle profiles ); const [isSyncing, setIsSyncing] = useState(false); const [savingProgress, setSavingProgress] = useState({ current: 0, total: 0 }); const [note, setNote] = useState(initialNote); // Extract unique filaments from existing K-profiles on the printer // These have valid filament_ids that the printer recognizes const knownFilaments = React.useMemo(() => { const filamentMap = new Map<string, { id: string; name: string }>(); for (const p of existingProfiles) { if (p.filament_id && !filamentMap.has(p.filament_id)) { const filamentName = extractFilamentName(p.name || ''); filamentMap.set(p.filament_id, { id: p.filament_id, name: filamentName || p.filament_id, }); } } return Array.from(filamentMap.values()).sort((a, b) => a.name.localeCompare(b.name) ); }, [existingProfiles]); const saveMutation = useMutation({ mutationFn: (data: KProfileCreate) => { console.log('[KProfile] Calling API...'); return api.setKProfile(printerId, data); }, onSuccess: (result) => { console.log('[KProfile] Save success:', result); showToast('K-profile saved'); // Save note if it changed (including clearing it) if (onSaveNote && note !== initialNote) { let profileKey: string; if (note === '' && initialNoteKey) { // Clearing note: use the same key it was stored under profileKey = initialNoteKey; } else if (profile && profile.slot_id > 0) { // Editing: use setting_id if available, or composite key with slot_id profileKey = profile.setting_id || `slot_${profile.slot_id}_${profile.filament_id}_${profile.extruder_id}`; } else { // New profile: use name as key (will be matched when profile is loaded) profileKey = `name_${name}_${filamentId}`; } onSaveNote(profileKey, note); } // Show syncing indicator while printer processes the command setIsSyncing(true); // Add delay before closing to give printer time to process the save // onSave will trigger refetch in the parent component setTimeout(() => { setIsSyncing(false); onSave(); }, 2500); }, onError: (error: Error) => { console.error('[KProfile] Save error:', error); showToast(error.message, 'error'); setIsSyncing(false); }, }); const deleteMutation = useMutation({ mutationFn: (data: KProfileDelete) => { console.log('[KProfile] Deleting profile...'); return api.deleteKProfile(printerId, data); }, onSuccess: (result) => { console.log('[KProfile] Delete success:', result); showToast('K-profile deleted'); // Show syncing indicator while printer processes the command setIsSyncing(true); // Add longer delay for delete - printer needs more time to process // before it can return the updated profile list setTimeout(() => { setIsSyncing(false); onClose(); }, 4000); }, onError: (error: Error) => { console.error('[KProfile] Delete error:', error); showToast(error.message, 'error'); setIsSyncing(false); }, }); const [showDeleteConfirm, setShowDeleteConfirm] = useState(false); const handleDelete = () => { if (!profile) return; deleteMutation.mutate({ slot_id: profile.slot_id, extruder_id: profile.extruder_id, nozzle_id: profile.nozzle_id, nozzle_diameter: profile.nozzle_diameter, filament_id: profile.filament_id, setting_id: profile.setting_id, }); }; const handleSubmit = async (e: React.FormEvent) => { e.preventDefault(); // Validate at least one extruder is selected for dual-nozzle if (isDualNozzle && !profile && selectedExtruders.length === 0) { showToast('Please select at least one extruder', 'error'); return; } // Format k_value to 6 decimal places for Bambu protocol const formattedKValue = parseFloat(kValue).toFixed(6); // Combine nozzle type and diameter into nozzle_id (e.g., "HH00-0.4") const nozzleId = `${nozzleType}-${modalDiameter}`; // For editing or single extruder: just save one profile if (profile || selectedExtruders.length === 1) { const payload = { name: name, k_value: formattedKValue, filament_id: filamentId, nozzle_id: nozzleId, nozzle_diameter: modalDiameter, extruder_id: profile ? profile.extruder_id : selectedExtruders[0], setting_id: profile?.setting_id, slot_id: profile?.slot_id ?? 0, }; console.log('[KProfile] Saving profile:', payload); saveMutation.mutate(payload); return; } // For new profiles with multiple extruders: use batch endpoint setIsSyncing(true); setSavingProgress({ current: 1, total: selectedExtruders.length }); // Build payload for all selected extruders const batchPayload = selectedExtruders.map(extruderId => ({ name: name, k_value: formattedKValue, filament_id: filamentId, nozzle_id: nozzleId, nozzle_diameter: modalDiameter, extruder_id: extruderId, setting_id: undefined, slot_id: 0, })); console.log(`[KProfile] Saving ${batchPayload.length} profiles in batch:`, batchPayload); try { await api.setKProfilesBatch(printerId, batchPayload); showToast(`K-profile saved to ${selectedExtruders.length} extruders`); // Save note for new batch profiles if (onSaveNote && note) { const profileKey = `name_${name}_${filamentId}`; onSaveNote(profileKey, note); } } catch (error) { console.error('[KProfile] Failed to save batch:', error); showToast('Failed to save K-profiles', 'error'); setIsSyncing(false); setSavingProgress({ current: 0, total: 0 }); return; } setSavingProgress({ current: selectedExtruders.length, total: selectedExtruders.length }); // Wait for final sync before closing // onSave will trigger refetch in the parent component setTimeout(() => { setIsSyncing(false); setSavingProgress({ current: 0, total: 0 }); onSave(); }, 3000); }; return ( <div className="fixed inset-0 bg-black/50 flex items-center justify-center z-50 p-4"> <Card className="w-full max-w-md relative"> {/* Syncing overlay */} {isSyncing && ( <div className="absolute inset-0 bg-bambu-dark-secondary/90 flex flex-col items-center justify-center z-10 rounded-lg"> <Loader2 className="w-8 h-8 text-bambu-green animate-spin mb-3" /> <p className="text-white font-medium"> {savingProgress.total > 1 ? `Saving to extruder ${savingProgress.current}/${savingProgress.total}...` : 'Syncing with printer...'} </p> <p className="text-bambu-gray text-sm mt-1">Please wait</p> </div> )} <CardContent className="p-0"> <div className="flex items-center justify-between p-4 border-b border-bambu-dark-tertiary"> <h2 className="text-xl font-semibold text-white"> {profile ? 'Edit K-Profile' : 'Add K-Profile'} </h2> <button onClick={onClose} className="text-bambu-gray hover:text-white transition-colors" disabled={isSyncing} > <X className="w-5 h-5" /> </button> </div> <form onSubmit={handleSubmit} className="p-4 space-y-4"> {/* Profile Name - read-only when editing */} <div> <label className="block text-sm text-bambu-gray mb-1">Profile Name</label> <input type="text" value={name} onChange={(e) => setName(e.target.value)} disabled={!!profile} className={`w-full px-3 py-2 bg-bambu-dark border border-bambu-dark-tertiary rounded-lg text-white focus:border-bambu-green focus:outline-none ${profile ? 'opacity-60 cursor-not-allowed' : ''}`} placeholder="My PLA Profile" required={!profile} /> </div> {/* K-Value - always editable */} <div> <label className="block text-sm text-bambu-gray mb-1">K-Value</label> <input type="text" inputMode="decimal" value={kValue} onChange={(e) => { // Allow typing any decimal value const val = e.target.value; if (val === '' || /^\d*\.?\d*$/.test(val)) { setKValue(val); } }} onBlur={(e) => { // Format to 3 decimal places on blur const num = parseFloat(e.target.value); if (!isNaN(num)) { setKValue((Math.trunc(num * 1000) / 1000).toFixed(3)); } }} className="w-full px-3 py-2 bg-bambu-dark border border-bambu-dark-tertiary rounded-lg text-white focus:border-bambu-green focus:outline-none font-mono" placeholder="0.020" required /> <p className="text-xs text-bambu-gray mt-1"> Typical range: 0.01 - 0.06 for PLA, 0.02 - 0.10 for PETG </p> </div> {/* Filament - read-only when editing */} <div> <label className="block text-sm text-bambu-gray mb-1">Filament</label> <select value={filamentId} onChange={(e) => { const newFilamentId = e.target.value; setFilamentId(newFilamentId); // Auto-generate profile name when filament is selected (for new profiles) // Only auto-generate if name is empty - don't overwrite user input if (!profile && newFilamentId && !name) { const selectedFilament = knownFilaments.find(f => f.id === newFilamentId); if (selectedFilament) { const flowLabel = nozzleType === 'HH00' ? 'HF' : 'S'; setName(`${flowLabel} ${selectedFilament.name}`); } } }} disabled={!!profile} className={`w-full px-3 py-2 bg-bambu-dark border border-bambu-dark-tertiary rounded-lg text-white focus:border-bambu-green focus:outline-none ${profile ? 'opacity-60 cursor-not-allowed' : ''}`} required={!profile} > <option value="">Select filament...</option> {/* Show current filament when editing - look up from knownFilaments */} {profile?.filament_id && ( <option key={profile.filament_id} value={profile.filament_id}> {knownFilaments.find(f => f.id === profile.filament_id)?.name || profile.filament_id} </option> )} {/* Show known filaments from existing K-profiles (for new profiles) */} {!profile && knownFilaments.map((f) => ( <option key={f.id} value={f.id}> {f.name} </option> ))} </select> {!profile && knownFilaments.length === 0 && ( <p className="text-xs text-bambu-gray mt-1"> No filaments found. Create a K-profile in Bambu Studio first. </p> )} </div> {/* Flow Type and Nozzle Size - read-only when editing */} <div className="grid grid-cols-2 gap-4"> <div> <label className="block text-sm text-bambu-gray mb-1">Flow Type</label> <select value={nozzleType} onChange={(e) => { const newNozzleType = e.target.value; setNozzleType(newNozzleType); // Update profile name when flow type changes (for new profiles) // Only auto-generate if name is empty - don't overwrite user input if (!profile && filamentId && !name) { const selectedFilament = knownFilaments.find(f => f.id === filamentId); if (selectedFilament) { const flowLabel = newNozzleType === 'HS00' ? 'HF' : 'S'; setName(`${flowLabel} ${selectedFilament.name}`); } } }} disabled={!!profile} className={`w-full px-3 py-2 bg-bambu-dark border border-bambu-dark-tertiary rounded-lg text-white focus:border-bambu-green focus:outline-none ${profile ? 'opacity-60 cursor-not-allowed' : ''}`} > <option value="HH00">High Flow</option> <option value="HS00">Standard</option> </select> </div> <div> <label className="block text-sm text-bambu-gray mb-1">Nozzle Size</label> <select value={modalDiameter} onChange={(e) => setModalDiameter(e.target.value)} disabled={!!profile} className={`w-full px-3 py-2 bg-bambu-dark border border-bambu-dark-tertiary rounded-lg text-white focus:border-bambu-green focus:outline-none ${profile ? 'opacity-60 cursor-not-allowed' : ''}`} > <option value="0.2">0.2mm</option> <option value="0.4">0.4mm</option> <option value="0.6">0.6mm</option> <option value="0.8">0.8mm</option> </select> </div> </div> {/* Extruder - only show for dual-nozzle printers */} {isDualNozzle && ( <div> <label className="block text-sm text-bambu-gray mb-1"> {profile ? 'Extruder' : 'Extruders'} </label> {profile ? ( // Read-only display for editing <div className="px-3 py-2 bg-bambu-dark border border-bambu-dark-tertiary rounded-lg text-white opacity-60"> {profile.extruder_id === 1 ? 'Left' : 'Right'} </div> ) : ( // Checkboxes for new profile - can select both <div className="flex gap-4"> <label className="flex items-center gap-2 cursor-pointer"> <input type="checkbox" checked={selectedExtruders.includes(1)} onChange={(e) => { if (e.target.checked) { setSelectedExtruders([...selectedExtruders, 1]); } else { setSelectedExtruders(selectedExtruders.filter(id => id !== 1)); } }} className="w-4 h-4 rounded border-bambu-dark-tertiary bg-bambu-dark text-bambu-green focus:ring-bambu-green focus:ring-offset-0 accent-bambu-green" /> <span className="text-white">Left</span> </label> <label className="flex items-center gap-2 cursor-pointer"> <input type="checkbox" checked={selectedExtruders.includes(0)} onChange={(e) => { if (e.target.checked) { setSelectedExtruders([...selectedExtruders, 0]); } else { setSelectedExtruders(selectedExtruders.filter(id => id !== 0)); } }} className="w-4 h-4 rounded border-bambu-dark-tertiary bg-bambu-dark text-bambu-green focus:ring-bambu-green focus:ring-offset-0 accent-bambu-green" /> <span className="text-white">Right</span> </label> </div> )} </div> )} {/* Notes */} <div> <label className="block text-sm text-bambu-gray mb-1">Notes (stored locally)</label> <textarea value={note} onChange={(e) => setNote(e.target.value)} placeholder="Add notes about this profile..." rows={2} className="w-full px-3 py-2 bg-bambu-dark border border-bambu-dark-tertiary rounded-lg text-white placeholder-bambu-gray focus:border-bambu-green focus:outline-none resize-none" /> <p className="text-xs text-bambu-gray mt-1"> Notes are saved in Bambuddy, not on the printer </p> </div> <div className="flex gap-2 pt-4"> {profile && ( <Button type="button" variant="secondary" onClick={() => setShowDeleteConfirm(true)} disabled={deleteMutation.isPending || isSyncing} className="text-red-500 hover:bg-red-500/10" > {deleteMutation.isPending ? ( <Loader2 className="w-4 h-4 animate-spin" /> ) : ( <Trash2 className="w-4 h-4" /> )} </Button> )} <Button type="button" variant="secondary" onClick={onClose} disabled={isSyncing} className="flex-1" > Cancel </Button> <Button type="submit" disabled={saveMutation.isPending || isSyncing} className="flex-1" > {saveMutation.isPending ? ( <Loader2 className="w-4 h-4 animate-spin" /> ) : ( <Gauge className="w-4 h-4" /> )} Save </Button> </div> </form> </CardContent> </Card> {/* Delete Confirmation Modal */} {showDeleteConfirm && ( <div className="fixed inset-0 bg-black/70 flex items-center justify-center z-[60]"> <Card className="w-full max-w-sm"> <CardContent className="p-6"> <div className="flex items-center gap-3 mb-4"> <div className="w-10 h-10 rounded-full bg-red-500/20 flex items-center justify-center"> <Trash2 className="w-5 h-5 text-red-500" /> </div> <div> <h3 className="text-lg font-semibold text-white">Delete Profile</h3> <p className="text-sm text-bambu-gray">This cannot be undone</p> </div> </div> <p className="text-bambu-gray mb-6"> Are you sure you want to delete <span className="text-white font-medium">"{profile?.name}"</span> from the printer? </p> <div className="flex gap-3"> <Button variant="secondary" onClick={() => setShowDeleteConfirm(false)} className="flex-1" > Cancel </Button> <Button onClick={() => { setShowDeleteConfirm(false); handleDelete(); }} disabled={deleteMutation.isPending} className="flex-1 bg-red-500 hover:bg-red-600 text-white" > {deleteMutation.isPending ? ( <Loader2 className="w-4 h-4 animate-spin" /> ) : ( <Trash2 className="w-4 h-4" /> )} Delete </Button> </div> </CardContent> </Card> </div> )} </div> ); } type ExtruderFilter = 'all' | 'left' | 'right'; type FlowTypeFilter = 'all' | 'hf' | 's'; type SortOption = 'name' | 'k_value' | 'filament'; // localStorage keys const STORAGE_KEYS = { NOZZLE_DIAMETER: 'bambusy_kprofiles_nozzle', SORT_OPTION: 'bambusy_kprofiles_sort', }; export function KProfilesView() { const { showToast } = useToast(); const [selectedPrinter, setSelectedPrinter] = useState<number | null>(null); // Load nozzle diameter from localStorage const [nozzleDiameter, setNozzleDiameter] = useState(() => { const saved = localStorage.getItem(STORAGE_KEYS.NOZZLE_DIAMETER); return saved || '0.4'; }); const [editingProfile, setEditingProfile] = useState<KProfile | null>(null); const [showAddModal, setShowAddModal] = useState(false); const [copyingProfile, setCopyingProfile] = useState<KProfile | null>(null); const [searchQuery, setSearchQuery] = useState(''); const [extruderFilter, setExtruderFilter] = useState<ExtruderFilter>('all'); const [flowTypeFilter, setFlowTypeFilter] = useState<FlowTypeFilter>('all'); // Load sort option from localStorage const [sortOption, setSortOption] = useState<SortOption>(() => { const saved = localStorage.getItem(STORAGE_KEYS.SORT_OPTION); return (saved as SortOption) || 'name'; }); // Bulk selection mode // Use composite key: `${slot_id}_${extruder_id}` since slot_id alone is not unique across extruders const [selectionMode, setSelectionMode] = useState(false); const [selectedProfiles, setSelectedProfiles] = useState<Set<string>>(new Set()); const [showBulkDeleteConfirm, setShowBulkDeleteConfirm] = useState(false); const [bulkDeleteInProgress, setBulkDeleteInProgress] = useState(false); // Helper to create unique profile key for selection const getProfileKey = (profile: KProfile) => `${profile.slot_id}_${profile.extruder_id}`; // Save nozzle diameter to localStorage when it changes useEffect(() => { localStorage.setItem(STORAGE_KEYS.NOZZLE_DIAMETER, nozzleDiameter); }, [nozzleDiameter]); // Save sort option to localStorage when it changes useEffect(() => { localStorage.setItem(STORAGE_KEYS.SORT_OPTION, sortOption); }, [sortOption]); // Get available printers const { data: printers, isLoading: printersLoading } = useQuery({ queryKey: ['printers'], queryFn: api.getPrinters, }); // Get K-profiles for selected printer (filtered by nozzle diameter) const { data: kprofiles, isLoading: kprofilesLoading, isFetching, error: kprofilesError, refetch: refetchProfiles, } = useQuery({ queryKey: ['kprofiles', selectedPrinter, nozzleDiameter], queryFn: async () => { console.log('[KProfiles] Fetching profiles for printer', selectedPrinter, 'nozzle', nozzleDiameter); const result = await api.getKProfiles(selectedPrinter!, nozzleDiameter); console.log('[KProfiles] Received profiles:', result?.profiles?.length || 0, 'profiles'); return result; }, enabled: !!selectedPrinter, retry: false, staleTime: 0, // Always consider data stale to ensure fresh fetch gcTime: 0, // Don't cache results refetchOnMount: 'always', // Always refetch when component mounts }); // Also fetch 0.4mm profiles for the filament dropdown (most filaments are calibrated for 0.4mm) const { data: allProfiles } = useQuery({ queryKey: ['kprofiles', selectedPrinter, '0.4'], queryFn: () => api.getKProfiles(selectedPrinter!, '0.4'), enabled: !!selectedPrinter, staleTime: 60000, // Cache for 1 minute }); // Fetch K-profile notes (stored locally) const { data: notesData, refetch: refetchNotes, } = useQuery({ queryKey: ['kprofile-notes', selectedPrinter], queryFn: () => api.getKProfileNotes(selectedPrinter!), enabled: !!selectedPrinter, staleTime: 30000, // Cache for 30 seconds }); // Check if error is due to printer not being connected const isOfflineError = kprofilesError?.message?.includes('not connected'); // Auto-select first connected printer useEffect(() => { if (!selectedPrinter && printers && printers.length > 0) { const activePrinter = printers.find((p) => p.is_active); if (activePrinter) { setSelectedPrinter(activePrinter.id); } } }, [selectedPrinter, printers]); // Refetch profiles when printer selection changes useEffect(() => { if (selectedPrinter) { // Delay refetch to ensure query is enabled after state update const timer = setTimeout(() => { refetchProfiles(); }, 150); return () => clearTimeout(timer); } }, [selectedPrinter, nozzleDiameter]); // eslint-disable-line react-hooks/exhaustive-deps // Get connected printers for display const connectedPrinters = printers?.filter((p) => p.is_active) || []; // Filter and sort profiles // Note: nozzle diameter filtering is done server-side via MQTT request const filteredProfiles = React.useMemo(() => { if (!kprofiles?.profiles) return []; const filtered = kprofiles.profiles.filter((p) => { // Search filter - match name or filament_id (case-insensitive) const query = searchQuery.toLowerCase(); const matchesSearch = !query || p.name.toLowerCase().includes(query) || p.filament_id.toLowerCase().includes(query); // Extruder filter const matchesExtruder = extruderFilter === 'all' || (extruderFilter === 'left' && p.extruder_id === 1) || (extruderFilter === 'right' && p.extruder_id === 0); // Flow type filter (HH = High Flow, HS = Standard) const matchesFlowType = flowTypeFilter === 'all' || (flowTypeFilter === 'hf' && p.nozzle_id.startsWith('HH')) || (flowTypeFilter === 's' && p.nozzle_id.startsWith('HS')); return matchesSearch && matchesExtruder && matchesFlowType; }); // Sort profiles return filtered.sort((a, b) => { switch (sortOption) { case 'k_value': return parseFloat(a.k_value) - parseFloat(b.k_value); case 'filament': return extractFilamentName(a.name).localeCompare(extractFilamentName(b.name)); case 'name': default: return a.name.localeCompare(b.name); } }); }, [kprofiles?.profiles, searchQuery, extruderFilter, flowTypeFilter, sortOption]); // Check if selected printer is dual-nozzle (auto-detected from MQTT temperature data) const selectedPrinterData = printers?.find((p) => p.id === selectedPrinter); const isDualNozzle = selectedPrinterData?.nozzle_count === 2; // Keyboard shortcuts useEffect(() => { const handleKeyDown = (e: KeyboardEvent) => { // Don't trigger shortcuts when typing in input fields if (e.target instanceof HTMLInputElement || e.target instanceof HTMLTextAreaElement || e.target instanceof HTMLSelectElement) { return; } // Don't trigger when modal is open if (editingProfile || showAddModal || copyingProfile) { return; } if (e.key === 'r' || e.key === 'R') { e.preventDefault(); refetchProfiles(); } else if (e.key === 'n' || e.key === 'N') { e.preventDefault(); setShowAddModal(true); } else if (e.key === 'Escape' && selectionMode) { e.preventDefault(); setSelectionMode(false); setSelectedProfiles(new Set()); } }; window.addEventListener('keydown', handleKeyDown); return () => window.removeEventListener('keydown', handleKeyDown); }, [editingProfile, showAddModal, copyingProfile, selectionMode, refetchProfiles]); // Export profiles to JSON file const handleExport = useCallback(() => { if (!kprofiles?.profiles || kprofiles.profiles.length === 0) { showToast('No profiles to export', 'error'); return; } const exportData = { version: 1, exported_at: new Date().toISOString(), printer: selectedPrinterData?.name || 'Unknown', nozzle_diameter: nozzleDiameter, profiles: kprofiles.profiles.map(p => ({ name: p.name, k_value: p.k_value, filament_id: p.filament_id, nozzle_id: p.nozzle_id, nozzle_diameter: p.nozzle_diameter, extruder_id: p.extruder_id, })), }; const blob = new Blob([JSON.stringify(exportData, null, 2)], { type: 'application/json' }); const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = `kprofiles_${selectedPrinterData?.name || 'printer'}_${nozzleDiameter}mm_${new Date().toISOString().split('T')[0]}.json`; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(url); showToast(`Exported ${kprofiles.profiles.length} profiles`); }, [kprofiles?.profiles, selectedPrinterData, nozzleDiameter, showToast]); // Import profiles from JSON file const handleImport = useCallback(() => { const input = document.createElement('input'); input.type = 'file'; input.accept = '.json'; input.onchange = async (e) => { const file = (e.target as HTMLInputElement).files?.[0]; if (!file) return; try { const text = await file.text(); const data = JSON.parse(text); if (!data.profiles || !Array.isArray(data.profiles)) { showToast('Invalid file format', 'error'); return; } // Import profiles one by one let imported = 0; for (const p of data.profiles) { if (!p.name || !p.k_value || !p.filament_id) continue; try { await api.setKProfile(selectedPrinter!, { name: p.name, k_value: parseFloat(p.k_value).toFixed(6), filament_id: p.filament_id, nozzle_id: p.nozzle_id || `HH00-${nozzleDiameter}`, nozzle_diameter: p.nozzle_diameter || nozzleDiameter, extruder_id: p.extruder_id ?? 0, slot_id: 0, // Always create new }); imported++; // Small delay between imports await new Promise(resolve => setTimeout(resolve, 500)); } catch (err) { console.error('Failed to import profile:', p.name, err); } } showToast(`Imported ${imported} of ${data.profiles.length} profiles`); refetchProfiles(); } catch (err) { console.error('Import error:', err); showToast('Failed to parse import file', 'error'); } }; input.click(); }, [selectedPrinter, nozzleDiameter, showToast, refetchProfiles]); // Toggle profile selection using composite key const toggleProfileSelection = useCallback((profileKey: string) => { setSelectedProfiles(prev => { const next = new Set(prev); if (next.has(profileKey)) { next.delete(profileKey); } else { next.add(profileKey); } return next; }); }, []); // Select all visible profiles const selectAllProfiles = useCallback(() => { setSelectedProfiles(new Set(filteredProfiles.map(p => getProfileKey(p)))); }, [filteredProfiles, getProfileKey]); // Delete selected profiles const handleBulkDelete = useCallback(() => { if (selectedProfiles.size === 0) return; setShowBulkDeleteConfirm(true); }, [selectedProfiles.size]); // Execute the actual bulk delete const executeBulkDelete = useCallback(async () => { const profilesToDelete = filteredProfiles.filter(p => selectedProfiles.has(getProfileKey(p))); setBulkDeleteInProgress(true); let deleted = 0; for (const profile of profilesToDelete) { try { await api.deleteKProfile(selectedPrinter!, { slot_id: profile.slot_id, extruder_id: profile.extruder_id, nozzle_id: profile.nozzle_id, nozzle_diameter: profile.nozzle_diameter, filament_id: profile.filament_id, setting_id: profile.setting_id, }); deleted++; // Small delay between deletes await new Promise(resolve => setTimeout(resolve, 300)); } catch (err) { console.error('Failed to delete profile:', profile.name, err); } } showToast(`Deleted ${deleted} profiles`); setBulkDeleteInProgress(false); setShowBulkDeleteConfirm(false); setSelectionMode(false); setSelectedProfiles(new Set()); refetchProfiles(); }, [selectedPrinter, selectedProfiles, filteredProfiles, showToast, refetchProfiles, getProfileKey]); // Generate possible keys for a profile (for notes lookup) // Returns array of keys to check: setting_id, slot-based, name-based const getProfileKeys = useCallback((profile: KProfile): string[] => { const keys: string[] = []; if (profile.setting_id) { keys.push(profile.setting_id); } // Slot-based key (for profiles without setting_id) keys.push(`slot_${profile.slot_id}_${profile.filament_id}_${profile.extruder_id}`); // Name-based key (for newly created profiles) keys.push(`name_${profile.name}_${profile.filament_id}`); return keys; }, []); // Save note for a profile const handleSaveNote = useCallback(async (profileKey: string, noteText: string) => { if (!selectedPrinter) return; try { await api.setKProfileNote(selectedPrinter, profileKey, noteText); refetchNotes(); } catch (err) { console.error('Failed to save note:', err); showToast('Failed to save note', 'error'); } }, [selectedPrinter, refetchNotes, showToast]); // Get note for a profile (checks all possible keys) // Returns { note, key } so we know which key the note was stored under const getNoteWithKey = useCallback((profile: KProfile): { note: string; key: string | null } => { if (!notesData?.notes) return { note: '', key: null }; const keys = getProfileKeys(profile); for (const key of keys) { if (notesData.notes[key]) { return { note: notesData.notes[key], key }; } } return { note: '', key: null }; }, [notesData, getProfileKeys]); // Simple getter for display purposes const getNote = useCallback((profile: KProfile) => { return getNoteWithKey(profile).note; }, [getNoteWithKey]); if (printersLoading) { return ( <div className="flex justify-center py-12"> <Loader2 className="w-8 h-8 text-bambu-green animate-spin" /> </div> ); } if (!printers || printers.length === 0) { return ( <Card> <CardContent className="py-12 text-center"> <AlertCircle className="w-12 h-12 text-bambu-gray mx-auto mb-4" /> <h3 className="text-lg font-semibold text-white mb-2">No Printers Configured</h3> <p className="text-bambu-gray"> Add a printer in Settings to manage K-profiles </p> </CardContent> </Card> ); } if (connectedPrinters.length === 0) { return ( <Card> <CardContent className="py-12 text-center"> <Printer className="w-12 h-12 text-bambu-gray mx-auto mb-4" /> <h3 className="text-lg font-semibold text-white mb-2">No Active Printers</h3> <p className="text-bambu-gray"> Enable a printer connection to view its K-profiles </p> </CardContent> </Card> ); } return ( <> {/* Loading overlay when refetching profiles (not initial load) */} {isFetching && !kprofilesLoading && ( <div className="fixed inset-0 bg-black/50 flex flex-col items-center justify-center z-40"> <Loader2 className="w-10 h-10 text-bambu-green animate-spin mb-3" /> <p className="text-white font-medium">Loading K-Profiles...</p> </div> )} {/* Printer & Nozzle Selector */} <div className="flex flex-wrap gap-4 mb-6"> <div className="flex-1 min-w-48"> <label className="block text-sm text-bambu-gray mb-1">Printer</label> <select value={selectedPrinter || ''} onChange={(e) => setSelectedPrinter(parseInt(e.target.value))} className="w-full px-3 py-2 bg-bambu-dark border border-bambu-dark-tertiary rounded-lg text-white focus:border-bambu-green focus:outline-none" > {connectedPrinters.map((printer) => ( <option key={printer.id} value={printer.id}> {printer.name} </option> ))} </select> </div> <div className="w-32"> <label className="block text-sm text-bambu-gray mb-1">Nozzle</label> <select value={nozzleDiameter} onChange={(e) => setNozzleDiameter(e.target.value)} className="w-full px-3 py-2 bg-bambu-dark border border-bambu-dark-tertiary rounded-lg text-white focus:border-bambu-green focus:outline-none" > <option value="0.2">0.2mm</option> <option value="0.4">0.4mm</option> <option value="0.6">0.6mm</option> <option value="0.8">0.8mm</option> </select> </div> <div className="flex items-end gap-2"> <Button variant="secondary" onClick={() => refetchProfiles()} disabled={isFetching} > <RefreshCw className={`w-4 h-4 ${isFetching ? 'animate-spin' : ''}`} /> Refresh </Button> <Button onClick={() => setShowAddModal(true)}> <Plus className="w-4 h-4" /> Add Profile </Button> </div> </div> {/* Search & Filter Row */} <div className="flex flex-wrap gap-4 mb-4"> <div className="flex-1 min-w-48 relative"> <Search className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-bambu-gray" /> <input type="text" value={searchQuery} onChange={(e) => setSearchQuery(e.target.value)} placeholder="Search by name or filament..." className="w-full pl-10 pr-3 py-2 bg-bambu-dark border border-bambu-dark-tertiary rounded-lg text-white placeholder-bambu-gray focus:border-bambu-green focus:outline-none" /> </div> {isDualNozzle && ( <div className="w-36"> <select value={extruderFilter} onChange={(e) => setExtruderFilter(e.target.value as ExtruderFilter)} className="w-full px-3 py-2 bg-bambu-dark border border-bambu-dark-tertiary rounded-lg text-white focus:border-bambu-green focus:outline-none" > <option value="all">All Extruders</option> <option value="left">Left Only</option> <option value="right">Right Only</option> </select> </div> )} <div className="w-32"> <select value={flowTypeFilter} onChange={(e) => setFlowTypeFilter(e.target.value as FlowTypeFilter)} className="w-full px-3 py-2 bg-bambu-dark border border-bambu-dark-tertiary rounded-lg text-white focus:border-bambu-green focus:outline-none" > <option value="all">All Flow</option> <option value="hf">HF Only</option> <option value="s">S Only</option> </select> </div> <div className="w-32"> <select value={sortOption} onChange={(e) => setSortOption(e.target.value as SortOption)} className="w-full px-3 py-2 bg-bambu-dark border border-bambu-dark-tertiary rounded-lg text-white focus:border-bambu-green focus:outline-none" > <option value="name">Sort: Name</option> <option value="k_value">Sort: K-Value</option> <option value="filament">Sort: Filament</option> </select> </div> </div> {/* Toolbar Row */} <div className="flex flex-wrap gap-2 mb-6"> <Button variant="secondary" onClick={handleExport} disabled={!kprofiles?.profiles?.length} title="Export profiles to JSON" > <Download className="w-4 h-4" /> Export </Button> <Button variant="secondary" onClick={handleImport} title="Import profiles from JSON" > <Upload className="w-4 h-4" /> Import </Button> <div className="flex-1" /> {selectionMode ? ( <> <Button variant="secondary" onClick={selectAllProfiles} title="Select all visible profiles" > <CheckSquare className="w-4 h-4" /> Select All </Button> <Button variant="secondary" onClick={handleBulkDelete} disabled={selectedProfiles.size === 0} className="text-red-500 hover:bg-red-500/10" title={`Delete ${selectedProfiles.size} selected profiles`} > <Trash2 className="w-4 h-4" /> Delete ({selectedProfiles.size}) </Button> <Button variant="secondary" onClick={() => { setSelectionMode(false); setSelectedProfiles(new Set()); }} > <X className="w-4 h-4" /> Cancel </Button> </> ) : ( <Button variant="secondary" onClick={() => setSelectionMode(true)} disabled={!filteredProfiles.length} title="Enter selection mode for bulk delete" > <CheckSquare className="w-4 h-4" /> Select </Button> )} </div> {/* K-Profiles Grid */} {kprofilesLoading ? ( <div className="flex justify-center py-12"> <Loader2 className="w-8 h-8 text-bambu-green animate-spin" /> </div> ) : isOfflineError ? ( <Card> <CardContent className="py-12 text-center"> <WifiOff className="w-12 h-12 text-bambu-gray mx-auto mb-4" /> <h3 className="text-lg font-semibold text-white mb-2">Printer Offline</h3> <p className="text-bambu-gray mb-4"> The selected printer is not connected. Power it on to view K-profiles. </p> <Button variant="secondary" onClick={() => refetchProfiles()}> <RefreshCw className="w-4 h-4" /> Retry </Button> </CardContent> </Card> ) : filteredProfiles.length > 0 ? ( isDualNozzle ? ( // Dual-nozzle: show Left/Right columns <div className="grid grid-cols-2 gap-4"> {/* Left Extruder (extruder_id 1 on Bambu) */} <div> <h3 className="text-sm font-medium text-bambu-gray mb-2 px-1">Left Extruder</h3> <div className="space-y-1"> {filteredProfiles .filter((p) => p.extruder_id === 1) .map((profile) => ( <KProfileCard key={getProfileKey(profile)} profile={profile} onEdit={() => setEditingProfile(profile)} onCopy={() => setCopyingProfile(profile)} selectionMode={selectionMode} isSelected={selectedProfiles.has(getProfileKey(profile))} onToggleSelect={() => toggleProfileSelection(getProfileKey(profile))} note={getNote(profile)} /> ))} </div> </div> {/* Right Extruder (extruder_id 0 on Bambu) */} <div> <h3 className="text-sm font-medium text-bambu-gray mb-2 px-1">Right Extruder</h3> <div className="space-y-1"> {filteredProfiles .filter((p) => p.extruder_id === 0) .map((profile) => ( <KProfileCard key={getProfileKey(profile)} profile={profile} onEdit={() => setEditingProfile(profile)} onCopy={() => setCopyingProfile(profile)} selectionMode={selectionMode} isSelected={selectedProfiles.has(getProfileKey(profile))} onToggleSelect={() => toggleProfileSelection(getProfileKey(profile))} note={getNote(profile)} /> ))} </div> </div> </div> ) : ( // Single-nozzle: show all profiles in one list <div className="space-y-1"> {filteredProfiles.map((profile) => ( <KProfileCard key={getProfileKey(profile)} profile={profile} onEdit={() => setEditingProfile(profile)} onCopy={() => setCopyingProfile(profile)} selectionMode={selectionMode} isSelected={selectedProfiles.has(getProfileKey(profile))} onToggleSelect={() => toggleProfileSelection(getProfileKey(profile))} note={getNote(profile)} /> ))} </div> ) ) : searchQuery || extruderFilter !== 'all' || flowTypeFilter !== 'all' ? ( <Card> <CardContent className="py-12 text-center"> <Search className="w-12 h-12 text-bambu-gray mx-auto mb-4" /> <h3 className="text-lg font-semibold text-white mb-2">No Matching Profiles</h3> <p className="text-bambu-gray"> No profiles match your search criteria </p> </CardContent> </Card> ) : ( <Card> <CardContent className="py-12 text-center"> <Gauge className="w-12 h-12 text-bambu-gray mx-auto mb-4" /> <h3 className="text-lg font-semibold text-white mb-2">No K-Profiles</h3> <p className="text-bambu-gray mb-4"> No pressure advance profiles found for {nozzleDiameter}mm nozzle </p> <Button onClick={() => setShowAddModal(true)}> <Plus className="w-4 h-4" /> Create First Profile </Button> </CardContent> </Card> )} {/* Edit Modal */} {editingProfile && selectedPrinter && (() => { const { note, key } = getNoteWithKey(editingProfile); return ( <KProfileModal profile={editingProfile} printerId={selectedPrinter} nozzleDiameter={nozzleDiameter} existingProfiles={allProfiles?.profiles || kprofiles?.profiles} isDualNozzle={isDualNozzle} initialNote={note} initialNoteKey={key} onSaveNote={handleSaveNote} onClose={() => { console.log('[KProfiles] Edit modal onClose - refetching profiles...'); setEditingProfile(null); refetchProfiles(); // Refetch after close (handles delete case) }} onSave={() => { setEditingProfile(null); refetchProfiles(); }} /> ); })()} {/* Add Modal */} {showAddModal && selectedPrinter && ( <KProfileModal printerId={selectedPrinter} nozzleDiameter={nozzleDiameter} existingProfiles={allProfiles?.profiles || kprofiles?.profiles} isDualNozzle={isDualNozzle} onSaveNote={handleSaveNote} onClose={() => { setShowAddModal(false); refetchProfiles(); // Refetch after close }} onSave={() => { setShowAddModal(false); refetchProfiles(); }} /> )} {/* Copy Modal - opens add modal with prefilled values from source profile */} {copyingProfile && selectedPrinter && ( <KProfileModal printerId={selectedPrinter} nozzleDiameter={nozzleDiameter} existingProfiles={allProfiles?.profiles || kprofiles?.profiles} isDualNozzle={isDualNozzle} onSaveNote={handleSaveNote} // Pass profile data but without slot_id to create a new profile profile={{ ...copyingProfile, slot_id: 0, // Force new profile creation name: `${copyingProfile.name} (Copy)`, // Indicate it's a copy }} onClose={() => { setCopyingProfile(null); refetchProfiles(); }} onSave={() => { setCopyingProfile(null); refetchProfiles(); }} /> )} {/* Bulk Delete Confirmation Modal */} {showBulkDeleteConfirm && ( <div className="fixed inset-0 bg-black/50 flex items-center justify-center z-50 p-4"> <Card className="w-full max-w-sm"> <CardContent className="p-6"> <div className="flex items-center gap-3 mb-4"> <div className="w-10 h-10 rounded-full bg-red-500/20 flex items-center justify-center"> <Trash2 className="w-5 h-5 text-red-500" /> </div> <div> <h3 className="text-lg font-semibold text-white">Delete Profiles</h3> <p className="text-sm text-bambu-gray">This cannot be undone</p> </div> </div> <p className="text-bambu-gray mb-6"> Are you sure you want to delete <span className="text-white font-medium">{selectedProfiles.size}</span> selected profiles from the printer? </p> <div className="flex gap-3"> <Button variant="secondary" onClick={() => setShowBulkDeleteConfirm(false)} disabled={bulkDeleteInProgress} className="flex-1" > Cancel </Button> <Button onClick={executeBulkDelete} disabled={bulkDeleteInProgress} className="flex-1 bg-red-500 hover:bg-red-600 text-white" > {bulkDeleteInProgress ? ( <Loader2 className="w-4 h-4 animate-spin" /> ) : ( <Trash2 className="w-4 h-4" /> )} Delete </Button> </div> </CardContent> </Card> </div> )} </> ); } |