| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388 |
- import { useEffect, useMemo, useRef, useState } from 'react';
- import { useTranslation } from 'react-i18next';
- import { useQuery, useQueryClient } from '@tanstack/react-query';
- import { Circle, Check, AlertTriangle, RefreshCw, ChevronDown, ChevronUp, Palette } from 'lucide-react';
- import { api } from '../../api/client';
- import { useFilamentMapping } from '../../hooks/useFilamentMapping';
- import { getGlobalTrayId, effectivePreferLowest } from '../../utils/amsHelpers';
- import { getColorName } from '../../utils/colors';
- import { useFilamentLabels } from './useFilamentLabels';
- import type { FilamentMappingProps } from './types';
- /**
- * Filament mapping UI for comparing required filaments with loaded AMS slots.
- * Shows auto-matched and manually overridden slot assignments.
- */
- export function FilamentMapping({
- printerId,
- filamentReqs,
- manualMappings,
- onManualMappingChange,
- onEstimatedCostChange,
- budgetAvailable,
- quantity = 1,
- currencySymbol,
- defaultCostPerKg,
- defaultExpanded = false,
- forceColorMatch,
- onForceColorMatchChange,
- plateLabel,
- }: FilamentMappingProps & { defaultExpanded?: boolean }) {
- const { t } = useTranslation();
- const queryClient = useQueryClient();
- const [isRefreshing, setIsRefreshing] = useState(false);
- const [isExpanded, setIsExpanded] = useState(defaultExpanded);
- // Fetch printer status
- const { data: printerStatus } = useQuery({
- queryKey: ['printer-status', printerId],
- queryFn: () => api.getPrinterStatus(printerId),
- enabled: !!printerId,
- });
- const { data: assignments } = useQuery({
- queryKey: ['spool-assignments', printerId],
- queryFn: () => api.getAssignments(printerId),
- enabled: !!printerId,
- });
- // Settings + inventory map drive the same prefer-lowest + AMS-backup gate
- // the dispatcher uses (#1766). Without this, the per-slot dropdown's
- // auto-suggestion could disagree with what actually gets dispatched.
- const { data: settings } = useQuery({
- queryKey: ['settings'],
- queryFn: api.getSettings,
- });
- const { data: inventoryRemain } = useQuery({
- queryKey: ['printer-inventory-remain', printerId],
- queryFn: () => api.getInventoryRemain(printerId),
- enabled: !!printerId,
- staleTime: 30 * 1000,
- });
- const inventoryByTrayId = useMemo(() => {
- if (!inventoryRemain?.inventory_remain_g) return undefined;
- const map = new Map<number, number>();
- Object.entries(inventoryRemain.inventory_remain_g).forEach(([key, grams]) => {
- const gtid = Number(key);
- if (!Number.isNaN(gtid)) map.set(gtid, grams);
- });
- return map;
- }, [inventoryRemain]);
- const gatedPreferLowest = effectivePreferLowest(
- settings?.prefer_lowest_filament,
- printerStatus?.ams_filament_backup,
- );
- const { loadedFilaments, filamentComparison, hasTypeMismatch, hasColorMismatch } =
- useFilamentMapping(filamentReqs, printerStatus, manualMappings, gatedPreferLowest, inventoryByTrayId);
- // Per-slot sub-brand + material-disambiguated colour labels (#1718). Same
- // shared hook the model-mode FilamentOverride uses so both panels render
- // the same sliced-3MF identity. Falls back to the raw type / generic
- // colour bucket when the SKU is unknown or the by-material lookup hasn't
- // resolved — never blanks out the required row.
- const filamentLabels = useFilamentLabels(filamentReqs?.filaments);
- const trayCostMap = useMemo(() => {
- const map = new Map<number, number | null>();
- for (const assignment of assignments || []) {
- const isExternal = assignment.ams_id === 255;
- const globalTrayId = getGlobalTrayId(assignment.ams_id, assignment.tray_id, isExternal);
- map.set(globalTrayId, assignment.spool?.cost_per_kg ?? null);
- }
- return map;
- }, [assignments]);
- const trayRemainingWeightMap = useMemo(() => {
- const map = new Map<number, number | null>();
- for (const assignment of assignments || []) {
- const isExternal = assignment.ams_id === 255;
- const globalTrayId = getGlobalTrayId(assignment.ams_id, assignment.tray_id, isExternal);
- const spool = assignment.spool;
- if (!spool) {
- map.set(globalTrayId, null);
- continue;
- }
- map.set(globalTrayId, Math.max(0, Math.round((spool.label_weight ?? 0) - (spool.weight_used ?? 0))));
- }
- return map;
- }, [assignments]);
- const totalCost = useMemo(() => {
- let total = 0;
- for (const item of filamentComparison) {
- const trayId = item.loaded?.globalTrayId;
- if (trayId == null) continue;
- const assignedCost = trayCostMap.get(trayId) ?? null;
- const costPerKg = assignedCost ?? defaultCostPerKg;
- if (costPerKg > 0) {
- total += (item.used_grams / 1000) * costPerKg;
- }
- }
- return total;
- }, [filamentComparison, trayCostMap, defaultCostPerKg]);
- // Callers rendering one mapping per selected plate naturally create a
- // plate-scoped callback inline. Keep the latest callback in a ref so a new
- // function identity does not retrigger the cost effect and create a
- // parent/child render loop.
- const onEstimatedCostChangeRef = useRef(onEstimatedCostChange);
- useEffect(() => {
- onEstimatedCostChangeRef.current = onEstimatedCostChange;
- }, [onEstimatedCostChange]);
- useEffect(() => {
- onEstimatedCostChangeRef.current?.(totalCost > 0 ? totalCost : null);
- }, [totalCost]);
- const hasAnyCost = useMemo(
- () => Array.from(trayCostMap.values()).some((v) => v != null && v > 0),
- [trayCostMap]
- );
- const budgetCheckCost = totalCost * Math.max(1, quantity);
- const isBudgetInsufficient = budgetAvailable != null && budgetCheckCost > budgetAvailable;
- const hasFilamentReqs = filamentReqs?.filaments && filamentReqs.filaments.length > 0;
- const isDualNozzle = filamentReqs?.filaments?.some((f) => f.nozzle_id != null) ?? false;
- // Filament Track Switch: when installed, AMS-to-extruder mapping is dynamic
- // (any slot can be routed to either extruder), so the per-nozzle dropdown
- // filter is suppressed. fila_switch.in_slots[track] = currently fed slot,
- // fila_switch.out_extruders[track] = extruder that track terminates at. See #1162.
- const ftsInstalled = printerStatus?.fila_switch?.installed === true;
- const ftsExtruderForSlot = (globalTrayId: number): number | null => {
- const fs = printerStatus?.fila_switch;
- if (!fs?.installed) return null;
- const track = fs.in_slots.indexOf(globalTrayId);
- if (track < 0) return null;
- return fs.out_extruders[track] ?? null;
- };
- // Don't render if no filament requirements
- if (!hasFilamentReqs) {
- return null;
- }
- // Don't render until we have printer status to do the comparison
- if (!printerStatus) {
- return null;
- }
- // Determine status indicator color
- const statusColor = hasTypeMismatch
- ? '#f97316' // orange
- : hasColorMismatch
- ? '#facc15' // yellow
- : '#00ae42'; // green
- const handleSlotChange = (slotId: number, value: string) => {
- if (slotId > 0) {
- if (value === '') {
- // Clear manual override
- const next = { ...manualMappings };
- delete next[slotId];
- onManualMappingChange(next);
- } else {
- onManualMappingChange({
- ...manualMappings,
- [slotId]: parseInt(value, 10),
- });
- }
- }
- };
- const handleRefresh = async () => {
- setIsRefreshing(true);
- try {
- // Request fresh data from printer via MQTT pushall command
- await api.refreshPrinterStatus(printerId);
- // Wait a moment for printer to respond, then refetch
- await new Promise((r) => setTimeout(r, 500));
- await queryClient.refetchQueries({ queryKey: ['printer-status', printerId] });
- } finally {
- setIsRefreshing(false);
- }
- };
- return (
- <div className="mb-4">
- <button
- type="button"
- onClick={() => setIsExpanded(!isExpanded)}
- className="flex items-center gap-2 text-sm text-bambu-gray hover:text-white transition-colors w-full"
- >
- <Circle className="w-4 h-4" fill={statusColor} stroke="none" />
- <span>{plateLabel ? `${t('printModal.filamentMapping')} — ${plateLabel}` : t('printModal.filamentMapping')}</span>
- {hasTypeMismatch ? (
- <span className="text-xs text-orange-700 dark:text-orange-400">(Type not found)</span>
- ) : hasColorMismatch ? (
- <span className="text-xs text-yellow-700 dark:text-yellow-400">(Color mismatch)</span>
- ) : (
- <span className="text-xs text-bambu-green">(Ready)</span>
- )}
- {isExpanded ? (
- <ChevronUp className="w-4 h-4 ml-auto" />
- ) : (
- <ChevronDown className="w-4 h-4 ml-auto" />
- )}
- </button>
- {isExpanded && (
- <div className="mt-2 bg-bambu-dark rounded-lg p-3 space-y-2">
- <div className="flex items-center justify-between mb-2">
- <span className="text-xs text-bambu-gray">Click to change slot assignment</span>
- <button
- type="button"
- onClick={handleRefresh}
- className="flex items-center gap-1 px-2 py-0.5 text-xs rounded border border-bambu-gray/30 hover:border-bambu-gray hover:bg-bambu-dark-tertiary transition-colors text-bambu-gray hover:text-white"
- disabled={isRefreshing}
- >
- <RefreshCw className={`w-3 h-3 ${isRefreshing ? 'animate-spin' : ''}`} />
- <span>Re-read</span>
- </button>
- </div>
- {filamentComparison.map((item, idx) => {
- // #1717: surface the same per-slot force-color-match checkbox here
- // that FilamentOverride exposes for model-mode dispatch. The
- // scheduler honors the flag in both modes; only the UI was missing.
- const slotId = item.slot_id ?? 0;
- const canForceMatch = slotId > 0 && onForceColorMatchChange != null;
- // #1718: same sub-brand + colour resolution as FilamentOverride.
- // Indexing is safe because ``useFilamentLabels`` mirrors the input
- // array shape; defensive fallback covers the empty-reqs render
- // path that shouldn't reach here anyway.
- const { resolvedName, colorLabel } = filamentLabels[idx] ?? { resolvedName: item.type, colorLabel: getColorName(item.color) };
- return (
- <div key={idx} className="space-y-1">
- <div
- className="grid items-center gap-2 text-xs"
- style={{ gridTemplateColumns: '16px minmax(70px, 1fr) auto 2fr 16px' }}
- >
- {/* Required color */}
- <span title={`Required: ${resolvedName} - ${colorLabel}`}>
- <Circle className="w-3 h-3" fill={item.color} stroke={item.color} />
- </span>
- {/* Required type + grams + nozzle badge. Only the name
- truncates; the gram usage is pinned (shrink-0) so it never
- clips on narrow/mobile widths (#2669). */}
- <span className="text-white flex items-center gap-1 min-w-0">
- {isDualNozzle && item.nozzle_id != null && (
- <span
- className="inline-flex items-center justify-center w-3.5 h-3.5 rounded text-[9px] font-bold leading-none bg-bambu-gray/20 text-bambu-gray shrink-0"
- title={item.nozzle_id === 1 ? t('printModal.leftNozzleTooltip') : t('printModal.rightNozzleTooltip')}
- >
- {item.nozzle_id === 1 ? t('printModal.leftNozzle') : t('printModal.rightNozzle')}
- </span>
- )}
- <span className="truncate min-w-0" title={resolvedName}>{resolvedName}</span>
- <span className="text-bambu-gray shrink-0 whitespace-nowrap">({item.used_grams}g)</span>
- </span>
- {/* Arrow */}
- <span className="text-bambu-gray">→</span>
- {/* Slot selector dropdown */}
- <select
- value={item.loaded?.globalTrayId ?? ''}
- onChange={(e) => handleSlotChange(slotId, e.target.value)}
- className={`flex-1 px-2 py-1 rounded border text-xs bg-bambu-dark-secondary focus:outline-none focus:ring-1 focus:ring-bambu-green ${
- item.status === 'match'
- ? 'border-bambu-green/50 text-bambu-green'
- : item.status === 'type_only'
- ? 'border-yellow-500 dark:border-yellow-400/50 text-yellow-700 dark:text-yellow-400'
- : 'border-orange-500 dark:border-orange-400/50 text-orange-700 dark:text-orange-400'
- } ${item.isManual ? 'ring-1 ring-blue-400/50' : ''}`}
- title={item.isManual ? 'Manually selected' : 'Auto-matched'}
- >
- <option value="" className="bg-bambu-dark text-bambu-gray">
- -- Select slot --
- </option>
- {/*
- #1722: every loaded slot is offered for every filament row,
- regardless of which extruder the slot is wired to. Before this
- change a slot was only listed when its extruder matched the
- filament's slicer-assigned nozzle (item.nozzle_id), which
- locked users out of cross-extruder picks even when they'd
- intentionally loaded the required filament into the "other"
- AMS. The L/R badge on the filament row still tells the user
- what the slicer planned; the dropdown now trusts the user to
- pick based on their physical setup. Printer firmware accepts
- or rejects the ams_mapping at start-print — failure is loud,
- not silent.
- */}
- {loadedFilaments.map((f) => {
- const remainingWeight = trayRemainingWeightMap.get(f.globalTrayId);
- const remainingLabel = remainingWeight != null
- ? t('printModal.slotRemainingShort', {
- grams: remainingWeight,
- defaultValue: ` - ${remainingWeight}g left`,
- })
- : '';
- // FTS routing badge: if this slot is currently fed into an FTS
- // track, show the destination extruder. Idle (not-loaded) slots
- // get no badge — they can be routed to either extruder on demand.
- const ftsTargetExtruder = ftsInstalled
- ? ftsExtruderForSlot(f.globalTrayId)
- : null;
- const ftsBadge =
- ftsTargetExtruder == null
- ? ''
- : ` [${ftsTargetExtruder === 1 ? t('printModal.leftNozzle') : t('printModal.rightNozzle')}]`;
- return (
- <option key={f.globalTrayId} value={f.globalTrayId} className="bg-bambu-dark text-white">
- {f.label}: {f.traySubBrands || f.type} ({f.colorName}){remainingLabel}{ftsBadge}
- </option>
- );
- })}
- </select>
- {/* Status icon */}
- {item.status === 'match' ? (
- <Check className="w-3 h-3 text-bambu-green" />
- ) : item.status === 'type_only' ? (
- <span title="Same type, different color">
- <AlertTriangle className="w-3 h-3 text-yellow-600 dark:text-yellow-400" />
- </span>
- ) : (
- <span title="Filament type not loaded">
- <AlertTriangle className="w-3 h-3 text-orange-600 dark:text-orange-400" />
- </span>
- )}
- </div>
- {/* Force Color Match checkbox — matches FilamentOverride's layout. */}
- {canForceMatch && (
- <label className="inline-flex items-center gap-1.5 text-xs text-bambu-gray cursor-pointer select-none pl-5">
- <input
- type="checkbox"
- checked={forceColorMatch?.[slotId] ?? false}
- onChange={(e) => onForceColorMatchChange(slotId, e.target.checked)}
- className="accent-bambu-green w-3 h-3"
- />
- <Palette className="w-3 h-3" />
- {t('printModal.forceColorMatch')}
- </label>
- )}
- </div>
- );
- })}
- <div className="text-xs text-bambu-gray">
- {t('printModal.totalCost')}{' '}
- <span className="text-white">
- {totalCost > 0 || hasAnyCost ? `${currencySymbol}${totalCost.toFixed(2)}` : 'N/A'}
- </span>
- {quantity > 1 && totalCost > 0 && (
- <span className="ml-2">
- {t('printModal.totalCostForQuantity', 'total: {{cost}}', {
- cost: `${currencySymbol}${budgetCheckCost.toFixed(2)}`,
- })}
- </span>
- )}
- </div>
- {isBudgetInsufficient && (
- <p className="text-xs text-red-400 mt-2">
- {t('printModal.insufficientBudget', 'Insufficient budget for this cost center.')}
- </p>
- )}
- {hasTypeMismatch && (
- <p className="text-xs text-orange-700 dark:text-orange-400 mt-2">Required filament type not found in printer.</p>
- )}
- </div>
- )}
- </div>
- );
- }
|