mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-05-07 12:26:41 +02:00
2d731f8022
* fix(updater): format `Update.date` to RFC 3339 * Messed up on argument in #2572 * Format * Update example * Avoid extra to_string * Deprecate `Update.available`
91 lines
2.1 KiB
Svelte
91 lines
2.1 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()
|
|
if (update) {
|
|
onMessage(`Should update: ${update.available}`)
|
|
onMessage(update)
|
|
|
|
newUpdate = update
|
|
} else {
|
|
onMessage('No update available')
|
|
}
|
|
} 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>
|
|
</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>
|