mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-06-22 14:59:56 +02:00
87 lines
2.0 KiB
Svelte
87 lines
2.0 KiB
Svelte
<script>
|
|
import { check } from "@tauri-apps/plugin-updater";
|
|
import { relaunch } from "@tauri-apps/plugin-process";
|
|
|
|
export let onMessage;
|
|
|
|
let isChecking, isInstalling, newUpdate;
|
|
let totalSize = 0,
|
|
downloadedSize = 0;
|
|
|
|
async function checkUpdate() {
|
|
isChecking = true;
|
|
try {
|
|
const update = await check();
|
|
onMessage(`Should update: ${update.available}`);
|
|
onMessage(update);
|
|
|
|
newUpdate = update;
|
|
} catch (e) {
|
|
onMessage(e);
|
|
} finally {
|
|
isChecking = false;
|
|
}
|
|
}
|
|
|
|
async function install() {
|
|
isInstalling = true;
|
|
downloadedSize = 0;
|
|
try {
|
|
await newUpdate.downloadAndInstall((downloadProgress) => {
|
|
switch (downloadProgress.event) {
|
|
case "Started":
|
|
totalSize = downloadProgress.data.contentLength;
|
|
break;
|
|
case "Progress":
|
|
downloadedSize += downloadProgress.data.chunkLength;
|
|
break;
|
|
case "Finished":
|
|
break;
|
|
}
|
|
});
|
|
onMessage("Installation complete, restarting...");
|
|
await new Promise((resolve) => setTimeout(resolve, 2000));
|
|
await relaunch();
|
|
} catch (e) {
|
|
console.error(e);
|
|
onMessage(e);
|
|
} finally {
|
|
isInstalling = false;
|
|
}
|
|
}
|
|
|
|
$: progress = totalSize ? Math.round((downloadedSize / totalSize) * 100) : 0;
|
|
</script>
|
|
|
|
<div class="flex children:grow children:h10">
|
|
{#if !isChecking && !newUpdate}
|
|
<button class="btn" on:click={checkUpdate}>Check update</button>
|
|
{:else if !isInstalling && newUpdate}
|
|
<button class="btn" on:click={install}>Install update</button>
|
|
{:else}
|
|
<div class="progress">
|
|
<span>{progress}%</span>
|
|
<div class="progress-bar" style="width: {progress}%" />
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
|
|
<style>
|
|
.progress {
|
|
width: 100%;
|
|
height: 50px;
|
|
position: relative;
|
|
margin-top: 5%;
|
|
}
|
|
|
|
.progress > span {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.progress-bar {
|
|
height: 30px;
|
|
background-color: hsl(32, 94%, 46%);
|
|
border: 1px solid #333;
|
|
}
|
|
</style>
|