59 lines
1.1 KiB
Svelte
59 lines
1.1 KiB
Svelte
|
|
<script lang="ts">
|
||
|
|
interface Props {
|
||
|
|
visible?: boolean;
|
||
|
|
percent?: number;
|
||
|
|
stage?: string;
|
||
|
|
message?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
let { visible = false, percent = 0, stage = '', message = '' }: Props = $props();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
{#if visible}
|
||
|
|
<div class="overlay">
|
||
|
|
<div class="progress-card">
|
||
|
|
<h3>{stage}</h3>
|
||
|
|
<div class="bar-track">
|
||
|
|
<div class="bar-fill" style="width: {percent}%"></div>
|
||
|
|
</div>
|
||
|
|
<p>{percent}% — {message}</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
{/if}
|
||
|
|
|
||
|
|
<style>
|
||
|
|
.overlay {
|
||
|
|
position: fixed;
|
||
|
|
inset: 0;
|
||
|
|
background: rgba(0, 0, 0, 0.7);
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
z-index: 1000;
|
||
|
|
}
|
||
|
|
.progress-card {
|
||
|
|
background: #16213e;
|
||
|
|
padding: 2rem;
|
||
|
|
border-radius: 12px;
|
||
|
|
min-width: 400px;
|
||
|
|
color: #e0e0e0;
|
||
|
|
}
|
||
|
|
h3 { margin: 0 0 1rem; text-transform: capitalize; }
|
||
|
|
.bar-track {
|
||
|
|
height: 8px;
|
||
|
|
background: #0f3460;
|
||
|
|
border-radius: 4px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.bar-fill {
|
||
|
|
height: 100%;
|
||
|
|
background: #e94560;
|
||
|
|
transition: width 0.3s;
|
||
|
|
}
|
||
|
|
p {
|
||
|
|
margin: 0.5rem 0 0;
|
||
|
|
font-size: 0.875rem;
|
||
|
|
color: #999;
|
||
|
|
}
|
||
|
|
</style>
|