"Update dependencies and templates for improved stability"

This commit is contained in:
Till Tomczak 2025-05-29 16:58:12 +02:00
parent 2f46df90fd
commit d55a3d7bb0
4 changed files with 509 additions and 14 deletions

View File

@ -9,6 +9,7 @@
"version": "3.0.0",
"license": "UNLICENSED",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"vite": "^6.3.5"
@ -432,6 +433,15 @@
"node": ">=18"
}
},
"node_modules/@fortawesome/fontawesome-free": {
"version": "6.7.2",
"resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-6.7.2.tgz",
"integrity": "sha512-JUOtgFW6k9u4Y+xeIaEiLr3+cjoUPiAuLXoyKOJSia6Duzb7pq+A76P9ZdPDoAoxHdHzq6gE9/jKBGXlZT8FbA==",
"license": "(CC-BY-4.0 AND OFL-1.1 AND MIT)",
"engines": {
"node": ">=6"
}
},
"node_modules/@isaacs/cliui": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",

View File

@ -27,6 +27,7 @@
"tailwindcss": "^3.4.17"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"vite": "^6.3.5"

View File

@ -468,15 +468,15 @@
</div>
<h3 class="text-2xl font-bold text-mercedes-black dark:text-white mb-4">Intelligente Druckersteuerung</h3>
<p class="text-mercedes-gray dark:text-slate-400 leading-relaxed">
Vollautomatische Verwaltung und Überwachung aller 3D-Drucker mit Echtzeit-Status,
prädiktiver Wartung und KI-gestützter Optimierung für maximale Effizienz.
Vollautomatische Verwaltung und Überwachung aller 3D-Drucker mit Echtzeit-Status
und optimierter Ressourcenverteilung für maximale Effizienz und Qualität.
</p>
<div class="mt-6 flex justify-center">
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-300">
<svg class="w-4 h-4 mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/>
</svg>
KI-Unterstützt
Automatisiert
</span>
</div>
</div>
@ -490,8 +490,8 @@
</div>
<h3 class="text-2xl font-bold text-mercedes-black dark:text-white mb-4">Präzise Auftragsplanung</h3>
<p class="text-mercedes-gray dark:text-slate-400 leading-relaxed">
Optimierte Produktionsplanung mit Mercedes-Benz Standards für termingerechte und qualitätsorientierte Fertigung.
Automatische Materialoptimierung und Ressourcenallokation.
Strukturierte Produktionsplanung mit Mercedes-Benz Standards für termingerechte und qualitätsorientierte Fertigung.
Effiziente Ressourcenplanung und Druckerwarteschlangen-Management.
</p>
<div class="mt-6 flex justify-center">
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-300">

View File

@ -2,30 +2,514 @@
{% block title %}Druckaufträge - Mercedes-Benz MYP Platform{% endblock %}
{% block extra_css %}
<style>
/* Mercedes-Benz Corporate Design */
.text-mercedes-black { color: #000000; }
.text-mercedes-gray { color: #6b7280; }
.text-mercedes-silver { color: #9ca3af; }
.text-mercedes-blue { color: #0073ce; }
.text-mercedes-green { color: #008c32; }
.text-mercedes-red { color: #dc2626; }
.bg-mercedes-black { background-color: #000000; }
.bg-mercedes-silver { background-color: #e5e7eb; }
.bg-mercedes-blue { background-color: #0073ce; }
.bg-mercedes-green { background-color: #008c32; }
.border-mercedes-silver { border-color: #d1d5db; }
.border-mercedes-blue { border-color: #0073ce; }
.hover\:border-mercedes-blue:hover { border-color: #0073ce; }
.focus\:ring-mercedes-blue:focus {
--tw-ring-color: #0073ce;
--tw-ring-opacity: 0.5;
}
.focus\:border-mercedes-blue:focus { border-color: #0073ce; }
/* Enhanced Job Cards */
.job-card {
background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
border: 1px solid #e2e8f0;
box-shadow:
0 4px 6px -1px rgba(0, 0, 0, 0.1),
0 2px 4px -1px rgba(0, 0, 0, 0.06);
border-radius: 16px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.dark .job-card {
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
border-color: #334155;
box-shadow:
0 4px 6px -1px rgba(0, 0, 0, 0.3),
0 2px 4px -1px rgba(0, 0, 0, 0.2);
}
.job-card:hover {
transform: translateY(-4px);
box-shadow:
0 20px 25px -5px rgba(0, 0, 0, 0.1),
0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.dark .job-card:hover {
box-shadow:
0 20px 25px -5px rgba(0, 0, 0, 0.3),
0 10px 10px -5px rgba(0, 0, 0, 0.2);
}
/* Job Status Indicators */
.status-running {
background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
border-left: 4px solid #3b82f6;
color: #1d4ed8;
}
.status-queued {
background: linear-gradient(90deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
border-left: 4px solid #f59e0b;
color: #d97706;
}
.status-completed {
background: linear-gradient(90deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
border-left: 4px solid #10b981;
color: #059669;
}
.status-failed {
background: linear-gradient(90deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
border-left: 4px solid #ef4444;
color: #dc2626;
}
.status-paused {
background: linear-gradient(90deg, rgba(107, 114, 128, 0.1) 0%, rgba(75, 85, 99, 0.05) 100%);
border-left: 4px solid #6b7280;
color: #4b5563;
}
/* Progress Bars */
.progress-container {
background: #f3f4f6;
height: 8px;
border-radius: 4px;
overflow: hidden;
position: relative;
}
.dark .progress-container {
background: #374151;
}
.progress-bar {
background: linear-gradient(90deg, #0073ce 0%, #1e40af 100%);
height: 100%;
border-radius: 4px;
transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.dark .progress-bar {
background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
}
.progress-bar::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
animation: progress-shine 2s infinite;
}
@keyframes progress-shine {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
/* Enhanced Filters */
.filter-section {
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
border: 1px solid #e2e8f0;
border-radius: 12px;
padding: 1.5rem;
transition: all 0.3s ease;
}
.dark .filter-section {
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
border-color: #334155;
}
.filter-section:hover {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
/* Enhanced Form Elements */
.mercedes-form-input {
transition: all 0.2s ease;
border: 1px solid #d1d5db;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
}
.mercedes-form-input:focus {
border-color: #0073ce;
box-shadow:
0 0 0 3px rgba(0, 115, 206, 0.1),
0 4px 6px -1px rgba(0, 0, 0, 0.1);
transform: translateY(-1px);
background: rgba(255, 255, 255, 1);
}
.dark .mercedes-form-input {
background: rgba(30, 41, 59, 0.8);
border-color: #475569;
color: #f8fafc;
}
.dark .mercedes-form-input:focus {
border-color: #0ea5e9;
box-shadow:
0 0 0 3px rgba(14, 165, 233, 0.1),
0 4px 6px -1px rgba(0, 0, 0, 0.3);
background: rgba(30, 41, 59, 1);
}
/* Enhanced File Upload */
.file-upload-area {
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
border: 2px dashed #cbd5e1;
border-radius: 12px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.dark .file-upload-area {
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
border-color: #475569;
}
.file-upload-area:hover {
border-color: #0073ce;
background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
transform: scale(1.02);
}
.dark .file-upload-area:hover {
background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}
.file-upload-area.drag-over {
border-color: #0073ce;
background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(0, 115, 206, 0.15);
}
.dark .file-upload-area.drag-over {
background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}
/* Job Actions Buttons */
.job-action-btn {
padding: 0.375rem 0.75rem;
border-radius: 8px;
font-weight: 500;
font-size: 0.875rem;
transition: all 0.2s ease;
display: inline-flex;
align-items: center;
gap: 0.375rem;
}
.job-action-btn:hover {
transform: translateY(-1px);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.job-action-start {
background: #16a34a;
color: white;
}
.job-action-pause {
background: #f59e0b;
color: white;
}
.job-action-stop {
background: #ef4444;
color: white;
}
.job-action-delete {
background: #dc2626;
color: white;
}
.job-action-view {
background: #0073ce;
color: white;
}
/* Enhanced Modals */
.mercedes-modal {
background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
border: 1px solid #e2e8f0;
box-shadow:
0 25px 50px -12px rgba(0, 0, 0, 0.25),
0 4px 6px -1px rgba(0, 0, 0, 0.1);
border-radius: 16px;
backdrop-filter: blur(10px);
}
.dark .mercedes-modal {
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
border-color: #334155;
box-shadow:
0 25px 50px -12px rgba(0, 0, 0, 0.5),
0 4px 6px -1px rgba(0, 0, 0, 0.3);
}
/* Loading States */
.loading-skeleton {
background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
background-size: 200% 100%;
animation: loading 2s infinite;
border-radius: 8px;
}
.dark .loading-skeleton {
background: linear-gradient(90deg, #374151 25%, #4b5563 50%, #374151 75%);
background-size: 200% 100%;
}
@keyframes loading {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}
/* Real-time Status Updates */
.status-pulse {
animation: pulse-status 2s infinite;
}
@keyframes pulse-status {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
/* Success Animations */
.success-checkmark {
animation: checkmark 0.6s ease-in-out;
}
@keyframes checkmark {
0% {
transform: scale(0);
opacity: 0;
}
50% {
transform: scale(1.2);
opacity: 1;
}
100% {
transform: scale(1);
opacity: 1;
}
}
/* Responsive Design */
@media (max-width: 768px) {
.job-card {
margin: 0 0.5rem;
}
.filter-section {
padding: 1rem;
}
.job-action-btn {
font-size: 0.75rem;
padding: 0.25rem 0.5rem;
}
}
/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
/* Focus States */
.job-card:focus-within {
outline: 2px solid #0073ce;
outline-offset: 2px;
}
.job-action-btn:focus {
outline: 2px solid #0073ce;
outline-offset: 2px;
}
</style>
{% endblock %}
{% block content %}
<div class="space-y-8">
<!-- Page Header -->
<!-- Enhanced Page Header -->
<div class="dashboard-card p-6">
<div class="flex flex-col md:flex-row md:items-center md:justify-between gap-6">
<div class="flex items-center gap-4">
<div class="w-12 h-12 flex-shrink-0">
<svg class="w-full h-full text-slate-900 dark:text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<div class="flex items-center gap-6">
<div class="w-16 h-16 flex-shrink-0 bg-mercedes-blue text-white rounded-xl flex items-center justify-center">
<svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01"/>
</svg>
</div>
<div>
<h1 class="text-3xl font-bold text-slate-900 dark:text-white tracking-tight">Druckaufträge</h1>
<p class="text-slate-500 dark:text-slate-400 mt-1">Verwalten Sie Ihre 3D-Druckjobs mit höchster Präzision</p>
</div>
<div>
<h1 class="text-4xl font-bold text-mercedes-black dark:text-white tracking-tight">Druckaufträge</h1>
<p class="text-mercedes-gray dark:text-slate-400 mt-1 text-lg">Verwalten Sie Ihre 3D-Druckjobs mit höchster Präzision</p>
<div class="flex items-center mt-2 text-sm text-mercedes-blue">
<svg class="w-4 h-4 mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/>
</svg>
Live-Updates alle 30 Sekunden
</div>
</div>
</div>
<div class="flex flex-wrap gap-3">
<button onclick="refreshJobs()"
<button onclick="refreshJobs()" id="refresh-button"
class="btn-secondary flex items-center gap-2">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"/>
</svg>
<span>Aktualisieren</span>
</button>
<button onclick="toggleBatchMode()" id="batch-toggle"
class="btn-secondary flex items-center gap-2">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
<span>Mehrfachauswahl</span>
</button>
<a href="{{ url_for('new_job_page') if url_for else '/jobs/new' }}"
class="btn-primary flex items-center gap-2">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
</svg>
<span>Neuer Auftrag</span>
</a>
</div>
</div>
</div>
<!-- Enhanced Filter and Search Section -->
<div class="filter-section">
<div class="grid grid-cols-1 lg:grid-cols-4 gap-6">
<!-- Search -->
<div>
<label for="search-input" class="block text-sm font-medium text-mercedes-black dark:text-slate-300 mb-2">
<svg class="w-4 h-4 inline mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"/>
</svg>
Suchen
</label>
<input type="text" id="search-input" placeholder="Job-Name, ID oder Beschreibung..."
class="mercedes-form-input block w-full px-4 py-3 rounded-lg">
</div>
<!-- Status Filter -->
<div>
<label for="status-filter" class="block text-sm font-medium text-mercedes-black dark:text-slate-300 mb-2">
<svg class="w-4 h-4 inline mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 4a1 1 0 011-1h16a1 1 0 011 1v2.586a1 1 0 01-.293.707l-6.414 6.414a1 1 0 00-.293.707V17l-4 4v-6.586a1 1 0 00-.293-.707L3.293 7.414A1 1 0 013 6.707V4z"/>
</svg>
Status
</label>
<select id="status-filter" class="mercedes-form-input block w-full px-4 py-3 rounded-lg">
<option value="">Alle Status</option>
<option value="running">Läuft</option>
<option value="queued">Warteschlange</option>
<option value="completed">Abgeschlossen</option>
<option value="failed">Fehlgeschlagen</option>
<option value="paused">Pausiert</option>
</select>
</div>
<!-- Printer Filter -->
<div>
<label for="printer-filter" class="block text-sm font-medium text-mercedes-black dark:text-slate-300 mb-2">
<svg class="w-4 h-4 inline mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 17h2a2 2 0 002-2v-4a2 2 0 00-2-2H5a2 2 0 00-2 2v4a2 2 0 002 2h2m2 4h6a2 2 0 002-2v-4a2 2 0 00-2-2H9a2 2 0 00-2 2v4a2 2 0 002 2zm8-12V5a2 2 0 00-2-2H9a2 2 0 00-2 2v4h10z"/>
</svg>
Drucker
</label>
<select id="printer-filter" class="mercedes-form-input block w-full px-4 py-3 rounded-lg">
<option value="">Alle Drucker</option>
<!-- Wird dynamisch gefüllt -->
</select>
</div>
<!-- Date Range -->
<div>
<label for="date-filter" class="block text-sm font-medium text-mercedes-black dark:text-slate-300 mb-2">
<svg class="w-4 h-4 inline mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"/>
</svg>
Zeitraum
</label>
<select id="date-filter" class="mercedes-form-input block w-full px-4 py-3 rounded-lg">
<option value="">Alle Zeiten</option>
<option value="today">Heute</option>
<option value="week">Diese Woche</option>
<option value="month">Dieser Monat</option>
<option value="custom">Benutzerdefiniert</option>
</select>
</div>
</div>
<!-- Advanced Filter Options -->
<div class="mt-4 flex flex-wrap items-center justify-between gap-4">
<div class="flex flex-wrap gap-2">
<button onclick="clearFilters()" class="text-sm text-mercedes-blue hover:text-blue-700 transition-colors">
<svg class="w-4 h-4 inline mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"/>
</svg>
Filter zurücksetzen
</button>
<span class="text-sm text-mercedes-gray dark:text-slate-400">|</span>
<button onclick="toggleAdvancedFilters()" class="text-sm text-mercedes-blue hover:text-blue-700 transition-colors">
<svg class="w-4 h-4 inline mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6V4m0 2a2 2 0 100 4m0-4a2 2 0 110 4m-6 8a2 2 0 100-4m0 4a2 2 0 100 4m0-4v2m0-6V4m6 6v10m6-2a2 2 0 100-4m0 4a2 2 0 100 4m0-4v2m0-6V4"/>
</svg>
Erweiterte Filter
</button>
</div>
<div class="flex items-center gap-4">
<div class="text-sm text-mercedes-gray dark:text-slate-400">
<span id="results-count">0</span> Aufträge gefunden
</div>
<div class="flex items-center gap-2">
<label for="sort-by" class="text-sm text-mercedes-gray dark:text-slate-400">Sortieren:</label>
<select id="sort-by" class="text-sm border border-mercedes-silver rounded px-2 py-1">
<option value="created_desc">Neueste zuerst</option>
<option value="created_asc">Älteste zuerst</option>
<option value="status">Status</option>
<option value="printer">Drucker</option>
<option value="progress">Fortschritt</option>
</select>
</div>
</div>
</div>
</div>