63 lines
1.9 KiB
TypeScript
63 lines
1.9 KiB
TypeScript
import { app, dialog } from 'electron'
|
|
import { WindowManager } from './../managers/window'
|
|
import { autoUpdater } from 'electron-updater'
|
|
import { AppEvent } from '@janhq/core'
|
|
|
|
export let waitingToInstallVersion: string | undefined = undefined
|
|
|
|
export function handleAppUpdates() {
|
|
/* Should not check for update during development */
|
|
if (!app.isPackaged) {
|
|
return
|
|
}
|
|
/* New Update Available */
|
|
autoUpdater.on('update-available', async (_info: any) => {
|
|
const action = await dialog.showMessageBox({
|
|
title: 'Update Available',
|
|
message: 'Would you like to download and install it now?',
|
|
buttons: ['Download', 'Later'],
|
|
})
|
|
if (action.response === 0) await autoUpdater.downloadUpdate()
|
|
})
|
|
|
|
/* App Update Completion Message */
|
|
autoUpdater.on('update-downloaded', async (_info: any) => {
|
|
WindowManager.instance.currentWindow?.webContents.send(
|
|
AppEvent.onAppUpdateDownloadSuccess,
|
|
{}
|
|
)
|
|
const action = await dialog.showMessageBox({
|
|
message: `Update downloaded. Please restart the application to apply the updates.`,
|
|
buttons: ['Restart', 'Later'],
|
|
})
|
|
if (action.response === 0) {
|
|
waitingToInstallVersion = _info?.version
|
|
autoUpdater.quitAndInstall()
|
|
}
|
|
})
|
|
|
|
/* App Update Error */
|
|
autoUpdater.on('error', (info: any) => {
|
|
WindowManager.instance.currentWindow?.webContents.send(
|
|
AppEvent.onAppUpdateDownloadError,
|
|
{ failedToInstallVersion: waitingToInstallVersion, info }
|
|
)
|
|
})
|
|
|
|
/* App Update Progress */
|
|
autoUpdater.on('download-progress', (progress: any) => {
|
|
console.debug('app update progress: ', progress.percent)
|
|
WindowManager.instance.currentWindow?.webContents.send(
|
|
AppEvent.onAppUpdateDownloadUpdate,
|
|
{
|
|
percent: progress.percent,
|
|
}
|
|
)
|
|
})
|
|
autoUpdater.autoDownload = false
|
|
autoUpdater.autoInstallOnAppQuit = true
|
|
if (process.env.CI !== 'e2e') {
|
|
autoUpdater.checkForUpdates()
|
|
}
|
|
}
|