2025-10-11 19:23:47 +03:00
|
|
|
|
template(name="migrationProgress")
|
|
|
|
|
|
.migration-overlay(class="{{#if isMigrating}}active{{/if}}")
|
|
|
|
|
|
.migration-modal
|
|
|
|
|
|
.migration-header
|
|
|
|
|
|
h3
|
2025-10-17 02:19:43 +03:00
|
|
|
|
| 🗄️
|
2025-10-11 19:23:47 +03:00
|
|
|
|
| {{_ 'database-migration'}}
|
|
|
|
|
|
p {{_ 'database-migration-description'}}
|
|
|
|
|
|
|
|
|
|
|
|
.migration-content
|
|
|
|
|
|
.migration-overview
|
|
|
|
|
|
.overall-progress
|
|
|
|
|
|
.progress-bar
|
|
|
|
|
|
.progress-fill(style="width: {{migrationProgress}}%")
|
|
|
|
|
|
.progress-text {{migrationProgress}}%
|
|
|
|
|
|
.progress-label {{_ 'overall-progress'}}
|
|
|
|
|
|
|
|
|
|
|
|
.current-step
|
2025-10-17 02:19:43 +03:00
|
|
|
|
| ⚙️
|
2025-10-11 19:23:47 +03:00
|
|
|
|
| {{migrationCurrentStep}}
|
|
|
|
|
|
|
|
|
|
|
|
.estimated-time(style="{{#unless migrationEstimatedTime}}display: none;{{/unless}}")
|
2025-10-17 02:19:43 +03:00
|
|
|
|
| ⏰
|
2025-10-11 19:23:47 +03:00
|
|
|
|
| {{_ 'estimated-time-remaining'}}: {{migrationEstimatedTime}}
|
|
|
|
|
|
|
|
|
|
|
|
.migration-steps
|
|
|
|
|
|
h4 {{_ 'migration-steps'}}
|
|
|
|
|
|
.steps-list
|
|
|
|
|
|
each migrationSteps
|
|
|
|
|
|
.migration-step(class="{{#if completed}}completed{{/if}}" class="{{#if isCurrentStep}}current{{/if}}")
|
|
|
|
|
|
.step-header
|
|
|
|
|
|
.step-icon
|
|
|
|
|
|
if completed
|
2025-10-17 02:19:43 +03:00
|
|
|
|
| ✅
|
2025-10-11 19:23:47 +03:00
|
|
|
|
else if isCurrentStep
|
2025-10-17 02:19:43 +03:00
|
|
|
|
| ⚙️
|
2025-10-11 19:23:47 +03:00
|
|
|
|
else
|
2025-10-17 02:19:43 +03:00
|
|
|
|
| ⭕
|
2025-10-11 19:23:47 +03:00
|
|
|
|
.step-info
|
|
|
|
|
|
.step-name {{name}}
|
|
|
|
|
|
.step-description {{description}}
|
|
|
|
|
|
.step-progress
|
|
|
|
|
|
if completed
|
|
|
|
|
|
.progress-text 100%
|
|
|
|
|
|
else if isCurrentStep
|
|
|
|
|
|
.progress-text {{progress}}%
|
|
|
|
|
|
else
|
|
|
|
|
|
.progress-text 0%
|
|
|
|
|
|
if isCurrentStep
|
|
|
|
|
|
.step-progress-bar
|
|
|
|
|
|
.progress-fill(style="width: {{progress}}%")
|
|
|
|
|
|
|
|
|
|
|
|
.migration-status
|
2025-10-17 02:19:43 +03:00
|
|
|
|
| ℹ️
|
2025-10-11 19:23:47 +03:00
|
|
|
|
| {{migrationStatus}}
|
|
|
|
|
|
|
|
|
|
|
|
.migration-footer
|
|
|
|
|
|
.migration-info
|
2025-10-17 02:19:43 +03:00
|
|
|
|
| 💡
|
2025-10-11 19:23:47 +03:00
|
|
|
|
| {{_ 'migration-info-text'}}
|
|
|
|
|
|
.migration-warning
|
2025-10-17 02:19:43 +03:00
|
|
|
|
| ⚠️
|
2025-10-11 19:23:47 +03:00
|
|
|
|
| {{_ 'migration-warning-text'}}
|