- Import real data from PDF (35 Bambu Lab filaments) - Remove all Confluence integration and dependencies - Implement new V2 data structure with proper inventory tracking - Add backwards compatibility for existing data - Create enhanced UI components (ColorSwatch, InventoryBadge, MaterialBadge) - Add advanced filtering with quick filters and multi-criteria search - Organize codebase for dev/prod environments - Update Lambda functions to support both V1/V2 formats - Add inventory summary dashboard - Clean up project structure and documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
136 lines
4.6 KiB
TypeScript
136 lines
4.6 KiB
TypeScript
'use client'
|
|
|
|
import { useState, useEffect } from 'react';
|
|
import { FilamentTable } from '../src/components/FilamentTable';
|
|
import { FilamentTableV2 } from '../src/components/FilamentTableV2';
|
|
import { Filament } from '../src/types/filament';
|
|
import axios from 'axios';
|
|
|
|
export default function Home() {
|
|
const [filaments, setFilaments] = useState<Filament[]>([]);
|
|
const [loading, setLoading] = useState(true);
|
|
const [error, setError] = useState<string | null>(null);
|
|
const [lastUpdate, setLastUpdate] = useState<Date | null>(null);
|
|
const [darkMode, setDarkMode] = useState(false);
|
|
const [mounted, setMounted] = useState(false);
|
|
const [useV2, setUseV2] = useState(true); // Default to new UI
|
|
|
|
// Initialize dark mode from localStorage after mounting
|
|
useEffect(() => {
|
|
setMounted(true);
|
|
const saved = localStorage.getItem('darkMode');
|
|
if (saved) {
|
|
setDarkMode(JSON.parse(saved));
|
|
}
|
|
}, []);
|
|
|
|
// Update dark mode
|
|
useEffect(() => {
|
|
if (!mounted) return;
|
|
|
|
localStorage.setItem('darkMode', JSON.stringify(darkMode));
|
|
if (darkMode) {
|
|
document.documentElement.classList.add('dark');
|
|
} else {
|
|
document.documentElement.classList.remove('dark');
|
|
}
|
|
}, [darkMode, mounted]);
|
|
|
|
const fetchFilaments = async () => {
|
|
try {
|
|
setLoading(true);
|
|
setError(null);
|
|
|
|
const apiUrl = process.env.NEXT_PUBLIC_API_URL;
|
|
if (!apiUrl) {
|
|
throw new Error('API URL not configured');
|
|
}
|
|
const url = `${apiUrl}/filaments`;
|
|
const headers = useV2 ? { 'X-Accept-Format': 'v2' } : {};
|
|
const response = await axios.get(url, { headers });
|
|
setFilaments(response.data);
|
|
setLastUpdate(new Date());
|
|
} catch (err) {
|
|
console.error('API Error:', err);
|
|
if (axios.isAxiosError(err)) {
|
|
setError(`API Error: ${err.response?.status || 'Network'} - ${err.message}`);
|
|
} else {
|
|
setError(err instanceof Error ? err.message : 'Greška pri učitavanju filamenata');
|
|
}
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
fetchFilaments();
|
|
|
|
// Refresh every 5 minutes
|
|
const interval = setInterval(fetchFilaments, 5 * 60 * 1000);
|
|
|
|
return () => clearInterval(interval);
|
|
}, []);
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gray-50 dark:bg-gray-900 transition-colors">
|
|
<header className="bg-white dark:bg-gray-800 shadow transition-colors">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-6">
|
|
<div className="flex justify-between items-center">
|
|
<h1 className="text-3xl font-bold text-gray-900 dark:text-white">
|
|
Filamenteka
|
|
</h1>
|
|
<div className="flex items-center gap-4">
|
|
{lastUpdate && (
|
|
<span className="text-sm text-gray-500 dark:text-gray-400">
|
|
Poslednje ažuriranje: {lastUpdate.toLocaleTimeString('sr-RS')}
|
|
</span>
|
|
)}
|
|
<button
|
|
onClick={fetchFilaments}
|
|
disabled={loading}
|
|
className="px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600 disabled:opacity-50"
|
|
>
|
|
{loading ? 'Ažuriranje...' : 'Osveži'}
|
|
</button>
|
|
{mounted && (
|
|
<>
|
|
<button
|
|
onClick={() => setUseV2(!useV2)}
|
|
className="px-4 py-2 bg-blue-200 dark:bg-blue-700 text-blue-800 dark:text-blue-200 rounded hover:bg-blue-300 dark:hover:bg-blue-600 transition-colors"
|
|
title={useV2 ? 'Stari prikaz' : 'Novi prikaz'}
|
|
>
|
|
{useV2 ? 'V2' : 'V1'}
|
|
</button>
|
|
<button
|
|
onClick={() => setDarkMode(!darkMode)}
|
|
className="px-4 py-2 bg-gray-200 dark:bg-gray-700 text-gray-800 dark:text-gray-200 rounded hover:bg-gray-300 dark:hover:bg-gray-600 transition-colors"
|
|
title={darkMode ? 'Svetla tema' : 'Tamna tema'}
|
|
>
|
|
{darkMode ? '☀️' : '🌙'}
|
|
</button>
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
|
{useV2 ? (
|
|
<FilamentTableV2
|
|
filaments={filaments}
|
|
loading={loading}
|
|
error={error || undefined}
|
|
/>
|
|
) : (
|
|
<FilamentTable
|
|
filaments={filaments}
|
|
loading={loading}
|
|
error={error || undefined}
|
|
/>
|
|
)}
|
|
</main>
|
|
|
|
</div>
|
|
);
|
|
} |