/* ===== Cartonization module ===== */ const CartonizationScreen = ({ onNavigate }) => { const [selectedCarton, setSelectedCarton] = React.useState('fefco-b1'); const skus = [ { id:'s1', sku:'GD-1029', desc:'Tools · drill bits', qty: 24, L: 220, W: 140, H: 80, weight: 0.6, orientation:'upright', stack:'yes', color:'#C13333' }, { id:'s2', sku:'AP-1100', desc:'Apparel · tee · M', qty: 80, L: 300, W: 220, H: 30, weight: 0.18,orientation:'any', stack:'yes', color:'#E8893C' }, { id:'s3', sku:'EL-2210', desc:'Electronics · charger', qty: 36, L: 160, W: 110, H: 35, weight: 0.32,orientation:'upright', stack:'yes', color:'#2E5FA8' }, { id:'s4', sku:'BK-0099', desc:'Hardcover books', qty: 18, L: 250, W: 180, H: 35, weight: 0.95,orientation:'top-fixed',stack:'yes',color:'#1F8A5B' }, ]; const CARTON_OPTIONS = [ { id:'fefco-a1', name:'FEFCO 0201 · A1', L:400, W:300, H:200, fill:74 }, { id:'fefco-b1', name:'FEFCO 0201 · B1', L:500, W:400, H:300, fill:88, best:true }, { id:'fefco-c1', name:'FEFCO 0201 · C1', L:600, W:400, H:400, fill:82 }, { id:'custom', name:'Custom', L:550, W:380, H:280, fill:'—' }, ]; return (
Cartonization
SS26 wave 4 · 4 SKUs · 158 units
All SKUs fit selected carton
{/* LEFT — SKU list */}
SKUs in wave
{skus.map(s => (
{s.sku}
{s.desc}
×{s.qty}
Dims {s.L}×{s.W}×{s.H}
Wt {s.weight}kg
Stk {s.stack}
orient · {s.orientation}
))}
Carton constraints
{/* CENTER — 3D carton view */}
{['3d','top','side'].map(v => {v.toUpperCase()})} Carton 1 of 3
FEFCO 0201 · B1
500 × 400 × 300 mm
Items 50 Cube fill 88%
{/* RIGHT — recommender */}
Carton recommender
Top 3 cartons ranked by cube fill across this wave.
{CARTON_OPTIONS.map(c => (
setSelectedCarton(c.id)} style={{ padding:'10px 12px', borderRadius:6, cursor:'pointer', border:'1px solid ' + (c.id===selectedCarton ? 'var(--mojro-red)' : 'var(--line)'), background: c.id===selectedCarton ? 'rgba(193,51,51,0.04)' : '#fff', position:'relative', }}> {c.best && Best fit}
{c.name}
{c.L}×{c.W}×{c.H} mm
{typeof c.fill === 'number' &&
85?'var(--ok)':c.fill>70?'var(--warn)':'var(--bad)' }}/>}
{typeof c.fill === 'number' ? c.fill+'%' : c.fill}
))}
Wave summary
Manifest
CartonContentskg
C-001GD-1029×8 · AP-1100×24 · EL-2210×125.2
C-002AP-1100×40 · EL-2210×164.9
C-003AP-1100×16 · BK-0099×184.3
); }; window.CartonizationScreen = CartonizationScreen;