Add download progress bar
This commit is contained in:
@@ -48,6 +48,7 @@ interface AppState {
|
||||
compiling: boolean;
|
||||
lspStatus: LspStatus;
|
||||
|
||||
download: DownloadProgress | null;
|
||||
syncing: boolean;
|
||||
conflicts: Conflict[];
|
||||
status: string;
|
||||
@@ -83,6 +84,7 @@ export const app = $state<AppState>({
|
||||
compiling: false,
|
||||
lspStatus: "off",
|
||||
|
||||
download: null,
|
||||
syncing: false,
|
||||
conflicts: [],
|
||||
status: "",
|
||||
@@ -90,6 +92,31 @@ export const app = $state<AppState>({
|
||||
theme: "light",
|
||||
});
|
||||
|
||||
export interface DownloadProgress {
|
||||
label: string;
|
||||
current: number;
|
||||
total: number;
|
||||
done: boolean;
|
||||
}
|
||||
|
||||
let downloadClearTimer: ReturnType<typeof setTimeout> | null = null;
|
||||
|
||||
export function trackDownload(progress: DownloadProgress) {
|
||||
if (downloadClearTimer) {
|
||||
clearTimeout(downloadClearTimer);
|
||||
downloadClearTimer = null;
|
||||
}
|
||||
|
||||
app.download = progress;
|
||||
|
||||
if (progress.done) {
|
||||
downloadClearTimer = setTimeout(() => {
|
||||
app.download = null;
|
||||
downloadClearTimer = null;
|
||||
}, 1200);
|
||||
}
|
||||
}
|
||||
|
||||
export function setError(error: unknown) {
|
||||
app.error = api.errorMessage(error);
|
||||
app.status = "";
|
||||
@@ -205,7 +232,6 @@ export async function refreshCloud() {
|
||||
}
|
||||
}
|
||||
|
||||
/** Trail from the drive root down to the folder being viewed. */
|
||||
export function cloudBreadcrumbs(): CloudFolder[] {
|
||||
if (app.cloudFolder === "shared" || app.cloudFolder === null) return [];
|
||||
|
||||
|
||||
+49
-2
@@ -4,6 +4,7 @@
|
||||
import { save } from "@tauri-apps/plugin-dialog";
|
||||
import { revealItemInDir } from "@tauri-apps/plugin-opener";
|
||||
import { getCurrentWebview } from "@tauri-apps/api/webview";
|
||||
import { listen } from "@tauri-apps/api/event";
|
||||
|
||||
import FileViewer from "$lib/components/FileViewer.svelte";
|
||||
import FileTree from "$lib/components/FileTree.svelte";
|
||||
@@ -47,7 +48,9 @@
|
||||
scheduleCompile,
|
||||
setError,
|
||||
setStatus,
|
||||
trackDownload,
|
||||
} from "$lib/ts/state.svelte";
|
||||
import type { DownloadProgress } from "$lib/ts/state.svelte";
|
||||
|
||||
type Dialog =
|
||||
| { kind: "none" }
|
||||
@@ -77,7 +80,6 @@
|
||||
let selectedIsDir = $state(false);
|
||||
let treeDropTarget = $state<string | null>(null);
|
||||
|
||||
/** Folder that new files, folders, and imports go into. */
|
||||
const selectedFolder = $derived(
|
||||
!selectedEntry
|
||||
? ""
|
||||
@@ -337,7 +339,6 @@
|
||||
return null;
|
||||
}
|
||||
|
||||
/** Folder row under the pointer, so an OS drop lands where it is aimed. */
|
||||
function folderUnderPointer(x: number, y: number): string | null {
|
||||
const element = document
|
||||
.elementFromPoint(x, y)
|
||||
@@ -373,6 +374,10 @@
|
||||
}
|
||||
|
||||
onMount(() => {
|
||||
const downloads = listen<DownloadProgress>("download://progress", (event) =>
|
||||
trackDownload(event.payload),
|
||||
);
|
||||
|
||||
const pending = getCurrentWebview().onDragDropEvent((event) => {
|
||||
if (event.payload.type === "over") {
|
||||
dropActive = dropDestination() !== null;
|
||||
@@ -396,6 +401,7 @@
|
||||
|
||||
return () => {
|
||||
pending.then((unlisten) => unlisten());
|
||||
downloads.then((unlisten) => unlisten());
|
||||
};
|
||||
});
|
||||
|
||||
@@ -517,6 +523,47 @@
|
||||
<WindowControls />
|
||||
</header>
|
||||
|
||||
{#if app.download}
|
||||
{@const progress = app.download}
|
||||
<div
|
||||
class="flex shrink-0 items-center gap-3 border-b border-[var(--color-line)] bg-[var(--color-surface)] px-3 py-2"
|
||||
>
|
||||
<Icon
|
||||
icon={progress.done ? "ph:check-circle" : "ph:cloud-arrow-down"}
|
||||
class="shrink-0 text-base {progress.done
|
||||
? 'text-[var(--color-success)]'
|
||||
: 'text-[var(--color-accent)]'}"
|
||||
/>
|
||||
|
||||
<span class="shrink-0 text-xs">
|
||||
{progress.done ? "Downloaded" : "Downloading"}
|
||||
<span class="font-medium">{progress.label}</span>
|
||||
</span>
|
||||
|
||||
<div
|
||||
class="h-1.5 min-w-0 flex-1 overflow-hidden rounded-full bg-[var(--color-surface-sunken)]"
|
||||
>
|
||||
<div
|
||||
class="h-full rounded-full transition-all duration-200
|
||||
{progress.done
|
||||
? 'bg-[var(--color-success)]'
|
||||
: 'bg-[var(--color-accent)]'}"
|
||||
style="width: {progress.total > 0
|
||||
? Math.round((progress.current / progress.total) * 100)
|
||||
: 0}%"
|
||||
></div>
|
||||
</div>
|
||||
|
||||
{#if progress.total > 1}
|
||||
<span
|
||||
class="shrink-0 tabular-nums text-[10px] text-[var(--color-ink-muted)]"
|
||||
>
|
||||
{progress.current} of {progress.total} files
|
||||
</span>
|
||||
{/if}
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
{#if app.status || app.error}
|
||||
<div
|
||||
class="flex shrink-0 items-center gap-2 border-b px-3 py-1.5 text-xs
|
||||
|
||||
Reference in New Issue
Block a user