123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618 |
- <template>
- <el-container class="ai-layout">
- <!-- 左侧:会话列表 -->
- <el-aside width="260px" class="conversation-container">
- <div>
- <!-- 左顶部:新建对话 -->
- <el-button class="w-1/1 btn-new-conversation" type="primary">
- <Icon icon="ep:plus" class="mr-5px"/>
- 新建对话
- </el-button>
- <!-- 左顶部:搜索对话 -->
- <el-input
- v-model="searchName"
- size="large"
- class="mt-10px search-input"
- placeholder="搜索历史记录"
- @keyup="searchConversation"
- >
- <template #prefix>
- <Icon icon="ep:search"/>
- </template>
- </el-input>
- <!-- 左中间:对话列表 -->
- <div class="conversation-list">
- <!-- TODO @芋艿,置顶、聊天记录、一星期钱、30天前,前端对数据重新做一下分组,或者后端接口改一下 -->
- <div>
- <el-text class="mx-1" size="small" tag="b">置顶</el-text>
- </div>
- <el-row v-for="conversation in conversationList" :key="conversation.id">
- <div
- :class="conversation.id === conversationId ? 'conversation active' : 'conversation'"
- @click="changeConversation(conversation)"
- >
- <div class="title-wrapper">
- <img class="avatar" :src="conversation.avatar"/>
- <span class="title">{{ conversation.title }}</span>
- </div>
- <div class="button-wrapper">
- <el-icon title="编辑" @click="updateConversationTitle(conversation)">
- <Icon icon="ep:edit"/>
- </el-icon>
- <el-icon title="删除会话" @click="deleteConversationTitle(conversation)">
- <Icon icon="ep:delete"/>
- </el-icon>
- </div>
- </div>
- </el-row>
- </div>
- </div>
- <!-- 左底部:工具栏 -->
- <div class="tool-box">
- <div>
- <Icon icon="ep:user"/>
- <el-text size="small">角色仓库</el-text>
- </div>
- <div>
- <Icon icon="ep:delete"/>
- <el-text size="small">清空未置顶对话</el-text>
- </div>
- </div>
- </el-aside>
- <!-- 右侧:会话详情 -->
- <el-container class="detail-container">
- <!-- 右顶部 TODO 芋艿:右对齐 -->
- <el-header class="header">
- <div class="title">
- 标题......
- </div>
- <div>
- <el-button>3.5-turbo-0125
- <Icon icon="ep:setting"/>
- </el-button>
- <el-button>
- <Icon icon="ep:user"/>
- </el-button>
- <el-button>
- <Icon icon="ep:download"/>
- </el-button>
- <el-button>
- <Icon icon="ep:arrow-up"/>
- </el-button>
- </div>
- </el-header>
- <!-- main -->
- <el-main class="main-container">
- <div class="message-container" ref="messageContainer">
- <div class="chat-list" v-for="(item, index) in list" :key="index">
- <!-- 靠左 message -->
- <div class="left-message message-item" v-if="item.type === 'system'">
- <div class="avatar" >
- <el-avatar
- src="https://cube.elemecdn.com/0/88/03b0d39583f48206768a7534e55bcpng.png"
- />
- </div>
- <div class="message">
- <div>
- <el-text class="time">{{formatDate(item.createTime)}}</el-text>
- </div>
- <div class="left-text-container">
- <el-text class="left-text">
- {{item.content}}
- </el-text>
- </div>
- <div class="left-btns">
- <div class="btn-cus" @click="noCopy(item.content)">
- <img class="btn-image" src="@/assets/ai/copy.svg"/>
- <el-text class="btn-cus-text">复制</el-text>
- </div>
- <div class="btn-cus" style="margin-left: 20px;" @click="onDelete(item.id)">
- <img class="btn-image" src="@/assets/ai/delete.svg" style="height: 17px;"/>
- <el-text class="btn-cus-text">删除</el-text>
- </div>
- </div>
- </div>
- </div>
- <!-- 靠右 message -->
- <div class="right-message message-item" v-if="item.type === 'user'">
- <div class="avatar">
- <el-avatar
- src="https://cube.elemecdn.com/0/88/03b0d39583f48206768a7534e55bcpng.png"
- />
- </div>
- <div class="message">
- <div>
- <el-text class="time">{{formatDate(item.createTime)}}</el-text>
- </div>
- <div class="right-text-container">
- <el-text class="right-text">
- {{item.content}}
- </el-text>
- </div>
- <div class="right-btns">
- <div class="btn-cus" @click="noCopy(item.content)">
- <img class="btn-image" src="@/assets/ai/copy.svg"/>
- <el-text class="btn-cus-text">复制</el-text>
- </div>
- <div class="btn-cus" style="margin-left: 20px;" @click="onDelete(item.id)">
- <img class="btn-image" src="@/assets/ai/delete.svg" style="height: 17px;"/>
- <el-text class="btn-cus-text">删除</el-text>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </el-main>
- <el-footer class="footer-container">
- <textarea class="prompt-input" v-model="prompt" placeholder="问我任何问题...(Shift+Enter 换行,按下 Enter 发送)"></textarea>
- <div class="prompt-btns">
- <el-switch/>
- <el-button type="primary" size="default" @click="onSend()">发送</el-button>
- </div>
- </el-footer>
- </el-container>
- </el-container>
- </template>
- <script setup lang="ts">
- import {ChatMessageApi, ChatMessageSendVO, ChatMessageVO} from "@/api/ai/chat/message";
- import {formatDate} from "@/utils/formatTime";
- import {useClipboard} from '@vueuse/core'
- const searchName = ref('') // 查询的内容
- const conversationId = ref('1781604279872581648') // 对话id
- const conversationInProgress = ref<Boolean>() // 对话进行中
- const prompt = ref<string>() // prompt
- const promptRes = ref<string>() // prompt res
- const changeConversation = (conversation) => {
- console.log(conversation)
- conversationId.value = conversation.id
- // TODO 芋艿:待实现
- }
- const updateConversationTitle = (conversation) => {
- console.log(conversation)
- // TODO 芋艿:待实现
- }
- const deleteConversationTitle = (conversation) => {
- console.log(conversation)
- // TODO 芋艿:待实现
- }
- const searchConversation = () => {
- // TODO 芋艿:待实现
- }
- /** send */
- const onSend = async () => {
- const requestParams = {
- conversationId: conversationId.value,
- content: prompt.value,
- } as unknown as ChatMessageSendVO
- // 添加 message
- const userMessage = await ChatMessageApi.add(requestParams) as unknown as ChatMessageVO;
- list.value.push(userMessage)
- // 滚动到住下面
- scrollToBottom();
- //
- await doSendStream(userMessage)
- }
- const doSendStream = async (userMessage: ChatMessageVO) => {
- // 创建AbortController实例,以便中止请求
- const ctrl = new AbortController()
- // 发送 event stream
- let isFirstMessage = true
- ChatMessageApi.sendStream(userMessage.id, ctrl,(message) => {
- console.log('message', message)
- const data = JSON.parse(message.data) as unknown as ChatMessageVO
- // 如果没有内容结束链接
- if (data.content === '') {
- ctrl.abort()
- }
- // 首次返回需要添加一个 message 到页面,后面的都是更新
- if (isFirstMessage) {
- isFirstMessage = false;
- list.value.push(data)
- } else {
- const lastMessage = list.value[list.value.length - 1];
- lastMessage.content = lastMessage.content + data.content
- list.value[list.value - 1] = lastMessage
- }
- // 滚动到最下面
- scrollToBottom();
- }, (error) => {
- console.log('error', error)
- }, () => {
- console.log('close')
- })
- // // 创建一个正在进行中的message
- // const chatMessage = {
- // id: null, // 编号
- // conversationId: conversationId.value, // 会话编号
- // type: 'system', // 消息类型
- // userId: null, // 用户编号
- // roleId: null, // 角色编号
- // model: null, // 模型标志
- // modelId: null, // 模型编号
- // content: '加载中...', // 聊天内容
- // tokens: null, // 消耗 Token 数量
- // createTime: new Date(), // 创建时间
- // } as unknown as ChatMessageVO
- // list.value.push(chatMessage)
- // // 滚动到最下面
- // scrollToBottom();
- }
- /** Prompt */
- const onPromptInput = async (e) => {
- console.log(e.data)
- // prompt.value = e.data
- }
- // 初始化 copy 到粘贴板
- const { copy, isSupported } = useClipboard();
- /** chat message 列表 */
- defineOptions({ name: 'chatMessageList' })
- const list = ref<ChatMessageVO[]>([]) // 列表的数据
- // 对话id TODO @范 先写死
- const content = '苹果是什么颜色?'
- /** 查询列表 */
- const messageList = async () => {
- try {
- // 获取列表数据
- const res = await ChatMessageApi.messageList(conversationId.value)
- list.value = res;
- // 滚动到最下面
- scrollToBottom();
- } finally {
- }
- }
- // ref
- const messageContainer: any = ref(null);
- const isScrolling = ref(false)//用于判断用户是否在滚动
- function scrollToBottom() {
- nextTick(() => {
- //注意要使用nexttick以免获取不到dom
- console.log('isScrolling.value', isScrolling.value)
- if (!isScrolling.value) {
- messageContainer.value.scrollTop = messageContainer.value.scrollHeight - messageContainer.value.offsetHeight
- }
- })
- }
- function handleScroll() {
- const scrollContainer = messageContainer.value
- const scrollTop = scrollContainer.scrollTop
- const scrollHeight = scrollContainer.scrollHeight
- const offsetHeight = scrollContainer.offsetHeight
- if (scrollTop + offsetHeight < scrollHeight) {
- // 用户开始滚动并在最底部之上,取消保持在最底部的效果
- isScrolling.value = true
- } else {
- // 用户停止滚动并滚动到最底部,开启保持到最底部的效果
- isScrolling.value = false
- }
- }
- function noCopy(content) {
- copy(content)
- ElMessage({
- message: '复制成功!',
- type: 'success',
- })
- }
- const onDelete = async (id) => {
- // 删除 message
- await ChatMessageApi.delete(id)
- ElMessage({
- message: '删除成功!',
- type: 'success',
- })
- // 重新获取 message 列表
- await messageList();
- }
- /** 初始化 **/
- onMounted(async () => {
- // 获取列表数据
- messageList();
- // scrollToBottom();
- // await nextTick
- // 监听滚动事件,判断用户滚动状态
- messageContainer.value.addEventListener('scroll', handleScroll)
- })
- </script>
- <style lang="scss" scoped>
- .ai-layout {
- // TODO @范 这里height不能 100% 先这样临时处理
- position: absolute;
- flex: 1;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- //padding: 15px 15px;
- }
- .conversation-container {
- position: relative;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- padding: 0 10px;
- padding-top: 10px;
- .btn-new-conversation {
- padding: 18px 0;
- }
- .search-input {
- margin-top: 20px;
- }
- .conversation-list {
- margin-top: 20px;
- .conversation {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- flex: 1;
- padding: 0 5px;
- margin-top: 10px;
- cursor: pointer;
- border-radius: 5px;
- align-items: center;
- line-height: 30px;
- &.active {
- background-color: #e6e6e6;
- .button {
- display: inline-block;
- }
- }
- .title-wrapper {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .title {
- padding: 5px 10px;
- max-width: 220px;
- font-size: 14px;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .avatar {
- width: 28px;
- height: 28px;
- display: flex;
- flex-direction: row;
- justify-items: center;
- }
- // 对话编辑、删除
- .button-wrapper {
- right: 2px;
- display: flex;
- flex-direction: row;
- justify-items: center;
- color: #606266;
- .el-icon {
- margin-right: 5px;
- }
- }
- }
- }
- // 角色仓库、清空未设置对话
- .tool-box {
- line-height: 35px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- color: var(--el-text-color);
- > div {
- display: flex;
- align-items: center;
- color: #606266;
- padding: 0;
- margin: 0;
- > span {
- margin-left: 5px;
- }
- }
- }
- }
- // 头部
- .detail-container {
- background: #ffffff;
- .header {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- background: #fbfbfb;
- box-shadow: 0 0 0 0 #dcdfe6;
- .title {
- font-size: 18px;
- font-weight: bold;
- }
- }
- }
- // main 容器
- .main-container {
- margin: 0;
- padding: 0;
- position: relative;
- }
- .message-container {
- position: absolute;
- top: 0;
- bottom: 0;
- overflow-y: scroll;
- padding: 0 15px;
- }
- // 中间
- .chat-list {
- display: flex;
- flex-direction: column;
- overflow-y: hidden;
- .message-item {
- margin-top: 50px;
- }
- .left-message {
- display: flex;
- flex-direction: row;
- }
- .right-message {
- display: flex;
- flex-direction: row-reverse;
- justify-content: flex-start;
- }
- .avatar {
- //height: 170px;
- //width: 170px;
- }
- .message {
- display: flex;
- flex-direction: column;
- text-align: left;
- margin: 0 15px;
- .time {
- text-align: left;
- line-height: 30px;
- }
- .left-text-container {
- display: flex;
- flex-direction: column;
- overflow-wrap: break-word;
- background-color: #e4e4e4;
- box-shadow: 0 0 0 1px #e4e4e4;
- border-radius: 10px;
- padding: 10px 10px 5px 10px;
- .left-text {
- color: #393939;
- }
- }
- .right-text-container {
- display: flex;
- flex-direction: column;
- overflow-wrap: break-word;
- background-color: #267fff;
- color: #FFF;
- box-shadow: 0 0 0 1px #267fff;
- border-radius: 10px;
- padding: 10px;
- .right-text {
- color: #FFF;
- }
- }
- .left-btns, .right-btns {
- display: flex;
- flex-direction: row;
- margin-top: 8px;
- }
- }
- // 复制、删除按钮
- .btn-cus {
- display: flex;
- background-color: transparent;
- align-items: center;
- .btn-image {
- height: 20px;
- margin-right: 5px;
- }
- .btn-cus-text {
- color: #757575;
- }
- }
- .btn-cus:hover {
- cursor: pointer;
- }
- .btn-cus:focus {
- background-color: #8c939d;
- }
- }
- // 底部
- .footer-container {
- display: flex;
- flex-direction: column;
- height: auto;
- border: 1px solid #e3e3e3;
- border-radius: 10px;
- margin: 20px 20px;
- padding: 9px 10px;
- .prompt-input {
- height: 80px;
- //box-shadow: none;
- border: none;
- box-sizing: border-box;
- resize: none;
- padding: 0px 2px;
- //padding: 5px 5px;
- overflow: hidden;
- }
- .prompt-input:focus {
- outline: none;
- }
- .prompt-btns {
- display: flex;
- justify-content: space-between;
- padding-bottom: 0px;
- padding-top: 5px;
- }
- }
- </style>
|