The loading overlay's position has been updated to account for a new layout change. This ensures that the overlay is displayed correctly below the app title bar, improving the user experience during loading. - Adjusted overlay position to maintain consistency with layout changes
219 lines
5.9 KiB
Svelte
219 lines
5.9 KiB
Svelte
<script lang="ts">
|
|
import iconUrl from "../../../src-tauri/icons/icon.png";
|
|
|
|
export let label = "Opening repository";
|
|
export let repoName = "";
|
|
</script>
|
|
|
|
<div class="repo-loading" role="status" aria-live="polite">
|
|
<div class="repo-loading-grid" aria-hidden="true"></div>
|
|
<div class="repo-loading-card">
|
|
<div class="repo-loading-mark">
|
|
<span class="repo-loading-halo halo-one"></span>
|
|
<span class="repo-loading-halo halo-two"></span>
|
|
<svg class="repo-loading-traces" viewBox="0 0 220 220" aria-hidden="true">
|
|
<path class="trace trace-main" d="M28 154 C72 114, 88 108, 110 110 S156 116, 192 68" />
|
|
<path class="trace trace-branch" d="M62 74 C100 88, 126 124, 158 166" />
|
|
<path class="trace trace-cut" d="M46 180 L174 180" />
|
|
</svg>
|
|
<img src={iconUrl} alt="" class="repo-loading-icon" />
|
|
</div>
|
|
|
|
<div class="repo-loading-text">
|
|
<span class="repo-loading-label">{label}…</span>
|
|
{#if repoName}
|
|
<span class="repo-loading-name" title={repoName}>{repoName}</span>
|
|
{/if}
|
|
</div>
|
|
|
|
<div class="repo-loading-bar"><span></span></div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.repo-loading {
|
|
position: fixed;
|
|
top: calc(var(--app-titlebar-height, 42px) + 56px);
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 400;
|
|
display: grid;
|
|
place-items: center;
|
|
overflow: hidden;
|
|
background:
|
|
radial-gradient(circle at 50% 42%, rgba(137, 92, 255, 0.18), transparent 34%),
|
|
linear-gradient(135deg, #050712 0%, #080b16 46%, #120b18 100%);
|
|
animation: overlay-in 180ms ease;
|
|
}
|
|
|
|
.repo-loading-grid {
|
|
position: absolute;
|
|
inset: 0;
|
|
opacity: 0.28;
|
|
background-image:
|
|
linear-gradient(rgba(151, 118, 255, 0.12) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(255, 109, 38, 0.08) 1px, transparent 1px);
|
|
background-size: 42px 42px;
|
|
mask-image: radial-gradient(circle at center, black 0%, transparent 68%);
|
|
animation: grid-drift 10s linear infinite;
|
|
}
|
|
|
|
.repo-loading-card {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 18px;
|
|
width: min(420px, calc(100vw - 42px));
|
|
padding: 30px 34px 28px;
|
|
border: 1px solid rgba(160, 124, 255, 0.24);
|
|
border-radius: 16px;
|
|
background:
|
|
linear-gradient(180deg, rgba(23, 26, 43, 0.9), rgba(12, 15, 27, 0.92)),
|
|
var(--color-surface-raised);
|
|
box-shadow:
|
|
0 26px 90px rgba(0, 0, 0, 0.62),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.repo-loading-mark {
|
|
position: relative;
|
|
width: 168px;
|
|
height: 168px;
|
|
display: grid;
|
|
place-items: center;
|
|
isolation: isolate;
|
|
}
|
|
|
|
.repo-loading-halo {
|
|
position: absolute;
|
|
inset: 10px;
|
|
border: 1px solid rgba(151, 118, 255, 0.24);
|
|
border-radius: 34px;
|
|
transform: rotate(45deg);
|
|
}
|
|
.repo-loading-halo.halo-one {
|
|
animation: halo-breathe 2.4s ease-in-out infinite;
|
|
}
|
|
.repo-loading-halo.halo-two {
|
|
inset: 24px;
|
|
border-color: rgba(255, 109, 38, 0.26);
|
|
animation: halo-breathe 2.4s ease-in-out infinite reverse;
|
|
}
|
|
|
|
.repo-loading-traces {
|
|
position: absolute;
|
|
inset: -18px;
|
|
width: 204px;
|
|
height: 204px;
|
|
overflow: visible;
|
|
z-index: 0;
|
|
}
|
|
.repo-loading-traces .trace {
|
|
fill: none;
|
|
stroke-width: 3;
|
|
stroke-linecap: round;
|
|
stroke-dasharray: 165;
|
|
stroke-dashoffset: 165;
|
|
filter: drop-shadow(0 0 8px rgba(151, 118, 255, 0.55));
|
|
animation: trace-draw 2.6s ease-in-out infinite;
|
|
}
|
|
.repo-loading-traces .trace-main {
|
|
stroke: #9b70ff;
|
|
}
|
|
.repo-loading-traces .trace-branch {
|
|
stroke: #ff6d26;
|
|
animation-delay: 0.28s;
|
|
}
|
|
.repo-loading-traces .trace-cut {
|
|
stroke: rgba(255, 255, 255, 0.42);
|
|
stroke-dasharray: 128;
|
|
stroke-dashoffset: 128;
|
|
animation-delay: 0.55s;
|
|
}
|
|
|
|
.repo-loading-icon {
|
|
position: relative;
|
|
z-index: 1;
|
|
width: 132px;
|
|
height: 132px;
|
|
object-fit: contain;
|
|
filter:
|
|
drop-shadow(0 18px 24px rgba(0, 0, 0, 0.55))
|
|
drop-shadow(0 0 18px rgba(151, 118, 255, 0.28));
|
|
animation: icon-float 2.4s ease-in-out infinite;
|
|
}
|
|
|
|
.repo-loading-text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 4px;
|
|
text-align: center;
|
|
}
|
|
|
|
.repo-loading-label {
|
|
color: var(--color-ink);
|
|
font-size: 15px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.repo-loading-name {
|
|
max-width: 260px;
|
|
overflow: hidden;
|
|
color: var(--color-ink-faint);
|
|
font-family: var(--font-mono);
|
|
font-size: 12.5px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.repo-loading-bar {
|
|
position: relative;
|
|
width: min(230px, 100%);
|
|
height: 4px;
|
|
overflow: hidden;
|
|
border-radius: 999px;
|
|
background: rgba(151, 118, 255, 0.14);
|
|
}
|
|
.repo-loading-bar span {
|
|
position: absolute;
|
|
inset: 0;
|
|
width: 46%;
|
|
border-radius: inherit;
|
|
background: linear-gradient(90deg, transparent, #9b70ff 40%, #ff6d26 74%, transparent);
|
|
box-shadow: 0 0 16px rgba(255, 109, 38, 0.32);
|
|
animation: bar-slide 1.35s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }
|
|
@keyframes grid-drift { to { transform: translate3d(42px, 42px, 0); } }
|
|
@keyframes icon-float {
|
|
0%, 100% { transform: translateY(0) scale(1); }
|
|
50% { transform: translateY(-5px) scale(1.015); }
|
|
}
|
|
@keyframes halo-breathe {
|
|
0%, 100% { opacity: 0.35; transform: rotate(45deg) scale(0.95); }
|
|
50% { opacity: 0.8; transform: rotate(45deg) scale(1.04); }
|
|
}
|
|
@keyframes bar-slide {
|
|
0% { transform: translateX(-120%); }
|
|
100% { transform: translateX(320%); }
|
|
}
|
|
@keyframes trace-draw {
|
|
0% { stroke-dashoffset: 165; opacity: 0; }
|
|
36% { opacity: 1; }
|
|
64%, 100% { stroke-dashoffset: 0; opacity: 0.72; }
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.repo-loading-grid,
|
|
.repo-loading-halo,
|
|
.repo-loading-traces .trace,
|
|
.repo-loading-icon,
|
|
.repo-loading-bar span { animation: none; }
|
|
.repo-loading-traces .trace { stroke-dashoffset: 0; opacity: 0.72; }
|
|
}
|
|
</style>
|