diff --git a/frontend/src/_locales/zh-hans/main.json b/frontend/src/_locales/zh-hans/main.json index a164401..4b4d6ae 100644 --- a/frontend/src/_locales/zh-hans/main.json +++ b/frontend/src/_locales/zh-hans/main.json @@ -143,5 +143,6 @@ "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依赖", "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": "模型文件下载未完成" } \ No newline at end of file diff --git a/frontend/src/components/RunButton.tsx b/frontend/src/components/RunButton.tsx index d1f52c4..a56e9a3 100644 --- a/frontend/src/components/RunButton.tsx +++ b/frontend/src/components/RunButton.tsx @@ -100,11 +100,13 @@ export const RunButton: FC<{ onClickRun?: MouseEventHandler, iconMode?: boolean saveCache(); } - if (!await FileExists(modelPath)) { - toastWithButton(t('Model file not found'), t('Download'), () => { - const downloadUrl = commonStore.modelSourceList.find(item => item.name === modelName)?.downloadUrl; + const currentModelSource = commonStore.modelSourceList.find(item => item.name === modelName); + + const showDownloadPrompt = (promptInfo: string, downloadName: string) => { + toastWithButton(promptInfo, t('Download'), () => { + const downloadUrl = currentModelSource?.downloadUrl; if (downloadUrl) { - toastWithButton(`${t('Downloading')} ${modelName}`, t('Check'), () => { + toastWithButton(`${t('Downloading')} ${downloadName}`, t('Check'), () => { navigate({ pathname: '/downloads' }); }, { autoClose: 3000 }); @@ -113,7 +115,14 @@ export const RunButton: FC<{ onClickRun?: MouseEventHandler, iconMode?: boolean 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 }); return; }