add additional startup condition

This commit is contained in:
josc146 2023-06-14 22:50:20 +08:00
parent 51c5696bb9
commit e9cc9b0798
2 changed files with 15 additions and 5 deletions

View File

@ -143,5 +143,6 @@
"Linux is not yet supported for performing this operation, please do it manually.": "Linux尚未支持此操作, 请手动执行", "Linux is not yet supported for performing this operation, please do it manually.": "Linux尚未支持此操作, 请手动执行",
"On Linux system, you must manually install python dependencies.": "在Linux系统下, 你必须手动安装python依赖", "On Linux system, you must manually install python dependencies.": "在Linux系统下, 你必须手动安装python依赖",
"Update completed, please restart the program.": "更新完成, 请重启程序", "Update completed, please restart the program.": "更新完成, 请重启程序",
"Are you sure you want to reset this page? It cannot be undone.": "你确定要重置本页吗?这无法撤销" "Are you sure you want to reset this page? It cannot be undone.": "你确定要重置本页吗?这无法撤销",
"Model file download is not complete": "模型文件下载未完成"
} }

View File

@ -100,11 +100,13 @@ export const RunButton: FC<{ onClickRun?: MouseEventHandler, iconMode?: boolean
saveCache(); saveCache();
} }
if (!await FileExists(modelPath)) { const currentModelSource = commonStore.modelSourceList.find(item => item.name === modelName);
toastWithButton(t('Model file not found'), t('Download'), () => {
const downloadUrl = commonStore.modelSourceList.find(item => item.name === modelName)?.downloadUrl; const showDownloadPrompt = (promptInfo: string, downloadName: string) => {
toastWithButton(promptInfo, t('Download'), () => {
const downloadUrl = currentModelSource?.downloadUrl;
if (downloadUrl) { if (downloadUrl) {
toastWithButton(`${t('Downloading')} ${modelName}`, t('Check'), () => { toastWithButton(`${t('Downloading')} ${downloadName}`, t('Check'), () => {
navigate({ pathname: '/downloads' }); navigate({ pathname: '/downloads' });
}, },
{ autoClose: 3000 }); { autoClose: 3000 });
@ -113,7 +115,14 @@ export const RunButton: FC<{ onClickRun?: MouseEventHandler, iconMode?: boolean
toast(t('Can not find download url'), { type: 'error' }); toast(t('Can not find download url'), { type: 'error' });
} }
}); });
};
if (!await FileExists(modelPath)) {
showDownloadPrompt(t('Model file not found'), modelName);
commonStore.setStatus({ status: ModelStatus.Offline });
return;
} else if (!currentModelSource?.isLocal) {
showDownloadPrompt(t('Model file download is not complete'), modelName);
commonStore.setStatus({ status: ModelStatus.Offline }); commonStore.setStatus({ status: ModelStatus.Offline });
return; return;
} }