Files
DB-GPT/web/pages/mobile/chat/components/Feedback.tsx
lhwan 3a32344380 feat: web update (#1860)
Co-authored-by: 夏姜 <wenfengjiang.jwf@digital-engine.com>
Co-authored-by: yhjun1026 <460342015@qq.com>
Co-authored-by: aries_ckt <916701291@qq.com>
Co-authored-by: wb-lh513319 <wb-lh513319@alibaba-inc.com>
2024-08-22 11:05:18 +08:00

150 lines
4.5 KiB
TypeScript

import { apiInterceptors, cancelFeedback, feedbackAdd, getFeedbackReasons, stopTopic } from '@/client/api';
import { IChatDialogueMessageSchema } from '@/types/chat';
import { CopyOutlined, DislikeOutlined, LikeOutlined } from '@ant-design/icons';
import { useRequest } from 'ahooks';
import { App, Button, Divider, Tag } from 'antd';
import classNames from 'classnames';
import copy from 'copy-to-clipboard';
import React, { useContext, useState } from 'react';
import { MobileChatContext } from '..';
import DislikeDrawer from './DislikeDrawer';
interface Tags {
reason: string;
reason_type: string;
}
const Feedback: React.FC<{ content: IChatDialogueMessageSchema; index: number; chatDialogRef: React.RefObject<HTMLDivElement> }> = ({
content,
index,
chatDialogRef,
}) => {
const { conv_uid, history, scene } = useContext(MobileChatContext);
const { message } = App.useApp();
const [feedbackOpen, setFeedbackOpen] = useState<boolean>(false);
const [status, setStatus] = useState<'like' | 'unlike' | 'none'>(content?.feedback?.feedback_type);
const [list, setList] = useState<Tags[]>([]);
// 复制回答
const onCopyContext = async (context: any) => {
const pureStr = context?.replace(/\trelations:.*/g, '');
const result = copy(chatDialogRef.current?.textContent || pureStr);
if (result) {
if (pureStr) {
message.success('复制成功');
} else {
message.warning('内容复制为空');
}
} else {
message.error('复制失败');
}
};
// 点赞 or 踩
const { run: feedback, loading } = useRequest(
async (params: { feedback_type: string; reason_types?: string[]; remark?: string }) =>
await apiInterceptors(
feedbackAdd({
conv_uid: conv_uid,
message_id: content.order + '',
feedback_type: params.feedback_type,
reason_types: params.reason_types,
remark: params.remark,
}),
),
{
manual: true,
onSuccess: (data) => {
const [, res] = data;
setStatus(res?.feedback_type);
message.success('反馈成功');
setFeedbackOpen(false);
},
},
);
// 取消反馈
const { run: cancel } = useRequest(async () => await apiInterceptors(cancelFeedback({ conv_uid: conv_uid, message_id: content?.order + '' })), {
manual: true,
onSuccess: (data) => {
const [, res] = data;
if (res) {
setStatus('none');
message.success('操作成功');
}
},
});
// 反馈原因类型
const { run: getReasonList } = useRequest(async () => await apiInterceptors(getFeedbackReasons()), {
manual: true,
onSuccess: (data) => {
const [, res] = data;
setList(res || []);
if (res) {
setFeedbackOpen(true);
}
},
});
// 终止话题
const { run: stopTopicRun, loading: stopTopicLoading } = useRequest(
async () => await apiInterceptors(stopTopic({ conv_id: conv_uid, round_index: 0 })),
{
manual: true,
onSuccess: () => {
message.success('操作成功');
},
},
);
return (
<div className="flex items-center text-sm">
<div className="flex gap-3">
<LikeOutlined
className={classNames('cursor-pointer', { 'text-[#0C75FC]': status === 'like' })}
onClick={async () => {
if (status === 'like') {
await cancel();
return;
}
await feedback({ feedback_type: 'like' });
}}
/>
<DislikeOutlined
className={classNames('cursor-pointer', {
'text-[#0C75FC]': status === 'unlike',
})}
onClick={async () => {
if (status === 'unlike') {
await cancel();
return;
}
await getReasonList();
}}
/>
<DislikeDrawer open={feedbackOpen} setFeedbackOpen={setFeedbackOpen} list={list} feedback={feedback} loading={loading} />
</div>
<Divider type="vertical" />
<div className="flex items-center gap-3">
<CopyOutlined className="cursor-pointer" onClick={() => onCopyContext(content.context)} />
{history.length - 1 === index && scene === 'chat_agent' && (
<Button
loading={stopTopicLoading}
size="small"
onClick={async () => {
await stopTopicRun();
}}
className="text-xs"
>
</Button>
)}
</div>
</div>
);
};
export default Feedback;