ADD new frontend

This commit is contained in:
Urtzi Alfaro
2025-08-28 10:41:04 +02:00
parent 9c247a5f99
commit 0fd273cfce
492 changed files with 114979 additions and 1632 deletions

View File

@@ -0,0 +1,114 @@
{
"name": "Bakery AI - Gestión Inteligente para Panaderías",
"short_name": "Bakery AI",
"description": "Plataforma inteligente de gestión para panaderías con predicción de demanda impulsada por IA",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#f97316",
"orientation": "any",
"categories": ["business", "productivity", "food"],
"lang": "es",
"dir": "ltr",
"icons": [
{
"src": "/icons/icon-72.png",
"sizes": "72x72",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icons/icon-96.png",
"sizes": "96x96",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icons/icon-128.png",
"sizes": "128x128",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icons/icon-144.png",
"sizes": "144x144",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icons/icon-152.png",
"sizes": "152x152",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icons/icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icons/icon-384.png",
"sizes": "384x384",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icons/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icons/icon-maskable.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"screenshots": [
{
"src": "/screenshots/dashboard.png",
"sizes": "1280x720",
"type": "image/png",
"label": "Panel de Control Principal"
},
{
"src": "/screenshots/inventory.png",
"sizes": "1280x720",
"type": "image/png",
"label": "Gestión de Inventario"
},
{
"src": "/screenshots/forecasting.png",
"sizes": "1280x720",
"type": "image/png",
"label": "Predicción de Demanda con IA"
}
],
"shortcuts": [
{
"name": "Panel de Control",
"short_name": "Dashboard",
"description": "Ver panel de control principal",
"url": "/app/dashboard",
"icons": [{ "src": "/icons/dashboard-96.png", "sizes": "96x96" }]
},
{
"name": "Inventario",
"short_name": "Inventario",
"description": "Gestionar inventario",
"url": "/app/operations/inventory",
"icons": [{ "src": "/icons/inventory-96.png", "sizes": "96x96" }]
},
{
"name": "Predicciones",
"short_name": "Predicciones",
"description": "Ver predicciones de demanda",
"url": "/app/analytics/forecasting",
"icons": [{ "src": "/icons/forecast-96.png", "sizes": "96x96" }]
}
],
"related_applications": [],
"prefer_related_applications": false
}

123
frontend/public/sw.js Normal file
View File

@@ -0,0 +1,123 @@
const CACHE_NAME = 'bakery-ai-v2.0.0';
const urlsToCache = [
'/',
'/index.html',
'/manifest.json',
'/icons/icon-192.png',
'/icons/icon-512.png',
];
// Install event - cache assets
self.addEventListener('install', (event) => {
event.waitUntil(
caches.open(CACHE_NAME).then((cache) => {
console.log('Opened cache');
return cache.addAll(urlsToCache);
})
);
self.skipWaiting();
});
// Activate event - clean up old caches
self.addEventListener('activate', (event) => {
event.waitUntil(
caches.keys().then((cacheNames) => {
return Promise.all(
cacheNames
.filter((cacheName) => cacheName !== CACHE_NAME)
.map((cacheName) => caches.delete(cacheName))
);
})
);
self.clients.claim();
});
// Fetch event - serve from cache, fallback to network
self.addEventListener('fetch', (event) => {
// Skip cross-origin requests
if (!event.request.url.startsWith(self.location.origin)) {
return;
}
// API calls - network first, cache fallback
if (event.request.url.includes('/api/')) {
event.respondWith(
fetch(event.request)
.then((response) => {
// Clone the response before caching
const responseToCache = response.clone();
caches.open(CACHE_NAME).then((cache) => {
cache.put(event.request, responseToCache);
});
return response;
})
.catch(() => {
return caches.match(event.request);
})
);
return;
}
// Static assets - cache first, network fallback
event.respondWith(
caches.match(event.request).then((response) => {
return response || fetch(event.request);
})
);
});
// Background sync for offline actions
self.addEventListener('sync', (event) => {
if (event.tag === 'sync-inventory') {
event.waitUntil(syncInventoryData());
}
});
// Push notifications
self.addEventListener('push', (event) => {
const options = {
body: event.data ? event.data.text() : 'Nueva notificación de Bakery AI',
icon: '/icons/icon-192.png',
badge: '/icons/badge-72.png',
vibrate: [100, 50, 100],
data: {
dateOfArrival: Date.now(),
primaryKey: 1,
},
};
event.waitUntil(
self.registration.showNotification('Bakery AI', options)
);
});
// Notification click handler
self.addEventListener('notificationclick', (event) => {
event.notification.close();
event.waitUntil(
clients.openWindow('/')
);
});
// Helper function for background sync
async function syncInventoryData() {
try {
const cache = await caches.open(CACHE_NAME);
const requests = await cache.keys();
const pendingRequests = requests.filter(
req => req.url.includes('/api/') && req.method === 'POST'
);
for (const request of pendingRequests) {
try {
await fetch(request);
await cache.delete(request);
} catch (error) {
console.error('Failed to sync:', error);
}
}
} catch (error) {
console.error('Sync failed:', error);
}
}