SpoolInfoCard.tsx 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. import { useState } from 'react';
  2. import { useTranslation } from 'react-i18next';
  3. import { Check, AlertTriangle, RefreshCw } from 'lucide-react';
  4. import type { MatchedSpool } from '../../hooks/useSpoolBuddyState';
  5. import { spoolbuddyApi } from '../../api/client';
  6. import { SpoolIcon } from './SpoolIcon';
  7. // Storage key for default core weight
  8. const DEFAULT_CORE_WEIGHT_KEY = 'spoolbuddy-default-core-weight';
  9. function getDefaultCoreWeight(): number {
  10. try {
  11. const stored = localStorage.getItem(DEFAULT_CORE_WEIGHT_KEY);
  12. if (stored) {
  13. const weight = parseInt(stored, 10);
  14. if (weight >= 0 && weight <= 500) return weight;
  15. }
  16. } catch {
  17. // Ignore errors
  18. }
  19. return 250; // Default 250g (typical Bambu spool core)
  20. }
  21. interface SpoolInfoCardProps {
  22. spool: MatchedSpool;
  23. scaleWeight: number | null;
  24. onClose?: () => void;
  25. onSyncWeight?: () => void;
  26. onAssignToAms?: () => void;
  27. }
  28. export function SpoolInfoCard({ spool, scaleWeight, onClose, onSyncWeight, onAssignToAms }: SpoolInfoCardProps) {
  29. const { t } = useTranslation();
  30. const [syncing, setSyncing] = useState(false);
  31. const [synced, setSynced] = useState(false);
  32. const colorHex = spool.rgba ? `#${spool.rgba.slice(0, 6)}` : '#808080';
  33. // Use spool's core_weight if set, otherwise fall back to default
  34. const coreWeight = (spool.core_weight && spool.core_weight > 0)
  35. ? spool.core_weight
  36. : getDefaultCoreWeight();
  37. // Gross weight from scale (live) or fallback
  38. const grossWeight = scaleWeight !== null
  39. ? Math.round(Math.max(0, scaleWeight))
  40. : null;
  41. // Remaining filament = gross - core
  42. const remaining = grossWeight !== null
  43. ? Math.round(Math.max(0, grossWeight - coreWeight))
  44. : null;
  45. const labelWeight = Math.round(spool.label_weight || 1000);
  46. const fillPercent = remaining !== null ? Math.min(100, Math.round((remaining / labelWeight) * 100)) : null;
  47. const fillColor = fillPercent !== null
  48. ? fillPercent > 50 ? '#22c55e' : fillPercent > 20 ? '#eab308' : '#ef4444'
  49. : '#808080';
  50. // Weight comparison (scale vs calculated expected)
  51. const netWeight = Math.max(0,
  52. (spool.label_weight || 0) - (spool.weight_used || 0)
  53. );
  54. const calculatedWeight = netWeight + coreWeight;
  55. const difference = grossWeight !== null ? grossWeight - calculatedWeight : null;
  56. const isMatch = difference !== null ? Math.abs(difference) <= 50 : null;
  57. const handleSyncWeight = async () => {
  58. if (scaleWeight === null) return;
  59. setSyncing(true);
  60. try {
  61. await spoolbuddyApi.updateSpoolWeight(spool.id, Math.round(scaleWeight));
  62. setSynced(true);
  63. onSyncWeight?.();
  64. setTimeout(() => setSynced(false), 3000);
  65. } catch (e) {
  66. console.error('Failed to sync weight:', e);
  67. } finally {
  68. setSyncing(false);
  69. }
  70. };
  71. return (
  72. <div className="flex flex-col items-center space-y-4 max-w-md">
  73. {/* Top section: Spool icon + main info */}
  74. <div className="flex items-start gap-5">
  75. {/* Spool visualization */}
  76. <div className="relative shrink-0">
  77. <SpoolIcon color={colorHex} isEmpty={false} size={100} />
  78. {fillPercent !== null && (
  79. <div
  80. className="absolute -bottom-2 -right-2 px-2 py-0.5 rounded-full text-xs font-bold text-white shadow-lg"
  81. style={{ backgroundColor: fillColor }}
  82. >
  83. {fillPercent}%
  84. </div>
  85. )}
  86. </div>
  87. {/* Main info */}
  88. <div className="flex-1 min-w-0 pt-1">
  89. <h3 className="text-lg font-semibold text-zinc-100">
  90. {spool.color_name || 'Unknown color'}
  91. </h3>
  92. <p className="text-sm text-zinc-400">
  93. {spool.brand} &bull; {spool.material}
  94. {spool.subtype && ` ${spool.subtype}`}
  95. </p>
  96. {/* Filament remaining - big number */}
  97. {remaining !== null && (
  98. <div className="mt-3">
  99. <div className="flex items-baseline gap-2">
  100. <span className="text-3xl font-bold font-mono text-zinc-100">{remaining}g</span>
  101. <span className="text-sm text-zinc-500">/ {labelWeight}g</span>
  102. </div>
  103. <p className="text-xs text-zinc-500 mt-0.5">{t('spoolbuddy.spool.remaining', 'Remaining')}</p>
  104. {/* Fill bar */}
  105. <div className="mt-2 max-w-xs">
  106. <div className="h-2 bg-zinc-700 rounded-full overflow-hidden">
  107. <div
  108. className="h-full rounded-full transition-all duration-500"
  109. style={{ width: `${fillPercent}%`, backgroundColor: fillColor }}
  110. />
  111. </div>
  112. </div>
  113. </div>
  114. )}
  115. </div>
  116. </div>
  117. {/* Details grid */}
  118. <div className="grid grid-cols-2 gap-x-6 gap-y-2 text-sm bg-zinc-800 rounded-lg p-4 w-full">
  119. <div className="flex justify-between">
  120. <span className="text-zinc-500">{t('spoolbuddy.dashboard.grossWeight', 'Gross weight')}</span>
  121. <span className="font-mono text-zinc-300">{grossWeight !== null ? `${grossWeight}g` : '\u2014'}</span>
  122. </div>
  123. <div className="flex justify-between">
  124. <span className="text-zinc-500">{t('spoolbuddy.spool.coreWeight', 'Core')}</span>
  125. <span className="font-mono text-zinc-300">{coreWeight}g</span>
  126. </div>
  127. <div className="flex justify-between">
  128. <span className="text-zinc-500">{t('spoolbuddy.dashboard.spoolSize', 'Spool size')}</span>
  129. <span className="font-mono text-zinc-300">{labelWeight}g</span>
  130. </div>
  131. <div className="flex justify-between items-center">
  132. <span className="text-zinc-500">{t('spoolbuddy.spool.scaleWeight', 'Scale')}</span>
  133. {grossWeight !== null ? (
  134. <span className={`flex items-center gap-1 font-mono ${isMatch ? 'text-green-500' : 'text-yellow-500'}`}>
  135. {grossWeight}g
  136. {isMatch ? (
  137. <Check className="w-3.5 h-3.5" />
  138. ) : (
  139. <>
  140. <AlertTriangle className="w-3.5 h-3.5" />
  141. <button
  142. onClick={handleSyncWeight}
  143. className="p-1 hover:bg-green-500/20 rounded transition-colors text-green-500"
  144. title={t('spoolbuddy.dashboard.syncWeight', 'Sync Weight')}
  145. >
  146. <RefreshCw className="w-4 h-4" />
  147. </button>
  148. </>
  149. )}
  150. </span>
  151. ) : (
  152. <span className="text-zinc-500">{'\u2014'}</span>
  153. )}
  154. </div>
  155. <div className="flex justify-between items-center">
  156. <span className="text-zinc-500">{t('spoolbuddy.dashboard.tagId', 'Tag')}</span>
  157. <span className="font-mono text-xs text-zinc-400 truncate max-w-[120px]" title={spool.tag_uid || ''}>
  158. {spool.tag_uid ? spool.tag_uid.slice(-8) : '\u2014'}
  159. </span>
  160. </div>
  161. </div>
  162. {/* Action buttons */}
  163. <div className="flex gap-2 justify-center">
  164. {onAssignToAms && (
  165. <button
  166. onClick={onAssignToAms}
  167. className="px-5 py-2.5 rounded-lg text-sm font-medium bg-green-600 text-white hover:bg-green-700 transition-colors min-h-[44px]"
  168. >
  169. {t('spoolbuddy.modal.assignToAms', 'Assign to AMS')}
  170. </button>
  171. )}
  172. <button
  173. onClick={handleSyncWeight}
  174. disabled={scaleWeight === null || syncing}
  175. className={`px-5 py-2.5 rounded-lg text-sm font-medium transition-colors min-h-[44px] ${
  176. synced
  177. ? 'bg-green-600/20 text-green-400'
  178. : onAssignToAms
  179. ? 'bg-zinc-700 text-zinc-300 hover:bg-zinc-600 disabled:opacity-40 disabled:cursor-not-allowed'
  180. : 'bg-green-600 text-white hover:bg-green-700 disabled:opacity-40 disabled:cursor-not-allowed'
  181. }`}
  182. >
  183. {syncing ? '...' : synced ? t('spoolbuddy.dashboard.weightSynced', 'Synced!') : t('spoolbuddy.dashboard.syncWeight', 'Sync Weight')}
  184. </button>
  185. {onClose && (
  186. <button
  187. onClick={onClose}
  188. className="px-5 py-2.5 rounded-lg text-sm font-medium bg-zinc-700 text-zinc-300 hover:bg-zinc-600 transition-colors min-h-[44px]"
  189. >
  190. {t('spoolbuddy.dashboard.close', 'Close')}
  191. </button>
  192. )}
  193. </div>
  194. </div>
  195. );
  196. }
  197. interface UnknownTagCardProps {
  198. tagUid: string;
  199. scaleWeight: number | null;
  200. coreWeight?: number;
  201. onLinkSpool?: () => void;
  202. onAddToInventory?: () => void;
  203. onClose?: () => void;
  204. }
  205. export function UnknownTagCard({ tagUid, scaleWeight, coreWeight, onLinkSpool, onAddToInventory, onClose }: UnknownTagCardProps) {
  206. const { t } = useTranslation();
  207. const defaultCoreWeight = coreWeight ?? getDefaultCoreWeight();
  208. const grossWeight = scaleWeight !== null
  209. ? Math.round(Math.max(0, scaleWeight))
  210. : null;
  211. const estimatedRemaining = grossWeight !== null
  212. ? Math.round(Math.max(0, grossWeight - defaultCoreWeight))
  213. : null;
  214. return (
  215. <div className="flex flex-col items-center text-center space-y-5">
  216. <div className="w-20 h-20 rounded-2xl bg-green-500/15 flex items-center justify-center">
  217. <svg className="w-10 h-10 text-green-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
  218. <path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M7 7h.01M7 3h5c.512 0 1.024.195 1.414.586l7 7a2 2 0 010 2.828l-7 7a2 2 0 01-2.828 0l-7-7A2 2 0 013 12V7a4 4 0 014-4z" />
  219. </svg>
  220. </div>
  221. <div>
  222. <h3 className="text-lg font-semibold text-zinc-100">{t('spoolbuddy.dashboard.newTag', 'New Tag Detected')}</h3>
  223. <p className="text-sm text-zinc-500 font-mono mt-1">{tagUid}</p>
  224. </div>
  225. {grossWeight !== null && (
  226. <div className="text-sm text-zinc-400">
  227. <span className="font-mono font-semibold">{grossWeight}g</span> {t('spoolbuddy.dashboard.onScale', 'on scale')}
  228. {estimatedRemaining !== null && estimatedRemaining > 0 && (
  229. <span className="text-zinc-500"> &bull; ~{estimatedRemaining}g filament</span>
  230. )}
  231. </div>
  232. )}
  233. <div className="flex flex-wrap gap-2 justify-center">
  234. {onAddToInventory && (
  235. <button
  236. onClick={onAddToInventory}
  237. className="px-5 py-2.5 rounded-lg text-sm font-medium bg-green-600 text-white hover:bg-green-700 transition-colors min-h-[44px]"
  238. >
  239. {t('spoolbuddy.modal.addToInventory', 'Add to Inventory')}
  240. </button>
  241. )}
  242. {onLinkSpool && (
  243. <button
  244. onClick={onLinkSpool}
  245. className="px-5 py-2.5 rounded-lg text-sm font-medium bg-zinc-700 text-zinc-300 hover:bg-zinc-600 transition-colors min-h-[44px]"
  246. >
  247. <svg className="w-4 h-4 inline-block mr-1.5 -mt-0.5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
  248. <path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M13.828 10.172a4 4 0 00-5.656 0l-4 4a4 4 0 105.656 5.656l1.102-1.101m-.758-4.899a4 4 0 005.656 0l4-4a4 4 0 00-5.656-5.656l-1.1 1.1" />
  249. </svg>
  250. {t('spoolbuddy.dashboard.linkSpool', 'Link to Spool')}
  251. </button>
  252. )}
  253. {onClose && (
  254. <button
  255. onClick={onClose}
  256. className="px-5 py-2.5 rounded-lg text-sm font-medium bg-zinc-700 text-zinc-300 hover:bg-zinc-600 transition-colors min-h-[44px]"
  257. >
  258. {t('spoolbuddy.dashboard.close', 'Close')}
  259. </button>
  260. )}
  261. </div>
  262. </div>
  263. );
  264. }