-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(projects): support system new version update notification. close #…
- Loading branch information
1 parent
2bec899
commit 584cd54
Showing
9 changed files
with
89 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import type { Plugin } from 'vite'; | ||
|
||
export function setupHtmlPlugin(buildTime: string) { | ||
const plugin: Plugin = { | ||
name: 'html-plugin', | ||
apply: 'build', | ||
transformIndexHtml(html) { | ||
return html.replace('<head>', `<head>\n <meta name="buildTime" content="${buildTime}">`); | ||
} | ||
}; | ||
|
||
return plugin; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import { h } from 'vue'; | ||
import { NButton } from 'naive-ui'; | ||
import { $t } from '../locales'; | ||
|
||
export function setupAppVersionNotification() { | ||
document.addEventListener('visibilitychange', async () => { | ||
const buildTime = await getHtmlBuildTime(); | ||
|
||
if (buildTime !== BUILD_TIME && document.visibilityState === 'visible') { | ||
const n = window.$notification?.create({ | ||
title: $t('system.updateTitle'), | ||
content: $t('system.updateContent'), | ||
action() { | ||
return h('div', { style: { display: 'flex', justifyContent: 'end', gap: '12px', width: '325px' } }, [ | ||
h( | ||
NButton, | ||
{ | ||
onClick() { | ||
n?.destroy(); | ||
} | ||
}, | ||
$t('system.updateCancel') | ||
), | ||
h( | ||
NButton, | ||
{ | ||
type: 'primary', | ||
onClick() { | ||
location.reload(); | ||
} | ||
}, | ||
$t('system.updateConfirm') | ||
) | ||
]); | ||
} | ||
}); | ||
} | ||
}); | ||
} | ||
|
||
async function getHtmlBuildTime() { | ||
const baseURL = import.meta.env.VITE_BASE_URL; | ||
|
||
const res = await fetch(`${baseURL}index.html`); | ||
|
||
const html = await res.text(); | ||
|
||
const match = html.match(/<meta name="buildTime" content="(.*)">/); | ||
|
||
const buildTime = match?.[1] || ''; | ||
|
||
return buildTime; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters