Backup #987
| ID | 987 |
| Dateipfad | /var/www/dev.campus.systemische-tools.de/src/View/content/partials/generating.php |
| Version | 1 |
| Typ |
modified |
| Größe | 1.4 KB |
| Hash | 19d15277f9b2afc56fd4b5b6643e33d3406155e3a0b1c52f84917623f04ea1aa |
| Datum | 2025-12-24 00:41:48 |
| Geändert von | claude-code-hook |
| Grund | Claude Code Pre-Hook Backup vor Write-Operation |
| Datei existiert |
Ja
|
Dateiinhalt
<?php
/**
* Generating Progress Partial (HTMX Polling)
*
* @var int $orderId Order ID for polling
*/
?>
<div class="generating-container"
hx-get="/content/<?= $orderId ?>/generation-status"
hx-trigger="load delay:1s"
hx-swap="outerHTML">
<div class="generating-spinner">
<span class="generating-dot"></span>
<span class="generating-dot"></span>
<span class="generating-dot"></span>
</div>
<span class="generating-text">Content wird generiert...</span>
</div>
<style>
.generating-container {
display: flex;
align-items: center;
gap: var(--space-sm);
padding: var(--space-md);
background: var(--color-bg-muted);
border-radius: 8px;
margin: var(--space-md) 0;
}
.generating-spinner {
display: inline-flex;
gap: 4px;
}
.generating-dot {
width: 8px;
height: 8px;
background: var(--color-primary);
border-radius: 50%;
animation: generating-bounce 1.4s infinite ease-in-out both;
}
.generating-dot:nth-child(1) { animation-delay: -0.32s; }
.generating-dot:nth-child(2) { animation-delay: -0.16s; }
.generating-dot:nth-child(3) { animation-delay: 0s; }
@keyframes generating-bounce {
0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
40% { transform: scale(1); opacity: 1; }
}
.generating-text {
color: var(--color-text-muted);
font-size: 0.9rem;
}
</style>
Vollständig herunterladen
Aktionen
Andere Versionen dieser Datei
| ID |
Version |
Typ |
Größe |
Datum |
| 1012 |
2 |
modified |
2.6 KB |
2025-12-24 01:26 |
| 987 |
1 |
modified |
1.4 KB |
2025-12-24 00:41 |
← Zurück zur Übersicht