Build [v1.14.24]
This commit is contained in:
@@ -18,7 +18,7 @@ export default function AdminPage() {
|
||||
return (
|
||||
<PageShell>
|
||||
<div className="flex items-center justify-center min-h-[60vh]">
|
||||
<div className="w-12 h-12 border-4 border-indigo-500/20 border-t-indigo-500 rounded-full animate-spin" />
|
||||
<div className="w-12 h-12 border-4 border-primary/20 border-t-primary animate-spin" />
|
||||
</div>
|
||||
</PageShell>
|
||||
);
|
||||
@@ -26,18 +26,18 @@ export default function AdminPage() {
|
||||
|
||||
return (
|
||||
<PageShell>
|
||||
<main data-testid="admin-page" className="p-3 md:p-8 max-w-7xl mx-auto space-y-3 md:space-y-6 mb-20">
|
||||
<main data-testid="admin-page" className="p-4 md:p-8 max-w-7xl mx-auto space-y-4 md:space-y-6 mb-20">
|
||||
<header className="flex items-center gap-4 mb-4 md:mb-6">
|
||||
<div className="p-3 md:p-4 bg-indigo-500/10 rounded-2xl text-indigo-400 border border-indigo-500/20 shadow-xl shadow-indigo-500/5">
|
||||
<Shield size={28} className="md:w-8 md:h-8" />
|
||||
<div className="p-4 bg-primary/10 text-primary border border-primary/20 shadow-xl shadow-primary/5">
|
||||
<Shield size={32} />
|
||||
</div>
|
||||
<div>
|
||||
<h1 className="text-2xl md:text-3xl font-normal tracking-tight text-white leading-tight">Admin Control</h1>
|
||||
<p className="text-[10px] md:text-xs text-muted font-normal tracking-tight mt-0.5">System Configuration & Security</p>
|
||||
<h1 className="text-2xl md:text-3xl font-normal tracking-tight text-foreground leading-tight">Admin Control</h1>
|
||||
<p className="text-[10px] md:text-xs text-secondary font-normal tracking-tight mt-0.5">System Configuration & Security</p>
|
||||
</div>
|
||||
<button
|
||||
onClick={admin.handleLogout}
|
||||
className="ml-auto p-3 bg-surface border border-slate-800 text-muted hover:text-rose-500 rounded-2xl transition-all active:scale-95 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:ring-offset-background focus-visible:ring-rose-500 focus-visible:outline-none"
|
||||
className="ml-auto p-3 bg-surface border border-outline-variant text-secondary hover:text-error transition-all active:scale-95 focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:ring-offset-background focus-visible:ring-error focus-visible:outline-none"
|
||||
title="Secure Logout"
|
||||
aria-label="Logout from admin panel"
|
||||
>
|
||||
|
||||
@@ -1,54 +1,73 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Fira+Code&family=Fira+Sans&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&family=Space+Grotesk:wght@400&display=swap');
|
||||
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
:root {
|
||||
/* Dark Mode (OLED) - Improved Contrast Palette */
|
||||
--background: #0A0E27;
|
||||
--foreground: #F0F4F8;
|
||||
--primary: #3B82F6;
|
||||
--primary-foreground: #FFFFFF;
|
||||
--font-code: 'Fira Code', monospace;
|
||||
--font-sans: 'Fira Sans', sans-serif;
|
||||
/* Industrial Brutalism Palette - Obsidian & Amber */
|
||||
--background: #0c1322;
|
||||
--foreground: #dce2f7;
|
||||
|
||||
--surface: #0c1322;
|
||||
--surface-container: #191f2f;
|
||||
--surface-bright: #323949;
|
||||
|
||||
--primary: #ffc174;
|
||||
--primary-foreground: #472a00;
|
||||
|
||||
--secondary: #ffb599;
|
||||
--secondary-foreground: #5a1c00;
|
||||
|
||||
--success: #10B981;
|
||||
--warning: #f59e0b;
|
||||
--error: #ffb4ab;
|
||||
|
||||
--outline: #a08e7a;
|
||||
--outline-variant: #534434;
|
||||
|
||||
--font-data: 'Space Grotesk', sans-serif;
|
||||
--font-body: 'Inter', sans-serif;
|
||||
}
|
||||
|
||||
* {
|
||||
border-radius: 0 !important;
|
||||
}
|
||||
|
||||
body {
|
||||
color: var(--foreground);
|
||||
background-color: var(--background);
|
||||
font-family: var(--font-sans);
|
||||
font-family: var(--font-body);
|
||||
font-weight: 400;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6, [data-font="space-grotesk"] {
|
||||
font-family: var(--font-data);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-family: var(--font-code);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
/* Custom Scrollbar Styling */
|
||||
/* Custom Scrollbar Styling - Industrial */
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: #020617; /* slate-950 */
|
||||
background: var(--background);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #1e293b; /* slate-800 */
|
||||
border-radius: 10px;
|
||||
border: 2px solid #020617; /* adds padding effect */
|
||||
background: var(--outline-variant);
|
||||
border: 1px solid var(--outline);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: #334155; /* slate-700 */
|
||||
background: var(--outline);
|
||||
}
|
||||
|
||||
/* Removed: glass-card utility (eliminated glassmorphism aesthetic) */
|
||||
@layer utilities {
|
||||
|
||||
.text-fluid-lg {
|
||||
font-size: clamp(1.125rem, 3cqi, 1.5rem);
|
||||
}
|
||||
@@ -58,15 +77,18 @@ h1, h2, h3, h4, h5, h6 {
|
||||
}
|
||||
|
||||
.card-title {
|
||||
@apply text-base font-normal text-slate-100 tracking-tight;
|
||||
@apply text-base font-normal text-foreground;
|
||||
}
|
||||
|
||||
.card-subtitle {
|
||||
@apply text-xs font-normal text-slate-500 tracking-[0.08em] mt-0.5;
|
||||
@apply text-xs font-normal text-secondary mt-0.5;
|
||||
}
|
||||
|
||||
.industrial-border {
|
||||
@apply border border-outline/30;
|
||||
}
|
||||
}
|
||||
|
||||
/* Safe Area Insets for Modern Mobile Devices (iOS Notch/Home Bar) */
|
||||
.pb-safe {
|
||||
padding-bottom: env(safe-area-inset-bottom);
|
||||
}
|
||||
@@ -75,7 +97,6 @@ h1, h2, h3, h4, h5, h6 {
|
||||
padding-top: env(safe-area-inset-top);
|
||||
}
|
||||
|
||||
/* Accessibility: Respect user's reduced motion preference */
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
*,
|
||||
*::before,
|
||||
@@ -84,10 +105,4 @@ h1, h2, h3, h4, h5, h6 {
|
||||
animation-iteration-count: 1 !important;
|
||||
transition-duration: 0.01ms !important;
|
||||
}
|
||||
|
||||
.animate-scan-fast,
|
||||
.animate-spin-slow,
|
||||
.animate-pulse {
|
||||
animation: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -266,7 +266,7 @@ export default function InventoryPage() {
|
||||
|
||||
return (
|
||||
<PageShell>
|
||||
<div className="p-3 md:p-8 max-w-7xl mx-auto space-y-3 md:space-y-4">
|
||||
<div className="p-4 md:p-8 max-w-7xl mx-auto space-y-4 md:space-y-6">
|
||||
<datalist id="existing-types">
|
||||
{existingTypes.map(t => <option key={t} value={t} />)}
|
||||
</datalist>
|
||||
@@ -275,23 +275,23 @@ export default function InventoryPage() {
|
||||
</datalist>
|
||||
|
||||
<header className="flex items-center gap-4 mb-4 md:mb-6">
|
||||
<div className="p-3 md:p-4 bg-primary/10 rounded-3xl text-primary border border-primary/20 shadow-xl shadow-primary/5">
|
||||
<Package size={28} className="md:w-8 md:h-8" />
|
||||
<div className="p-4 bg-primary/10 text-primary border border-primary/20 shadow-xl shadow-primary/5">
|
||||
<Package size={32} />
|
||||
</div>
|
||||
<div>
|
||||
<h1 className="text-2xl md:text-3xl font-normal tracking-tight text-white leading-tight">Inventory Catalog</h1>
|
||||
<p className="text-xs md:text-sm text-secondary font-normal mt-1 tracking-widest">Enterprise Stock Overview</p>
|
||||
<h1 className="text-2xl md:text-3xl font-normal tracking-tight text-foreground leading-tight">Inventory Catalog</h1>
|
||||
<p className="text-xs md:text-sm text-secondary font-normal mt-1">Enterprise Stock Overview</p>
|
||||
</div>
|
||||
<button
|
||||
onClick={() => setShowSearchModal(true)}
|
||||
className="ml-auto p-3 bg-surface border border-slate-800 text-secondary rounded-2xl hover:text-primary transition-all active:scale-95 shadow-xl"
|
||||
className="ml-auto p-3 bg-surface border border-outline/30 text-secondary hover:text-primary transition-all active:scale-95 shadow-xl"
|
||||
title="Search inventory"
|
||||
>
|
||||
<Search size={20} />
|
||||
</button>
|
||||
<button
|
||||
onClick={() => setShowBoxManager(true)}
|
||||
className="p-3 bg-surface border border-slate-800 text-secondary rounded-2xl hover:text-primary transition-all active:scale-95 shadow-xl"
|
||||
className="p-3 bg-surface border border-outline/30 text-secondary hover:text-primary transition-all active:scale-95 shadow-xl"
|
||||
title="Manage Boxes"
|
||||
>
|
||||
<Layout size={20} />
|
||||
@@ -347,12 +347,12 @@ export default function InventoryPage() {
|
||||
{/* Stock Adjustment / Edit Item Overlay */}
|
||||
{selectedItem && (
|
||||
<div className="fixed inset-0 z-50 flex items-end sm:items-center justify-center p-0 sm:p-4 bg-background/80 animate-in fade-in duration-200">
|
||||
<div className="w-full max-w-lg bg-surface border-x border-t sm:border border-slate-800 rounded-t-[2.5rem] sm:rounded-[2.5rem] shadow-2xl p-5 sm:p-8 overflow-hidden animate-in slide-in-from-bottom-10 duration-300">
|
||||
<div className="w-full max-w-lg bg-surface border-x border-t sm:border border-outline/30 ] sm:] shadow-2xl p-5 sm:p-8 overflow-hidden animate-in slide-in-from-bottom-10 duration-300">
|
||||
<div className="flex justify-between items-center mb-3 md:mb-4">
|
||||
<h3 className="text-xl font-normal tracking-tight flex items-center gap-2">
|
||||
{isEditing ? "Edit Item" : selectedItem.name}
|
||||
{!isEditing && (
|
||||
<span className="text-xs bg-slate-800 text-secondary px-3 py-1 rounded-lg font-normal tracking-tight">
|
||||
<span className="text-xs bg-surface-container text-secondary px-3 py-1 font-normal tracking-tight">
|
||||
In Stock: {selectedItem.quantity}
|
||||
</span>
|
||||
)}
|
||||
@@ -364,7 +364,7 @@ export default function InventoryPage() {
|
||||
setEditedItem(selectedItem);
|
||||
setIsEditing(true);
|
||||
}}
|
||||
className="p-2 hover:bg-slate-800 rounded-full text-secondary"
|
||||
className="p-2 hover:bg-surface-container text-secondary"
|
||||
>
|
||||
<Edit2 size={20} />
|
||||
</button>
|
||||
@@ -372,7 +372,7 @@ export default function InventoryPage() {
|
||||
{isEditing && (
|
||||
<button
|
||||
onClick={handleDeleteItem}
|
||||
className="p-2 hover:bg-red-500/20 rounded-full text-red-500"
|
||||
className="p-2 hover:bg-error/20 text-error"
|
||||
>
|
||||
<Trash2 size={20} />
|
||||
</button>
|
||||
@@ -383,7 +383,7 @@ export default function InventoryPage() {
|
||||
setIsEditing(false);
|
||||
setAdjustQty(1);
|
||||
}}
|
||||
className="p-2 hover:bg-slate-800 rounded-full"
|
||||
className="p-2 hover:bg-surface-container"
|
||||
>
|
||||
<X size={20} />
|
||||
</button>
|
||||
@@ -398,7 +398,7 @@ export default function InventoryPage() {
|
||||
type="text"
|
||||
value={editedItem.name || ''}
|
||||
onChange={e => setEditedItem({...editedItem, name: e.target.value})}
|
||||
className="w-full bg-background border border-slate-800 rounded-xl py-3 px-4 text-sm font-normal outline-none text-secondary placeholder:text-muted"
|
||||
className="w-full bg-background border border-outline/30 py-3 px-4 text-sm font-normal outline-none text-secondary placeholder:text-secondary"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
@@ -407,7 +407,7 @@ export default function InventoryPage() {
|
||||
type="text"
|
||||
value={editedItem.part_number || ''}
|
||||
onChange={e => setEditedItem({...editedItem, part_number: e.target.value})}
|
||||
className="w-full bg-background border border-slate-800 rounded-xl py-3 px-4 text-sm font-normal outline-none text-secondary placeholder:text-muted"
|
||||
className="w-full bg-background border border-outline/30 py-3 px-4 text-sm font-normal outline-none text-secondary placeholder:text-secondary"
|
||||
/>
|
||||
</div>
|
||||
<div className="grid grid-cols-2 gap-2 md:gap-3">
|
||||
@@ -418,7 +418,7 @@ export default function InventoryPage() {
|
||||
list="existing-categories"
|
||||
value={editedItem.category || ''}
|
||||
onChange={e => setEditedItem({ ...editedItem, category: e.target.value })}
|
||||
className="w-full bg-background border border-slate-800 rounded-xl py-3 px-4 text-sm font-normal outline-none text-secondary placeholder:text-muted"
|
||||
className="w-full bg-background border border-outline/30 py-3 px-4 text-sm font-normal outline-none text-secondary placeholder:text-secondary"
|
||||
placeholder="e.g. storage"
|
||||
/>
|
||||
<datalist id="existing-categories">
|
||||
@@ -434,7 +434,7 @@ export default function InventoryPage() {
|
||||
list="existing-types"
|
||||
value={editedItem.type || ''}
|
||||
onChange={e => setEditedItem({...editedItem, type: e.target.value})}
|
||||
className="w-full bg-background border border-slate-800 rounded-xl py-3 px-4 text-sm font-normal outline-none text-secondary"
|
||||
className="w-full bg-background border border-outline/30 py-3 px-4 text-sm font-normal outline-none text-secondary"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
@@ -443,7 +443,7 @@ export default function InventoryPage() {
|
||||
type="text"
|
||||
value={editedItem.connector || ''}
|
||||
onChange={e => setEditedItem({...editedItem, connector: e.target.value})}
|
||||
className="w-full bg-background border border-slate-800 rounded-xl py-3 px-4 text-sm font-normal outline-none text-secondary"
|
||||
className="w-full bg-background border border-outline/30 py-3 px-4 text-sm font-normal outline-none text-secondary"
|
||||
placeholder="e.g. LC/UPC"
|
||||
/>
|
||||
</div>
|
||||
@@ -453,7 +453,7 @@ export default function InventoryPage() {
|
||||
type="text"
|
||||
value={editedItem.size || ''}
|
||||
onChange={e => setEditedItem({...editedItem, size: e.target.value})}
|
||||
className="w-full bg-background border border-slate-800 rounded-xl py-3 px-4 text-sm font-normal outline-none text-secondary"
|
||||
className="w-full bg-background border border-outline/30 py-3 px-4 text-sm font-normal outline-none text-secondary"
|
||||
placeholder="e.g. 1.6TB"
|
||||
/>
|
||||
</div>
|
||||
@@ -463,7 +463,7 @@ export default function InventoryPage() {
|
||||
type="text"
|
||||
value={editedItem.color || ''}
|
||||
onChange={e => setEditedItem({...editedItem, color: e.target.value})}
|
||||
className="w-full bg-background border border-slate-800 rounded-xl py-3 px-4 text-sm font-normal outline-none text-secondary"
|
||||
className="w-full bg-background border border-outline/30 py-3 px-4 text-sm font-normal outline-none text-secondary"
|
||||
placeholder="e.g. Blue"
|
||||
/>
|
||||
</div>
|
||||
@@ -475,7 +475,7 @@ export default function InventoryPage() {
|
||||
list="existing-boxes"
|
||||
value={editedItem.box_label || ''}
|
||||
onChange={e => setEditedItem({...editedItem, box_label: e.target.value})}
|
||||
className="w-full bg-background border border-slate-800 rounded-xl py-3 pl-4 pr-12 text-sm font-normal outline-none text-secondary placeholder:text-muted focus:border-primary transition-colors"
|
||||
className="w-full bg-background border border-outline/30 py-3 pl-4 pr-12 text-sm font-normal outline-none text-secondary placeholder:text-secondary focus:border-primary transition-colors"
|
||||
placeholder="e.g. Box 5"
|
||||
/>
|
||||
<button
|
||||
@@ -486,8 +486,8 @@ export default function InventoryPage() {
|
||||
toast.success("Ready to scan Box label...");
|
||||
}}
|
||||
className={cn(
|
||||
"absolute right-2 p-2 rounded-lg transition-all",
|
||||
fieldScanning?.active ? "bg-primary text-white animate-pulse" : "text-muted hover:bg-slate-800"
|
||||
"absolute right-2 p-2 transition-all",
|
||||
fieldScanning?.active ? "bg-primary text-foreground animate-pulse" : "text-secondary hover:bg-surface-container"
|
||||
)}
|
||||
>
|
||||
<Camera size={18} />
|
||||
@@ -500,7 +500,7 @@ export default function InventoryPage() {
|
||||
<textarea
|
||||
value={editedItem.specs || ''}
|
||||
onChange={e => setEditedItem({...editedItem, specs: e.target.value})}
|
||||
className="w-full bg-background border border-slate-800 rounded-xl py-3 px-4 text-sm font-normal outline-none text-secondary h-20 resize-none"
|
||||
className="w-full bg-background border border-outline/30 py-3 px-4 text-sm font-normal outline-none text-secondary h-20 resize-none"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
@@ -508,24 +508,24 @@ export default function InventoryPage() {
|
||||
<textarea
|
||||
value={editedItem.ocr_text || ''}
|
||||
onChange={e => setEditedItem({...editedItem, ocr_text: e.target.value})}
|
||||
className="w-full bg-background border border-slate-800 rounded-xl py-3 px-4 text-sm font-normal outline-none text-primary/80 h-16 resize-none"
|
||||
className="w-full bg-background border border-outline/30 py-3 px-4 text-sm font-normal outline-none text-primary/80 h-16 resize-none"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
) : (
|
||||
<>
|
||||
<div className="flex p-1 bg-background rounded-2xl mb-4 md:mb-6">
|
||||
<div className="flex p-1 bg-background mb-4 md:mb-6">
|
||||
{[
|
||||
{ id: 'ADD', label: 'Buy More', icon: Plus, color: 'text-primary' },
|
||||
{ id: 'REMOVE', label: 'Subtract', icon: Minus, color: 'text-amber-500' },
|
||||
{ id: 'TRASH', label: 'Discard', icon: Trash2, color: 'text-red-500' }
|
||||
{ id: 'REMOVE', label: 'Subtract', icon: Minus, color: 'text-warning' },
|
||||
{ id: 'TRASH', label: 'Discard', icon: Trash2, color: 'text-error' }
|
||||
].map((t) => (
|
||||
<button
|
||||
key={t.id}
|
||||
onClick={() => setAdjustType(t.id as any)}
|
||||
className={cn(
|
||||
"flex-1 flex flex-col items-center py-3 rounded-xl transition-all",
|
||||
adjustType === t.id ? "bg-slate-800 shadow-lg" : "text-muted"
|
||||
"flex-1 flex flex-col items-center py-3 transition-all",
|
||||
adjustType === t.id ? "bg-surface-container shadow-lg" : "text-secondary"
|
||||
)}
|
||||
>
|
||||
<t.icon size={20} className={adjustType === t.id ? t.color : ""} />
|
||||
@@ -538,25 +538,25 @@ export default function InventoryPage() {
|
||||
<div className="flex items-center gap-3 md:gap-4">
|
||||
<button
|
||||
onClick={() => setAdjustQty(Math.max(1, adjustQty - 1))}
|
||||
className="w-12 h-12 rounded-full border border-slate-800 flex items-center justify-center hover:bg-slate-800 transition-colors"
|
||||
className="w-12 h-12 border border-outline/30 flex items-center justify-center hover:bg-surface-container transition-colors"
|
||||
>
|
||||
<Minus size={24} />
|
||||
</button>
|
||||
<span className="text-5xl font-normal tabular-nums">{adjustQty}</span>
|
||||
<button
|
||||
onClick={() => setAdjustQty(adjustQty + 1)}
|
||||
className="w-12 h-12 rounded-full border border-slate-800 flex items-center justify-center hover:bg-slate-800 transition-colors"
|
||||
className="w-12 h-12 border border-outline/30 flex items-center justify-center hover:bg-surface-container transition-colors"
|
||||
>
|
||||
<Plus size={24} />
|
||||
</button>
|
||||
</div>
|
||||
|
||||
{adjustType === 'TRASH' && (
|
||||
<div className="w-full bg-red-500/5 border border-red-500/20 p-4 rounded-2xl">
|
||||
<div className="w-full bg-error/5 border border-error/20 p-4">
|
||||
<select
|
||||
value={trashReason}
|
||||
onChange={(e) => setTrashReason(e.target.value)}
|
||||
className="w-full bg-background border border-slate-800 rounded-xl py-3 px-4 text-sm outline-none text-foreground"
|
||||
className="w-full bg-background border border-outline/30 py-3 px-4 text-sm outline-none text-foreground"
|
||||
>
|
||||
<option>Damaged</option>
|
||||
<option>Expired</option>
|
||||
@@ -572,11 +572,11 @@ export default function InventoryPage() {
|
||||
<button
|
||||
onClick={isEditing ? handleUpdateItem : handleAdjustStock}
|
||||
className={cn(
|
||||
"w-full py-4 sm:py-5 rounded-[1.8rem] font-normal text-lg transition-all active:scale-[0.98] shadow-xl",
|
||||
isEditing ? "bg-white text-slate-950 shadow-white/10" : (
|
||||
adjustType === 'ADD' ? "bg-primary text-white shadow-primary/20" :
|
||||
adjustType === 'REMOVE' ? "bg-amber-600 text-white shadow-amber-600/20" :
|
||||
"bg-red-600 text-white shadow-red-600/20"
|
||||
"w-full py-4 sm:py-5 ] font-normal text-lg transition-all active:scale-[0.98] shadow-xl",
|
||||
isEditing ? "bg-white text-background shadow-white/10" : (
|
||||
adjustType === 'ADD' ? "bg-primary text-foreground shadow-primary/20" :
|
||||
adjustType === 'REMOVE' ? "bg-warning text-foreground shadow-warning/20" :
|
||||
"bg-error text-foreground shadow-error/20"
|
||||
)
|
||||
)}
|
||||
>
|
||||
@@ -593,10 +593,10 @@ export default function InventoryPage() {
|
||||
{/* Category Edit Overlay */}
|
||||
{editingCategory && (
|
||||
<div className="fixed inset-0 z-50 flex items-center justify-center p-4 bg-background/90 animate-in fade-in duration-300">
|
||||
<div className="bg-surface border border-slate-800 rounded-3xl p-4 md:p-6 max-w-sm w-full shadow-2xl space-y-3 md:space-y-4 animate-in zoom-in-95 duration-200">
|
||||
<div className="bg-surface border border-outline/30 p-4 md:p-6 max-w-sm w-full shadow-2xl space-y-3 md:space-y-4 animate-in zoom-in-95 duration-200">
|
||||
<div className="flex justify-between items-center">
|
||||
<h2 className="text-xl font-normal">Edit Category</h2>
|
||||
<button onClick={() => setEditingCategory(null)} className="p-2 hover:bg-slate-800 rounded-full transition-colors text-secondary">
|
||||
<button onClick={() => setEditingCategory(null)} className="p-2 hover:bg-surface-container transition-colors text-secondary">
|
||||
<X size={20} />
|
||||
</button>
|
||||
</div>
|
||||
@@ -608,7 +608,7 @@ export default function InventoryPage() {
|
||||
type="text"
|
||||
value={catEditedName}
|
||||
onChange={e => setCatEditedName(e.target.value)}
|
||||
className="w-full bg-background border border-slate-800 rounded-xl py-3 px-4 text-sm outline-none text-secondary"
|
||||
className="w-full bg-background border border-outline/30 py-3 px-4 text-sm outline-none text-secondary"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
@@ -616,14 +616,14 @@ export default function InventoryPage() {
|
||||
<textarea
|
||||
value={catEditedDesc}
|
||||
onChange={e => setCatEditedDesc(e.target.value)}
|
||||
className="w-full bg-background border border-slate-800 rounded-xl py-3 px-4 text-sm outline-none text-secondary h-24 resize-none"
|
||||
className="w-full bg-background border border-outline/30 py-3 px-4 text-sm outline-none text-secondary h-24 resize-none"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<button
|
||||
onClick={handleUpdateCategory}
|
||||
className="w-full bg-primary text-white font-normal py-4 rounded-2xl shadow-xl shadow-primary/20 hover:scale-[1.02] active:scale-95 transition-all"
|
||||
className="w-full bg-primary text-primary-foreground font-normal py-4 shadow-xl shadow-primary/20 hover:scale-[1.02] active:scale-95 transition-all"
|
||||
>
|
||||
Update Category
|
||||
</button>
|
||||
@@ -642,7 +642,7 @@ export default function InventoryPage() {
|
||||
{/* Box Manager Modal */}
|
||||
{showBoxManager && (
|
||||
<div className="fixed inset-0 z-50 flex items-center justify-center p-4 bg-background/90 animate-in fade-in duration-300">
|
||||
<div className="w-full max-w-2xl bg-surface border border-slate-800 rounded-[2.5rem] shadow-2xl overflow-hidden flex flex-col max-h-[90vh]">
|
||||
<div className="w-full max-w-2xl bg-surface border border-outline/30 ] shadow-2xl overflow-hidden flex flex-col max-h-[90vh]">
|
||||
<div className="p-4 md:p-6 pb-3 md:pb-4 flex flex-col gap-3 md:gap-4 shrink-0 bg-surface/70">
|
||||
<div className="flex justify-between items-center">
|
||||
<div>
|
||||
@@ -650,9 +650,9 @@ export default function InventoryPage() {
|
||||
<Package className="text-primary" size={28} />
|
||||
Box Inventory
|
||||
</h3>
|
||||
<p className="text-sm text-muted font-normal mt-1">Manage physical box labels & printing</p>
|
||||
<p className="text-sm text-secondary font-normal mt-1">Manage physical box labels & printing</p>
|
||||
</div>
|
||||
<button onClick={() => { setShowBoxManager(false); setBoxSearchQuery(''); }} className="p-3 hover:bg-slate-800 rounded-full transition-colors text-secondary">
|
||||
<button onClick={() => { setShowBoxManager(false); setBoxSearchQuery(''); }} className="p-3 hover:bg-surface-container transition-colors text-secondary">
|
||||
<X size={24} />
|
||||
</button>
|
||||
</div>
|
||||
@@ -663,13 +663,13 @@ export default function InventoryPage() {
|
||||
placeholder="Search boxes..."
|
||||
value={boxSearchQuery}
|
||||
onChange={(e) => setBoxSearchQuery(e.target.value)}
|
||||
className="w-full bg-background border border-slate-800 rounded-2xl py-3.5 pl-11 pr-4 text-sm focus:border-primary outline-none transition-all placeholder:text-secondary"
|
||||
className="w-full bg-background border border-outline/30 py-3.5 pl-11 pr-4 text-sm focus:border-primary outline-none transition-all placeholder:text-secondary"
|
||||
/>
|
||||
<Search className="absolute left-4 top-1/2 -translate-y-1/2 text-secondary" size={18} />
|
||||
{boxSearchQuery && (
|
||||
<button
|
||||
onClick={() => setBoxSearchQuery('')}
|
||||
className="absolute right-3 top-1/2 -translate-y-1/2 p-1.5 hover:bg-slate-800 rounded-lg text-muted"
|
||||
className="absolute right-3 top-1/2 -translate-y-1/2 p-1.5 hover:bg-surface-container text-secondary"
|
||||
>
|
||||
<X size={14} />
|
||||
</button>
|
||||
@@ -689,21 +689,21 @@ export default function InventoryPage() {
|
||||
{getFilteredBoxes(existingBoxes).map(box => {
|
||||
const itemCount = inventory.filter(i => i.box_label === box).length;
|
||||
return (
|
||||
<div key={box} className="bg-background/50 border border-slate-800/60 p-3 md:p-4 rounded-3xl flex flex-col gap-2 md:gap-3 group hover:border-primary/40 transition-all">
|
||||
<div key={box} className="bg-background/50 border border-outline/30 p-3 md:p-4 flex flex-col gap-2 md:gap-3 group hover:border-primary/40 transition-all">
|
||||
<div className="flex-1 min-w-0">
|
||||
<h4 className="text-lg font-normal text-white truncate">{box}</h4>
|
||||
<p className="text-xs text-muted font-normal mt-0.5">{itemCount} items linked</p>
|
||||
<h4 className="text-lg font-normal text-foreground truncate">{box}</h4>
|
||||
<p className="text-xs text-secondary font-normal mt-0.5">{itemCount} items linked</p>
|
||||
</div>
|
||||
<div className="flex gap-2 shrink-0">
|
||||
<button
|
||||
onClick={() => setSelectedBoxLabel(box)}
|
||||
className="flex-1 py-3 bg-primary text-white text-xs font-normal rounded-xl flex items-center justify-center gap-2 hover:bg-blue-500 transition-colors shadow-lg shadow-primary/10 active:scale-95"
|
||||
className="flex-1 py-3 bg-primary text-primary-foreground text-xs font-normal flex items-center justify-center gap-2 hover:bg-primary/90 transition-colors shadow-lg shadow-primary/10 active:scale-95"
|
||||
>
|
||||
<Printer size={14} /> Print Label
|
||||
</button>
|
||||
<button
|
||||
onClick={() => { setSearchQuery(box); setShowBoxManager(false); setBoxSearchQuery(''); }}
|
||||
className="px-4 py-3 bg-surface border border-slate-800 text-secondary text-xs font-normal rounded-xl hover:bg-slate-800 active:scale-95"
|
||||
className="px-4 py-3 bg-surface border border-outline/30 text-secondary text-xs font-normal hover:bg-surface-container active:scale-95"
|
||||
>
|
||||
View
|
||||
</button>
|
||||
@@ -715,8 +715,8 @@ export default function InventoryPage() {
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="p-4 md:p-6 py-3 md:py-4 bg-background/50 border-t border-slate-800 text-center flex items-center justify-center gap-2">
|
||||
<div className="w-1 h-1 rounded-full bg-primary animate-pulse" />
|
||||
<div className="p-4 md:p-6 py-3 md:py-4 bg-background/50 border-t border-outline/30 text-center flex items-center justify-center gap-2">
|
||||
<div className="w-1 h-1 bg-primary animate-pulse" />
|
||||
<p className="text-xs text-secondary font-normal font-mono">TFM aInventory • Box management mode</p>
|
||||
</div>
|
||||
</div>
|
||||
@@ -728,7 +728,7 @@ export default function InventoryPage() {
|
||||
<div className="fixed inset-0 z-[60] flex items-center justify-center p-4 bg-black/95 animate-in zoom-in-95 duration-200">
|
||||
<div className="w-full max-w-md flex flex-col gap-3 md:gap-4">
|
||||
|
||||
<div id="print-label-area" className="w-full bg-white p-4 md:p-6 rounded-lg shadow-2xl flex flex-col items-center gap-3 md:gap-4">
|
||||
<div id="print-label-area" className="w-full bg-white p-4 md:p-6 shadow-2xl flex flex-col items-center gap-3 md:gap-4">
|
||||
<h2 className="text-2xl font-normal text-black tracking-tighter text-center">
|
||||
{selectedBoxLabel}
|
||||
</h2>
|
||||
@@ -743,7 +743,7 @@ export default function InventoryPage() {
|
||||
<div className="flex flex-col gap-2 md:gap-3 no-print">
|
||||
<button
|
||||
onClick={() => window.print()}
|
||||
className="w-full py-5 bg-primary text-white rounded-[2rem] font-normal text-lg flex items-center justify-center gap-3 shadow-2xl shadow-primary/40 active:scale-95 transition-all"
|
||||
className="w-full py-5 bg-primary text-primary-foreground ] font-normal text-lg flex items-center justify-center gap-3 shadow-2xl shadow-primary/40 active:scale-95 transition-all"
|
||||
>
|
||||
<Printer size={20} /> Print to Dymo/Brother
|
||||
</button>
|
||||
@@ -772,14 +772,14 @@ export default function InventoryPage() {
|
||||
img.src = "data:image/svg+xml;base64," + btoa(svgData);
|
||||
}
|
||||
}}
|
||||
className="w-full py-4 bg-surface border border-slate-800 text-white rounded-[2rem] font-normal text-sm flex items-center justify-center gap-2 active:scale-95 transition-all"
|
||||
className="w-full py-4 bg-surface border border-outline/30 text-foreground ] font-normal text-sm flex items-center justify-center gap-2 active:scale-95 transition-all"
|
||||
>
|
||||
<Download size={16} /> Save for Mobile App
|
||||
</button>
|
||||
|
||||
<button
|
||||
onClick={() => setSelectedBoxLabel(null)}
|
||||
className="w-full py-4 text-muted font-normal text-xs"
|
||||
className="w-full py-4 text-secondary font-normal text-xs"
|
||||
>
|
||||
Close Label Preview
|
||||
</button>
|
||||
@@ -828,3 +828,8 @@ export default function InventoryPage() {
|
||||
</PageShell>
|
||||
);
|
||||
}
|
||||
lose}
|
||||
/>
|
||||
</PageShell>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -110,18 +110,10 @@ export default function CreateItemPage() {
|
||||
|
||||
return (
|
||||
<div
|
||||
className={`flex items-center gap-2 text-xs font-normal ${
|
||||
isActive ? 'text-primary' : isCompleted ? 'text-slate-400' : 'text-slate-500'
|
||||
}`}
|
||||
className={`flex items-center gap-2 text-xs font-normal ${ isActive ? 'text-primary' : isCompleted ? 'text-secondary' : 'text-secondary' }`}
|
||||
>
|
||||
<div
|
||||
className={`w-6 h-6 rounded-full flex items-center justify-center ${
|
||||
isActive
|
||||
? 'bg-primary text-white'
|
||||
: isCompleted
|
||||
? 'bg-slate-400 text-white'
|
||||
: 'bg-slate-700'
|
||||
}`}
|
||||
className={`w-6 h-6 flex items-center justify-center ${ isActive ? 'bg-primary text-foreground' : isCompleted ? 'bg-surface-bright text-foreground' : 'bg-surface-bright' }`}
|
||||
>
|
||||
{stepNum}
|
||||
</div>
|
||||
@@ -131,24 +123,24 @@ export default function CreateItemPage() {
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="min-h-screen bg-slate-950 text-white p-4">
|
||||
<div className="min-h-screen bg-background text-foreground p-4">
|
||||
{/* Header */}
|
||||
<div className="max-w-2xl mx-auto mb-6">
|
||||
<button
|
||||
onClick={() => router.back()}
|
||||
className="flex items-center gap-2 text-sm text-slate-400 hover:text-white transition-colors mb-6"
|
||||
className="flex items-center gap-2 text-sm text-secondary hover:text-foreground transition-colors mb-6"
|
||||
>
|
||||
<ArrowLeft size={16} />
|
||||
Back
|
||||
</button>
|
||||
|
||||
<div className="flex items-center gap-4 mb-8">
|
||||
<div className="p-3 bg-primary/10 rounded-lg border border-primary/20">
|
||||
<div className="p-3 bg-primary/10 border border-primary/20">
|
||||
<Upload size={24} className="text-primary" />
|
||||
</div>
|
||||
<div>
|
||||
<h1 className="text-2xl font-normal">Create New Item</h1>
|
||||
<p className="text-xs text-slate-500 mt-1">
|
||||
<p className="text-xs text-secondary mt-1">
|
||||
Step {step === 'details' ? 1 : step === 'photo' ? 2 : step === 'preview' ? 3 : 4} of 4
|
||||
</p>
|
||||
</div>
|
||||
@@ -167,7 +159,7 @@ export default function CreateItemPage() {
|
||||
<div className="max-w-2xl mx-auto">
|
||||
{/* Details Step */}
|
||||
{step === 'details' && (
|
||||
<div className="bg-slate-900 rounded-lg border border-slate-800 p-6">
|
||||
<div className="bg-surface-container border border-outline/30 p-6">
|
||||
<h2 className="text-lg font-normal mb-6">Item Details</h2>
|
||||
|
||||
<div className="space-y-4">
|
||||
@@ -179,7 +171,7 @@ export default function CreateItemPage() {
|
||||
value={formData.name}
|
||||
onChange={(e) => setFormData({ name: e.target.value })}
|
||||
placeholder="Enter item name"
|
||||
className="w-full px-3 py-2 bg-slate-800 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:border-primary focus:outline-none"
|
||||
className="w-full px-3 py-2 bg-surface-container border border-outline-variant text-foreground placeholder-secondary focus:border-primary focus:outline-none"
|
||||
disabled={isLoading}
|
||||
/>
|
||||
</div>
|
||||
@@ -190,7 +182,7 @@ export default function CreateItemPage() {
|
||||
<select
|
||||
value={formData.category}
|
||||
onChange={(e) => setFormData({ category: e.target.value })}
|
||||
className="w-full px-3 py-2 bg-slate-800 border border-slate-700 rounded-lg text-white focus:border-primary focus:outline-none"
|
||||
className="w-full px-3 py-2 bg-surface-container border border-outline-variant text-foreground focus:border-primary focus:outline-none"
|
||||
disabled={isLoading}
|
||||
>
|
||||
<option value="">Select a category</option>
|
||||
@@ -210,7 +202,7 @@ export default function CreateItemPage() {
|
||||
value={formData.item_type}
|
||||
onChange={(e) => setFormData({ item_type: e.target.value })}
|
||||
placeholder="e.g., Component, Part, Equipment"
|
||||
className="w-full px-3 py-2 bg-slate-800 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:border-primary focus:outline-none"
|
||||
className="w-full px-3 py-2 bg-surface-container border border-outline-variant text-foreground placeholder-secondary focus:border-primary focus:outline-none"
|
||||
disabled={isLoading}
|
||||
/>
|
||||
</div>
|
||||
@@ -223,7 +215,7 @@ export default function CreateItemPage() {
|
||||
min="1"
|
||||
value={formData.quantity}
|
||||
onChange={(e) => setFormData({ quantity: parseInt(e.target.value) || 1 })}
|
||||
className="w-full px-3 py-2 bg-slate-800 border border-slate-700 rounded-lg text-white focus:border-primary focus:outline-none"
|
||||
className="w-full px-3 py-2 bg-surface-container border border-outline-variant text-foreground focus:border-primary focus:outline-none"
|
||||
disabled={isLoading}
|
||||
/>
|
||||
</div>
|
||||
@@ -236,7 +228,7 @@ export default function CreateItemPage() {
|
||||
value={formData.part_number || ''}
|
||||
onChange={(e) => setFormData({ part_number: e.target.value })}
|
||||
placeholder="e.g., PN-12345"
|
||||
className="w-full px-3 py-2 bg-slate-800 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:border-primary focus:outline-none"
|
||||
className="w-full px-3 py-2 bg-surface-container border border-outline-variant text-foreground placeholder-secondary focus:border-primary focus:outline-none"
|
||||
disabled={isLoading}
|
||||
/>
|
||||
</div>
|
||||
@@ -249,14 +241,14 @@ export default function CreateItemPage() {
|
||||
value={formData.barcode || ''}
|
||||
onChange={(e) => setFormData({ barcode: e.target.value })}
|
||||
placeholder="e.g., 1234567890"
|
||||
className="w-full px-3 py-2 bg-slate-800 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:border-primary focus:outline-none"
|
||||
className="w-full px-3 py-2 bg-surface-container border border-outline-variant text-foreground placeholder-secondary focus:border-primary focus:outline-none"
|
||||
disabled={isLoading}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Error Message */}
|
||||
{error && (
|
||||
<div className="p-3 bg-red-500/10 border border-red-500/30 rounded-lg text-red-400 text-sm">
|
||||
<div className="p-3 bg-error/10 border border-error/30 text-error text-sm">
|
||||
{error}
|
||||
</div>
|
||||
)}
|
||||
@@ -265,7 +257,7 @@ export default function CreateItemPage() {
|
||||
<div className="flex gap-3 pt-4">
|
||||
<button
|
||||
onClick={() => router.back()}
|
||||
className="flex-1 px-4 py-2 border border-slate-700 text-slate-300 rounded-lg hover:border-slate-600 transition-colors font-normal"
|
||||
className="flex-1 px-4 py-2 border border-outline-variant text-foreground hover:border-outline-variant transition-colors font-normal"
|
||||
disabled={isLoading}
|
||||
>
|
||||
Discard Draft
|
||||
@@ -273,7 +265,7 @@ export default function CreateItemPage() {
|
||||
<button
|
||||
onClick={handleDetailsSubmit}
|
||||
disabled={isLoading}
|
||||
className="flex-1 px-4 py-2 bg-primary text-white rounded-lg hover:bg-primary/90 transition-colors font-normal flex items-center justify-center gap-2"
|
||||
className="flex-1 px-4 py-2 bg-primary text-foreground hover:bg-primary/90 transition-colors font-normal flex items-center justify-center gap-2"
|
||||
>
|
||||
{isLoading ? <Loader2 size={16} className="animate-spin" /> : <ChevronRight size={16} />}
|
||||
{isLoading ? 'Creating...' : 'Next: Upload Photo'}
|
||||
@@ -285,9 +277,9 @@ export default function CreateItemPage() {
|
||||
|
||||
{/* Photo Upload Step */}
|
||||
{step === 'photo' && (
|
||||
<div className="bg-slate-900 rounded-lg border border-slate-800 p-6">
|
||||
<div className="bg-surface-container border border-outline/30 p-6">
|
||||
<h2 className="text-lg font-normal mb-4">Upload Item Photo</h2>
|
||||
<p className="text-sm text-slate-400 mb-6">
|
||||
<p className="text-sm text-secondary mb-6">
|
||||
Take a photo or upload an image. You can crop it manually on the next step.
|
||||
</p>
|
||||
|
||||
@@ -304,7 +296,7 @@ export default function CreateItemPage() {
|
||||
</div>
|
||||
|
||||
{photoError && (
|
||||
<div className="p-3 bg-red-500/10 border border-red-500/30 rounded-lg text-red-400 text-sm mb-6">
|
||||
<div className="p-3 bg-error/10 border border-error/30 text-error text-sm mb-6">
|
||||
{photoError}
|
||||
</div>
|
||||
)}
|
||||
@@ -313,14 +305,14 @@ export default function CreateItemPage() {
|
||||
<div className="flex gap-3">
|
||||
<button
|
||||
onClick={prevStep}
|
||||
className="flex-1 px-4 py-2 border border-slate-700 text-slate-300 rounded-lg hover:border-slate-600 transition-colors font-normal"
|
||||
className="flex-1 px-4 py-2 border border-outline-variant text-foreground hover:border-outline transition-colors font-normal"
|
||||
>
|
||||
Back
|
||||
</button>
|
||||
<button
|
||||
onClick={nextStep}
|
||||
disabled={!uploadedPhoto}
|
||||
className="flex-1 px-4 py-2 bg-primary text-white rounded-lg hover:bg-primary/90 disabled:bg-slate-700 disabled:text-slate-500 transition-colors font-normal flex items-center justify-center gap-2"
|
||||
className="flex-1 px-4 py-2 bg-primary text-primary-foreground hover:bg-primary/90 disabled:bg-surface-bright disabled:text-secondary transition-colors font-normal flex items-center justify-center gap-2"
|
||||
>
|
||||
<ChevronRight size={16} />
|
||||
Next: Crop & Preview
|
||||
@@ -331,13 +323,13 @@ export default function CreateItemPage() {
|
||||
|
||||
{/* Preview Step (Crop) */}
|
||||
{step === 'preview' && uploadedPhoto && (
|
||||
<div className="bg-slate-900 rounded-lg border border-slate-800 p-6">
|
||||
<div className="bg-surface-container border border-outline/30 p-6">
|
||||
<h2 className="text-lg font-normal mb-4">Crop & Preview</h2>
|
||||
<p className="text-sm text-slate-400 mb-6">
|
||||
<p className="text-sm text-secondary mb-6">
|
||||
Adjust the crop area or use the full photo. Manual crop handles are visible.
|
||||
</p>
|
||||
|
||||
<div className="mb-6 bg-slate-800 rounded-lg p-4">
|
||||
<div className="mb-6 bg-background p-4 border border-outline/20">
|
||||
<ManualCropUI
|
||||
imageUrl={uploadedPhoto.full_url}
|
||||
onCropChange={setCropBounds}
|
||||
@@ -346,7 +338,7 @@ export default function CreateItemPage() {
|
||||
</div>
|
||||
|
||||
{/* Use Full Photo Toggle */}
|
||||
<div className="flex items-center gap-3 mb-6 p-3 bg-slate-800 rounded-lg">
|
||||
<div className="flex items-center gap-3 mb-6 p-3 bg-surface-bright border border-outline/20">
|
||||
<input
|
||||
type="checkbox"
|
||||
id="use-full-photo"
|
||||
@@ -357,9 +349,9 @@ export default function CreateItemPage() {
|
||||
setCropBounds(null);
|
||||
}
|
||||
}}
|
||||
className="w-4 h-4 rounded border-slate-600 accent-primary"
|
||||
className="w-4 h-4 border-outline-variant accent-primary"
|
||||
/>
|
||||
<label htmlFor="use-full-photo" className="text-sm font-normal text-slate-300">
|
||||
<label htmlFor="use-full-photo" className="text-sm font-normal text-foreground">
|
||||
Use full photo (skip cropping)
|
||||
</label>
|
||||
</div>
|
||||
@@ -368,13 +360,13 @@ export default function CreateItemPage() {
|
||||
<div className="flex gap-3">
|
||||
<button
|
||||
onClick={prevStep}
|
||||
className="flex-1 px-4 py-2 border border-slate-700 text-slate-300 rounded-lg hover:border-slate-600 transition-colors font-normal"
|
||||
className="flex-1 px-4 py-2 border border-outline-variant text-foreground hover:border-outline transition-colors font-normal"
|
||||
>
|
||||
Back
|
||||
</button>
|
||||
<button
|
||||
onClick={nextStep}
|
||||
className="flex-1 px-4 py-2 bg-primary text-white rounded-lg hover:bg-primary/90 transition-colors font-normal flex items-center justify-center gap-2"
|
||||
className="flex-1 px-4 py-2 bg-primary text-primary-foreground hover:bg-primary/90 transition-colors font-normal flex items-center justify-center gap-2"
|
||||
>
|
||||
<ChevronRight size={16} />
|
||||
Next: Confirm
|
||||
@@ -385,31 +377,31 @@ export default function CreateItemPage() {
|
||||
|
||||
{/* Confirm Step */}
|
||||
{step === 'confirm' && (
|
||||
<div className="bg-slate-900 rounded-lg border border-slate-800 p-6">
|
||||
<div className="bg-surface-container border border-outline/30 p-6">
|
||||
<h2 className="text-lg font-normal mb-6">Confirm & Save</h2>
|
||||
|
||||
{/* Item Summary */}
|
||||
<div className="bg-slate-800 rounded-lg p-4 mb-6 space-y-2">
|
||||
<div className="bg-surface-bright p-4 mb-6 space-y-2 border border-outline/20">
|
||||
<div className="flex justify-between text-sm">
|
||||
<span className="text-slate-400">Name:</span>
|
||||
<span className="font-normal">{formData.name}</span>
|
||||
<span className="text-secondary">Name:</span>
|
||||
<span className="font-normal text-foreground">{formData.name}</span>
|
||||
</div>
|
||||
<div className="flex justify-between text-sm">
|
||||
<span className="text-slate-400">Category:</span>
|
||||
<span className="font-normal">{formData.category}</span>
|
||||
<span className="text-secondary">Category:</span>
|
||||
<span className="font-normal text-foreground">{formData.category}</span>
|
||||
</div>
|
||||
<div className="flex justify-between text-sm">
|
||||
<span className="text-slate-400">Type:</span>
|
||||
<span className="font-normal">{formData.item_type}</span>
|
||||
<span className="text-secondary">Type:</span>
|
||||
<span className="font-normal text-foreground">{formData.item_type}</span>
|
||||
</div>
|
||||
<div className="flex justify-between text-sm">
|
||||
<span className="text-slate-400">Quantity:</span>
|
||||
<span className="font-normal">{formData.quantity}</span>
|
||||
<span className="text-secondary">Quantity:</span>
|
||||
<span className="font-normal text-foreground">{formData.quantity}</span>
|
||||
</div>
|
||||
{uploadedPhoto && (
|
||||
<div className="flex justify-between text-sm">
|
||||
<span className="text-slate-400">Photo:</span>
|
||||
<span className="font-normal text-green-400">Uploaded</span>
|
||||
<span className="text-secondary">Photo:</span>
|
||||
<span className="font-normal text-success">Uploaded</span>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
@@ -417,12 +409,14 @@ export default function CreateItemPage() {
|
||||
{/* Photo Thumbnail */}
|
||||
{uploadedPhoto && (
|
||||
<div className="mb-6">
|
||||
<p className="text-sm text-slate-400 mb-2">Photo Preview</p>
|
||||
<img
|
||||
src={uploadedPhoto.thumbnail_url}
|
||||
alt="Item"
|
||||
className="w-full h-48 object-cover rounded-lg"
|
||||
/>
|
||||
<p className="text-sm text-secondary mb-2">Photo Preview</p>
|
||||
<div className="border border-outline/30 overflow-hidden">
|
||||
<img
|
||||
src={uploadedPhoto.thumbnail_url}
|
||||
alt="Item"
|
||||
className="w-full h-48 object-cover"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
@@ -430,13 +424,13 @@ export default function CreateItemPage() {
|
||||
<div className="flex gap-3">
|
||||
<button
|
||||
onClick={prevStep}
|
||||
className="flex-1 px-4 py-2 border border-slate-700 text-slate-300 rounded-lg hover:border-slate-600 transition-colors font-normal"
|
||||
className="flex-1 px-4 py-2 border border-outline-variant text-foreground hover:border-outline transition-colors font-normal"
|
||||
>
|
||||
Back
|
||||
</button>
|
||||
<button
|
||||
onClick={handleConfirm}
|
||||
className="flex-1 px-4 py-2 bg-green-600 text-white rounded-lg hover:bg-green-700 transition-colors font-normal flex items-center justify-center gap-2"
|
||||
className="flex-1 px-4 py-2 bg-success text-foreground hover:bg-success/80 transition-colors font-normal flex items-center justify-center gap-2 shadow-lg shadow-success/20"
|
||||
>
|
||||
Save & Close
|
||||
</button>
|
||||
|
||||
@@ -82,13 +82,13 @@ export default function LoginPage() {
|
||||
<div data-testid="identity-check-overlay" className="bg-background flex items-center justify-center p-4 md:min-h-screen">
|
||||
<Toaster position="top-center" />
|
||||
|
||||
<div className="bg-surface border border-slate-800 rounded-3xl p-4 md:p-6 max-w-sm w-full shadow-2xl space-y-3 md:space-y-4 animate-in fade-in zoom-in duration-500">
|
||||
<div className="bg-surface border border-outline/30 p-4 md:p-6 max-w-sm w-full shadow-2xl space-y-3 md:space-y-4 animate-in fade-in zoom-in duration-500">
|
||||
<div className="text-center space-y-2">
|
||||
<div className="w-16 h-16 bg-primary/10 text-primary rounded-2xl flex items-center justify-center mx-auto mb-4 border border-primary/20">
|
||||
<div className="w-16 h-16 bg-primary/10 text-primary flex items-center justify-center mx-auto mb-4 border border-primary/20">
|
||||
<User size={32} />
|
||||
</div>
|
||||
<h2 className="text-2xl font-normal text-white tracking-tight">Identity Check</h2>
|
||||
<p className="text-muted text-sm">Select operator profile or use direct login</p>
|
||||
<h2 className="text-2xl font-normal text-foreground tracking-tight">Identity Check</h2>
|
||||
<p className="text-secondary text-sm">Select operator profile or use direct login</p>
|
||||
</div>
|
||||
|
||||
<div data-testid="user-list" className="grid gap-2 md:gap-3">
|
||||
@@ -101,15 +101,15 @@ export default function LoginPage() {
|
||||
key={user.id}
|
||||
data-testid="user-list-item"
|
||||
onClick={() => handleSelectUser(user)}
|
||||
className="bg-slate-800/50 hover:bg-slate-800 border border-slate-800 hover:border-primary/40 p-4 rounded-2xl text-left transition-all group flex items-center justify-between"
|
||||
className="bg-surface-container/50 hover:bg-surface-container border border-outline/30 hover:border-primary/40 p-4 text-left transition-all group flex items-center justify-between"
|
||||
>
|
||||
<div className="flex items-center gap-3">
|
||||
<div className="w-8 h-8 rounded-full bg-surface border border-slate-700 flex items-center justify-center text-muted group-hover:text-primary transition-colors">
|
||||
<div className="w-8 h-8 bg-surface border border-outline-variant flex items-center justify-center text-secondary group-hover:text-primary transition-colors">
|
||||
{user.role === 'admin' ? <Shield size={14} /> : <User size={14} />}
|
||||
</div>
|
||||
<div>
|
||||
<p className="text-white font-normal text-sm">{user.username}</p>
|
||||
<p className="text-xs text-muted font-normal mt-1">{user.role}</p>
|
||||
<p className="text-foreground font-normal text-sm">{user.username}</p>
|
||||
<p className="text-xs text-secondary font-normal mt-1">{user.role}</p>
|
||||
</div>
|
||||
</div>
|
||||
<ChevronRight size={16} className="text-secondary group-hover:text-primary transition-colors" />
|
||||
@@ -117,7 +117,7 @@ export default function LoginPage() {
|
||||
))}
|
||||
</>
|
||||
) : (
|
||||
<div className="text-center p-4 text-muted text-xs font-normal animate-pulse">
|
||||
<div className="text-center p-4 text-secondary text-xs font-normal animate-pulse">
|
||||
Connectivity issues? Use manual login below.
|
||||
</div>
|
||||
)}
|
||||
@@ -126,7 +126,7 @@ export default function LoginPage() {
|
||||
<button
|
||||
data-testid="ldap-login-tab"
|
||||
onClick={() => setIsEnterprise(true)}
|
||||
className="flex items-center justify-center gap-2 py-4 rounded-2xl border border-dashed border-slate-700 text-muted hover:text-white hover:border-slate-500 transition-all font-normal text-xs"
|
||||
className="flex items-center justify-center gap-2 py-4 border border-dashed border-outline-variant text-secondary hover:text-foreground hover:border-outline/30 transition-all font-normal text-xs"
|
||||
>
|
||||
<Lock size={12} />
|
||||
Enterprise
|
||||
@@ -137,7 +137,7 @@ export default function LoginPage() {
|
||||
setSelectedUserForLogin({ username: '' });
|
||||
// We use an empty username object to trigger the manual input view
|
||||
}}
|
||||
className="flex items-center justify-center gap-2 py-4 rounded-2xl border border-primary/20 bg-primary/5 text-primary hover:bg-primary/10 transition-all font-normal text-xs"
|
||||
className="flex items-center justify-center gap-2 py-4 border border-primary/20 bg-primary/5 text-primary hover:bg-primary/10 transition-all font-normal text-xs"
|
||||
>
|
||||
<User size={12} />
|
||||
Manual Login
|
||||
@@ -147,7 +147,7 @@ export default function LoginPage() {
|
||||
) : isEnterprise ? (
|
||||
<div className="space-y-4 animate-in slide-in-from-right-4 duration-300">
|
||||
<div className="flex justify-between items-center px-1">
|
||||
<p className="text-xs font-normal text-muted">Enterprise Account</p>
|
||||
<p className="text-xs font-normal text-secondary">Enterprise Account</p>
|
||||
<button
|
||||
onClick={() => setIsEnterprise(false)}
|
||||
className="text-xs font-normal text-primary hover:underline"
|
||||
@@ -157,30 +157,30 @@ export default function LoginPage() {
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<label className="text-xs font-normal text-muted px-1">Username</label>
|
||||
<label className="text-xs font-normal text-secondary px-1">Username</label>
|
||||
<div className="relative">
|
||||
<User className="absolute left-4 top-1/2 -translate-y-1/2 text-muted" size={16} />
|
||||
<User className="absolute left-4 top-1/2 -translate-y-1/2 text-secondary" size={16} />
|
||||
<input
|
||||
ref={enterpriseUserRef}
|
||||
data-testid="username-input"
|
||||
type="text"
|
||||
autoFocus
|
||||
className="w-full bg-slate-800/50 border border-slate-800 focus:border-primary rounded-2xl py-4 pl-12 pr-4 text-white focus:outline-none transition-all placeholder:text-slate-700 font-mono"
|
||||
className="w-full bg-surface-container/50 border border-outline/30 focus:border-primary py-4 pl-12 pr-4 text-foreground focus:outline-none transition-all placeholder:text-surface-bright font-mono"
|
||||
placeholder="e.g. jsmith"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<label className="text-xs font-normal text-muted px-1">Password</label>
|
||||
<label className="text-xs font-normal text-secondary px-1">Password</label>
|
||||
<div className="relative">
|
||||
<Lock className="absolute left-4 top-1/2 -translate-y-1/2 text-muted" size={16} />
|
||||
<Lock className="absolute left-4 top-1/2 -translate-y-1/2 text-secondary" size={16} />
|
||||
<input
|
||||
ref={enterprisePassRef}
|
||||
data-testid="password-input"
|
||||
type="password"
|
||||
onKeyDown={(e) => e.key === 'Enter' && handleLogin()}
|
||||
className="w-full bg-slate-800/50 border border-slate-800 focus:border-primary rounded-2xl py-4 pl-12 pr-4 text-white/50 focus:text-white focus:outline-none transition-all placeholder:text-slate-700 font-mono"
|
||||
className="w-full bg-surface-container/50 border border-outline/30 focus:border-primary py-4 pl-12 pr-4 text-foreground/50 focus:text-foreground focus:outline-none transition-all placeholder:text-surface-bright font-mono"
|
||||
placeholder="Enter password"
|
||||
/>
|
||||
</div>
|
||||
@@ -189,52 +189,52 @@ export default function LoginPage() {
|
||||
<button
|
||||
data-testid="login-submit"
|
||||
onClick={handleLogin}
|
||||
className="w-full bg-primary text-white font-normal py-4 rounded-2xl shadow-xl shadow-primary/20 active:scale-95 transition-all"
|
||||
className="w-full bg-primary text-foreground font-normal py-4 shadow-xl shadow-primary/20 active:scale-95 transition-all"
|
||||
>
|
||||
Sign In
|
||||
</button>
|
||||
</div>
|
||||
) : (
|
||||
<div className="space-y-4 animate-in slide-in-from-right-4 duration-300">
|
||||
<div className="bg-slate-800/30 p-4 rounded-2xl border border-slate-800 flex items-center gap-3">
|
||||
<div className="bg-surface-container/30 p-4 border border-outline/30 flex items-center gap-3">
|
||||
<button
|
||||
onClick={() => setSelectedUserForLogin(null)}
|
||||
className="p-1 hover:bg-slate-700 rounded-lg transition-colors"
|
||||
className="p-1 hover:bg-surface-bright transition-colors"
|
||||
>
|
||||
<X size={16} className="text-secondary" />
|
||||
</button>
|
||||
<div>
|
||||
<p className="text-sm font-normal text-muted">Logging in as</p>
|
||||
<p className="text-white font-normal">{selectedUserForLogin.username || "Manual Input"}</p>
|
||||
<p className="text-sm font-normal text-secondary">Logging in as</p>
|
||||
<p className="text-foreground font-normal">{selectedUserForLogin.username || "Manual Input"}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<label className="text-xs font-normal text-muted px-1">Username</label>
|
||||
<label className="text-xs font-normal text-secondary px-1">Username</label>
|
||||
<div className="relative">
|
||||
<User className="absolute left-4 top-1/2 -translate-y-1/2 text-muted" size={16} />
|
||||
<User className="absolute left-4 top-1/2 -translate-y-1/2 text-secondary" size={16} />
|
||||
<input
|
||||
type="text"
|
||||
autoFocus
|
||||
value={selectedUserForLogin.username || ""}
|
||||
onChange={(e) => setSelectedUserForLogin({...selectedUserForLogin, username: e.target.value})}
|
||||
className="w-full bg-slate-800/50 border border-slate-800 focus:border-primary rounded-2xl py-4 pl-12 pr-4 text-white focus:outline-none transition-all placeholder:text-slate-700 font-mono"
|
||||
className="w-full bg-surface-container/50 border border-outline/30 focus:border-primary py-4 pl-12 pr-4 text-foreground focus:outline-none transition-all placeholder:text-surface-bright font-mono"
|
||||
placeholder="Admin"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<label className="text-xs font-normal text-muted px-1">Password</label>
|
||||
<label className="text-xs font-normal text-secondary px-1">Password</label>
|
||||
<div className="relative">
|
||||
<Lock className="absolute left-4 top-1/2 -translate-y-1/2 text-muted" size={16} />
|
||||
<Lock className="absolute left-4 top-1/2 -translate-y-1/2 text-secondary" size={16} />
|
||||
<input
|
||||
ref={localPassRef}
|
||||
data-testid="local-password-input"
|
||||
type="password"
|
||||
autoFocus={!!selectedUserForLogin.username}
|
||||
onKeyDown={(e) => e.key === 'Enter' && handleLogin()}
|
||||
className="w-full bg-slate-800/50 border border-slate-800 focus:border-primary rounded-2xl py-4 pl-12 pr-4 text-white/50 focus:text-white focus:outline-none transition-all placeholder:text-slate-700 font-mono"
|
||||
className="w-full bg-surface-container/50 border border-outline/30 focus:border-primary py-4 pl-12 pr-4 text-foreground/50 focus:text-foreground focus:outline-none transition-all placeholder:text-surface-bright font-mono"
|
||||
placeholder="Enter password"
|
||||
/>
|
||||
</div>
|
||||
@@ -243,7 +243,7 @@ export default function LoginPage() {
|
||||
<button
|
||||
data-testid="local-login-submit"
|
||||
onClick={handleLogin}
|
||||
className="w-full bg-primary text-white font-normal py-4 rounded-2xl shadow-xl shadow-primary/20 active:scale-95 transition-all"
|
||||
className="w-full bg-primary text-foreground font-normal py-4 shadow-xl shadow-primary/20 active:scale-95 transition-all"
|
||||
>
|
||||
Verify Identity
|
||||
</button>
|
||||
@@ -253,7 +253,7 @@ export default function LoginPage() {
|
||||
|
||||
{/* Progress bar hint */}
|
||||
{users.length === 0 && !selectedUserForLogin && !isEnterprise && (
|
||||
<div className="w-full bg-slate-800 h-1 rounded-full overflow-hidden">
|
||||
<div className="w-full bg-surface-container h-1 overflow-hidden">
|
||||
<div className="bg-primary h-full animate-progress-fast shadow-[0_0_8px_rgba(var(--primary-rgb),0.5)]"></div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
@@ -87,15 +87,15 @@ export default function LogsPage() {
|
||||
|
||||
return (
|
||||
<PageShell>
|
||||
<main className="p-3 md:p-8 max-w-7xl mx-auto space-y-3 md:space-y-6 mb-20">
|
||||
<main className="p-4 md:p-8 max-w-7xl mx-auto space-y-4 md:space-y-6 mb-20">
|
||||
<header className="flex flex-col sm:flex-row sm:items-end justify-between gap-3 md:gap-4">
|
||||
<div className="flex items-center gap-4">
|
||||
<div className="p-3 md:p-4 bg-primary/10 rounded-2xl text-primary border border-primary/20 shadow-xl shadow-primary/5">
|
||||
<History size={28} className="md:w-8 md:h-8" />
|
||||
<div className="p-4 bg-primary/10 text-primary border border-primary/20 shadow-xl shadow-primary/5">
|
||||
<History size={32} />
|
||||
</div>
|
||||
<div>
|
||||
<h1 className="text-2xl md:text-3xl font-normal tracking-tight text-white leading-tight">Operations Audit</h1>
|
||||
<p className="text-xs md:text-sm text-secondary font-normal tracking-widest mt-0.5">Real-time Intervention Tracking</p>
|
||||
<h1 className="text-2xl md:text-3xl font-normal tracking-tight text-foreground leading-tight">Operations Audit</h1>
|
||||
<p className="text-xs md:text-sm text-secondary font-normal mt-0.5">Real-time Intervention Tracking</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -103,7 +103,7 @@ export default function LogsPage() {
|
||||
<button
|
||||
onClick={loadData}
|
||||
disabled={loading}
|
||||
className="flex items-center gap-2 px-5 py-2.5 bg-surface border border-slate-800 text-secondary hover:text-white rounded-2xl text-xs font-normal transition-all active:scale-95 disabled:opacity-50 shadow-xl"
|
||||
className="flex items-center gap-2 px-5 py-2.5 bg-surface border border-outline/30 text-secondary hover:text-foreground text-xs font-normal transition-all active:scale-95 disabled:opacity-50 shadow-xl"
|
||||
>
|
||||
<RefreshCw size={14} className={cn(loading && "animate-spin")} />
|
||||
Sync Logs
|
||||
@@ -142,7 +142,7 @@ export default function LogsPage() {
|
||||
placeholder="Filter by user, action or asset..."
|
||||
value={searchQuery}
|
||||
onChange={(e) => setSearchQuery(e.target.value)}
|
||||
className="w-full bg-surface/50 border border-slate-800 rounded-2xl py-3.5 pr-4 pl-12 text-sm focus:border-primary outline-none transition-all placeholder:text-secondary shadow-2xl"
|
||||
className="w-full bg-surface/50 border border-outline/30 py-3.5 pr-4 pl-12 text-sm focus:border-primary outline-none transition-all placeholder:text-secondary shadow-2xl"
|
||||
/>
|
||||
<div className="absolute left-4 top-1/2 -translate-y-1/2 text-secondary transition-colors group-focus-within:text-primary">
|
||||
<Search size={18} />
|
||||
@@ -153,10 +153,10 @@ export default function LogsPage() {
|
||||
<button
|
||||
onClick={() => setFilterAction('ALL')}
|
||||
className={cn(
|
||||
"px-5 py-2 rounded-full text-xs font-normal transition-all whitespace-nowrap border tracking-widest",
|
||||
"px-5 py-2 text-xs font-normal transition-all whitespace-nowrap border ",
|
||||
filterAction === 'ALL'
|
||||
? "bg-white text-slate-950 border-white shadow-xl shadow-white/10"
|
||||
: "bg-surface/70 text-secondary border-slate-800 hover:border-slate-700"
|
||||
? "bg-white text-background border-white shadow-xl shadow-white/10"
|
||||
: "bg-surface/70 text-secondary border-outline/30 hover:border-outline-variant"
|
||||
)}
|
||||
>
|
||||
All Streams
|
||||
@@ -166,10 +166,10 @@ export default function LogsPage() {
|
||||
key={f}
|
||||
onClick={() => setFilterAction(f)}
|
||||
className={cn(
|
||||
"px-5 py-2 rounded-full text-xs font-normal transition-all whitespace-nowrap border tracking-widest",
|
||||
"px-5 py-2 text-xs font-normal transition-all whitespace-nowrap border ",
|
||||
filterAction === f
|
||||
? "bg-primary text-white border-primary shadow-xl shadow-primary/10"
|
||||
: "bg-surface/70 text-secondary border-slate-800 hover:border-slate-700"
|
||||
? "bg-primary text-foreground border-primary shadow-xl shadow-primary/10"
|
||||
: "bg-surface/70 text-secondary border-outline/30 hover:border-outline-variant"
|
||||
)}
|
||||
>
|
||||
{f}
|
||||
|
||||
@@ -360,7 +360,7 @@ export default function Home() {
|
||||
|
||||
return (
|
||||
<PageShell>
|
||||
<div className="p-3 md:p-8 overflow-x-hidden w-full max-w-7xl mx-auto">
|
||||
<div className="p-4 md:p-8 overflow-x-hidden w-full max-w-7xl mx-auto">
|
||||
{/* Search datalists for autocomplete */}
|
||||
<datalist id="existing-types">
|
||||
{existingTypes.map(t => <option key={t} value={t} />)}
|
||||
@@ -370,34 +370,30 @@ export default function Home() {
|
||||
</datalist>
|
||||
|
||||
{/* Header */}
|
||||
<header className="flex flex-col sm:flex-row justify-between sm:items-center gap-3 md:gap-4 mb-3 md:mb-4 w-full px-1">
|
||||
<div className="flex items-center gap-2 md:gap-3">
|
||||
<div className="p-1">
|
||||
<img
|
||||
src="/logo.png"
|
||||
alt="TFM aInventory"
|
||||
className="h-8 md:h-10 object-contain drop-shadow-xl rounded-lg"
|
||||
/>
|
||||
<header className="flex flex-col sm:flex-row justify-between sm:items-center gap-4 mb-4 md:mb-6 w-full">
|
||||
<div className="flex items-center gap-4">
|
||||
<div className="p-4 bg-primary/10 border border-primary/20 shadow-xl shadow-primary/5">
|
||||
<Package size={32} className="text-primary" />
|
||||
</div>
|
||||
<div>
|
||||
<h1 className="text-2xl md:text-3xl font-normal tracking-tight text-white leading-tight">TFM aInventory</h1>
|
||||
<p className="text-xs md:text-sm text-secondary font-normal tracking-tight mt-1 leading-relaxed">Check-in, Check-out & Trash Operations</p>
|
||||
<h1 className="text-2xl md:text-3xl font-normal tracking-tight text-foreground leading-tight">TFM aInventory</h1>
|
||||
<p className="text-xs md:text-sm text-secondary font-normal tracking-tight mt-1 leading-relaxed">Check-in, Check-out & Trash Operations</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex flex-wrap items-center justify-between sm:justify-end gap-2 md:gap-3 bg-surface/50 sm:bg-transparent px-3 py-2 sm:p-0 rounded-2xl border border-slate-800/50 sm:border-none">
|
||||
<div className="flex flex-wrap items-center justify-between sm:justify-end gap-2 md:gap-3 bg-surface/50 sm:bg-transparent px-3 py-2 sm:p-0 border border-outline/30/50 sm:border-none">
|
||||
<div className="flex flex-wrap items-center gap-2 md:gap-3">
|
||||
{isScannerReady && (
|
||||
<div className="flex items-center gap-2">
|
||||
<div className="w-1.5 h-1.5 rounded-full bg-green-500 shadow-[0_0_8px_rgba(34,197,94,0.6)]" />
|
||||
<span className="text-xs font-normal text-green-500/90 whitespace-nowrap">
|
||||
<div className="w-1.5 h-1.5 bg-success shadow-[0_0_8px_rgba(34,197,94,0.6)]" />
|
||||
<span className="text-xs font-normal text-success/90 whitespace-nowrap">
|
||||
Scanner: OK
|
||||
</span>
|
||||
</div>
|
||||
)}
|
||||
<div className="flex items-center gap-2" data-testid={!isOnline ? "offline-indicator" : undefined}>
|
||||
<div className={`w-1.5 h-1.5 rounded-full ${isOnline ? 'bg-green-500 animate-pulse shadow-[0_0_8px_rgba(34,197,94,0.6)]' : 'bg-rose-500 shadow-[0_0_8px_rgba(244,63,94,0.6)]'}`} />
|
||||
<span className={`text-xs font-normal whitespace-nowrap ${isOnline ? 'text-green-500/90' : 'text-rose-500/90'}`} data-testid={!isOnline ? "offline-sync-indicator" : undefined}>
|
||||
<div className={`w-1.5 h-1.5 ${isOnline ? 'bg-success animate-pulse shadow-[0_0_8px_rgba(34,197,94,0.6)]' : 'bg-error shadow-[0_0_8px_rgba(244,63,94,0.6)]'}`} />
|
||||
<span className={`text-xs font-normal whitespace-nowrap ${isOnline ? 'text-success/90' : 'text-error/90'}`} data-testid={!isOnline ? "offline-sync-indicator" : undefined}>
|
||||
Sync: {isOnline ? 'Active' : 'Offline'}
|
||||
</span>
|
||||
</div>
|
||||
@@ -405,7 +401,7 @@ export default function Home() {
|
||||
<div className="flex items-center gap-2">
|
||||
<button
|
||||
onClick={() => setShowSearch(true)}
|
||||
className="p-2.5 bg-surface border border-slate-800 text-secondary rounded-xl hover:text-white transition-all active:scale-95"
|
||||
className="p-2.5 bg-surface border border-outline/30 text-secondary hover:text-foreground transition-all active:scale-95"
|
||||
title="Search (Ctrl+K)"
|
||||
>
|
||||
<Search size={18} />
|
||||
@@ -414,7 +410,7 @@ export default function Home() {
|
||||
onClick={handleSync}
|
||||
disabled={syncing}
|
||||
data-testid="manual-sync-button"
|
||||
className="p-2.5 bg-surface border border-slate-800 text-secondary rounded-xl hover:text-white transition-all active:scale-95 disabled:opacity-50"
|
||||
className="p-2.5 bg-surface border border-outline/30 text-secondary hover:text-foreground transition-all active:scale-95 disabled:opacity-50"
|
||||
>
|
||||
<RefreshCw size={18} className={syncing ? "animate-spin text-primary" : ""} />
|
||||
</button>
|
||||
@@ -498,7 +494,7 @@ export default function Home() {
|
||||
{/* Box Contents Selection Modal */}
|
||||
{boxMatches.length > 0 && !selectedItem && (
|
||||
<div className="fixed inset-0 z-50 flex items-end sm:items-center justify-center p-4 bg-background/80 animate-in fade-in duration-200">
|
||||
<div className="w-full max-w-lg bg-surface border border-slate-800 rounded-[2.5rem] shadow-2xl p-4 md:p-6 overflow-hidden animate-in slide-in-from-bottom-10 duration-300 flex flex-col max-h-[85vh]">
|
||||
<div className="w-full max-w-lg bg-surface border border-outline/30 ] shadow-2xl p-4 md:p-6 overflow-hidden animate-in slide-in-from-bottom-10 duration-300 flex flex-col max-h-[85vh]">
|
||||
<div className="flex justify-between items-center mb-3 md:mb-4 shrink-0">
|
||||
<div>
|
||||
<h3 className="text-xl font-normal tracking-tight flex items-center gap-2">
|
||||
@@ -507,7 +503,7 @@ export default function Home() {
|
||||
</h3>
|
||||
<p className="text-xs text-secondary font-normal mt-1">Select the item you want to {mode.replace('_', ' ').toLowerCase()}</p>
|
||||
</div>
|
||||
<button onClick={() => setBoxMatches([])} className="p-2 hover:bg-slate-800 rounded-full">
|
||||
<button onClick={() => setBoxMatches([])} className="p-2 hover:bg-surface-container">
|
||||
<X size={20} />
|
||||
</button>
|
||||
</div>
|
||||
@@ -520,10 +516,10 @@ export default function Home() {
|
||||
setBoxMatches([]);
|
||||
setAdjustType(mode === 'CHECK_IN' ? 'ADD' : 'REMOVE');
|
||||
}}
|
||||
className="w-full text-left bg-background/50 hover:bg-slate-800 border border-slate-800/80 p-3 md:p-4 rounded-2xl flex items-center gap-2 md:gap-3 transition-all active:scale-[0.98] group"
|
||||
className="w-full text-left bg-background/50 hover:bg-surface-container border border-outline/50 p-3 md:p-4 flex items-center gap-2 md:gap-3 transition-all active:scale-[0.98] group"
|
||||
>
|
||||
<div className="flex-1 min-w-0">
|
||||
<p className="text-sm font-normal text-white">{item.name}</p>
|
||||
<p className="text-sm font-normal text-foreground">{item.name}</p>
|
||||
<p className="text-xs text-secondary font-normal mt-1">Part #: {item.part_number || 'N/A'}</p>
|
||||
</div>
|
||||
<ChevronRight size={18} className="text-secondary group-hover:text-primary" />
|
||||
@@ -538,7 +534,7 @@ export default function Home() {
|
||||
{/* Footer Branding */}
|
||||
<footer className="mt-12 md:mt-20 mb-4 md:mb-8 flex flex-col items-center gap-2 opacity-70">
|
||||
<p className="text-sm font-normal text-secondary">Powered by TFM Group Software</p>
|
||||
<div className="h-px w-16 bg-slate-700/60" />
|
||||
<div className="h-px w-16 bg-outline/30" />
|
||||
<p className="text-xs font-mono text-secondary">v{versionData.version} • {versionData.last_build} • BUILD: dev-{(versionData as any).commit || 'N/A'}</p>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user