From 7f85a085088212483a822ec560453519a2e50e9f Mon Sep 17 00:00:00 2001 From: josc146 Date: Thu, 15 Jun 2023 22:55:38 +0800 Subject: [PATCH] clear confirm for chat page --- frontend/src/_locales/zh-hans/main.json | 3 ++- frontend/src/components/DialogButton.tsx | 15 +++++++++++---- frontend/src/pages/Chat.tsx | 11 ++++++----- 3 files changed, 19 insertions(+), 10 deletions(-) diff --git a/frontend/src/_locales/zh-hans/main.json b/frontend/src/_locales/zh-hans/main.json index dfac0e1..103000d 100644 --- a/frontend/src/_locales/zh-hans/main.json +++ b/frontend/src/_locales/zh-hans/main.json @@ -145,5 +145,6 @@ "Update completed, please restart the program.": "更新完成, 请重启程序", "Are you sure you want to reset this page? It cannot be undone.": "你确定要重置本页吗?这无法撤销", "Model file download is not complete": "模型文件下载未完成", - "Error": "错误" + "Error": "错误", + "Are you sure you want to clear the conversation? It cannot be undone.": "你确定要清空对话吗?这无法撤销" } \ No newline at end of file diff --git a/frontend/src/components/DialogButton.tsx b/frontend/src/components/DialogButton.tsx index c9756bd..338fb92 100644 --- a/frontend/src/components/DialogButton.tsx +++ b/frontend/src/components/DialogButton.tsx @@ -19,15 +19,22 @@ export const DialogButton: FC<{ className?: string, title: string, contentText: string, - onConfirm: () => void -}> = ({ text, icon, tooltip, className, title, contentText, onConfirm }) => { + onConfirm: () => void, + size?: 'small' | 'medium' | 'large', + shape?: 'rounded' | 'circular' | 'square', + appearance?: 'secondary' | 'primary' | 'outline' | 'subtle' | 'transparent', +}> = ({ + text, icon, tooltip, className, title, contentText, + onConfirm, size, shape, appearance +}) => { const { t } = useTranslation(); return {tooltip ? - : - + : + } diff --git a/frontend/src/pages/Chat.tsx b/frontend/src/pages/Chat.tsx index e23c378..414fdbc 100644 --- a/frontend/src/pages/Chat.tsx +++ b/frontend/src/pages/Chat.tsx @@ -15,6 +15,7 @@ import { CopyButton } from '../components/CopyButton'; import { ReadButton } from '../components/ReadButton'; import { toast } from 'react-toastify'; import { WorkHeader } from '../components/WorkHeader'; +import { DialogButton } from '../components/DialogButton'; export const userName = 'M E'; export const botName = 'A I'; @@ -251,16 +252,16 @@ const ChatPanel: FC = observer(() => { })}
- } - size="large" shape="circular" appearance="subtle" - onClick={(e) => { + size="large" shape="circular" appearance="subtle" title={t('Clear')} + contentText={t('Are you sure you want to clear the conversation? It cannot be undone.')} + onConfirm={() => { if (generating) chatSseController?.abort(); commonStore.setConversations({}); commonStore.setConversationsOrder([]); - }} - /> + }} />