mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-07-30 17:48:50 +02:00
* feat(updater): option to not restart after install * More platform cfg * Add the same function for `UpdaterBuilder` * Fix missing `#[cfg(windows)]` * Mark `current_exe_args` cfg(windows) * Mark `on_before_exit` cfg(windows) * Mark `installer_args` cfg(windows) * Note about `installer_arg` apply to both * Remove current args and restart together * Only build needed bundle on windows as well * Remove `/NS` since it breaks the msi updater * Add launch updater debug log * Add a folder to test updates * Remove unused `#[allow(unused)]` * Format * messed up git stage * Add change file * Clean up * Disable NSIS compression for API example * Bump wry for v1 test to pull in https://github.com/tauri-apps/wry/pull/1703 * format * Make typescript happy * Close new update on destroy
99 lines
2.3 KiB
Svelte
99 lines
2.3 KiB
Svelte
<script lang="ts">
|
|
import { check, Update } from '@tauri-apps/plugin-updater'
|
|
import { relaunch } from '@tauri-apps/plugin-process'
|
|
import { onDestroy } from 'svelte'
|
|
|
|
let { onMessage } = $props()
|
|
|
|
let isChecking = $state(false)
|
|
let isInstalling = $state(false)
|
|
let newUpdate = $state<Update | undefined>()
|
|
let totalSize = $state(0)
|
|
let downloadedSize = $state(0)
|
|
let progress = $derived(
|
|
totalSize ? Math.round((downloadedSize / totalSize) * 100) : 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
|
|
}
|
|
}
|
|
|
|
onDestroy(() => {
|
|
newUpdate?.close()
|
|
})
|
|
</script>
|
|
|
|
<div class="flex children:grow children:h10">
|
|
{#if !isChecking && !newUpdate}
|
|
<button class="btn" onclick={checkUpdate}>Check update</button>
|
|
{:else if !isInstalling && newUpdate}
|
|
<button class="btn" onclick={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>
|