mirror of
https://gitee.com/blackfox/geekai.git
synced 2025-12-06 16:58:24 +08:00
523 lines
14 KiB
Vue
523 lines
14 KiB
Vue
<template>
|
|
<div class="chat-reply">
|
|
<div class="chat-line chat-line-reply-list" v-if="listStyle === 'list'">
|
|
<div class="chat-line-inner">
|
|
<div class="chat-icon">
|
|
<img :src="data.icon" alt="ChatGPT" />
|
|
</div>
|
|
|
|
<div class="chat-item">
|
|
<div class="content-wrapper" v-html="md.render(processContent(data.content))"></div>
|
|
<div class="bar flex text-gray-500" v-if="data.created_at">
|
|
<span class="bar-item text-sm">{{ dateFormat(data.created_at) }}</span>
|
|
<!-- <span class="bar-item">tokens: {{ data.tokens }}</span> -->
|
|
<span class="bar-item">
|
|
<el-tooltip class="box-item" effect="dark" content="复制回答" placement="bottom">
|
|
<el-icon class="copy-reply" :data-clipboard-text="data.content">
|
|
<DocumentCopy />
|
|
</el-icon>
|
|
</el-tooltip>
|
|
</span>
|
|
<span v-if="!readOnly" class="flex">
|
|
<span class="bar-item" @click="reGenerate(data.prompt)">
|
|
<el-tooltip class="box-item" effect="dark" content="重新生成" placement="bottom">
|
|
<el-icon><Refresh /></el-icon>
|
|
</el-tooltip>
|
|
</span>
|
|
|
|
<span class="bar-item">
|
|
<el-tooltip
|
|
class="box-item"
|
|
effect="dark"
|
|
content="生成语音朗读"
|
|
placement="bottom"
|
|
>
|
|
<i
|
|
class="iconfont icon-speaker"
|
|
v-if="!isPlaying"
|
|
@click="synthesis(data.content)"
|
|
></i>
|
|
<el-image class="voice-icon" :src="playIcon" v-else />
|
|
</el-tooltip>
|
|
</span>
|
|
</span>
|
|
<!-- <span class="bar-item">-->
|
|
<!-- <el-dropdown trigger="click">-->
|
|
<!-- <span class="el-dropdown-link">-->
|
|
<!-- <el-icon><More/></el-icon>-->
|
|
<!-- </span>-->
|
|
<!-- <template #dropdown>-->
|
|
<!-- <el-dropdown-menu>-->
|
|
<!-- <el-dropdown-item :icon="Headset" @click="synthesis(orgContent)">生成语音</el-dropdown-item>-->
|
|
<!-- </el-dropdown-menu>-->
|
|
<!-- </template>-->
|
|
<!-- </el-dropdown>-->
|
|
<!-- </span>-->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="chat-line chat-line-reply-chat" v-else>
|
|
<div class="chat-line-inner">
|
|
<div class="chat-icon">
|
|
<img :src="data.icon" alt="ChatGPT" />
|
|
</div>
|
|
<div class="chat-item">
|
|
<div class="content-wrapper">
|
|
<div class="content" v-html="md.render(processContent(data.content))"></div>
|
|
</div>
|
|
<div class="bar text-gray-500" v-if="data.created_at">
|
|
<span class="bar-item text-sm"> {{ dateFormat(data.created_at) }}</span>
|
|
<!-- <span class="bar-item">tokens: {{ data.tokens }}</span>-->
|
|
<span class="bar-item bg">
|
|
<el-tooltip class="box-item" effect="dark" content="复制回答" placement="bottom">
|
|
<el-icon class="copy-reply" :data-clipboard-text="data.content">
|
|
<DocumentCopy />
|
|
</el-icon>
|
|
</el-tooltip>
|
|
</span>
|
|
<span v-if="!readOnly" class="flex">
|
|
<span class="bar-item bg" @click="reGenerate(data.prompt)">
|
|
<el-tooltip class="box-item" effect="dark" content="重新生成" placement="bottom">
|
|
<el-icon><Refresh /></el-icon>
|
|
</el-tooltip>
|
|
</span>
|
|
|
|
<span class="bar-item bg">
|
|
<el-tooltip
|
|
class="box-item"
|
|
effect="dark"
|
|
content="生成语音朗读"
|
|
placement="bottom"
|
|
v-if="!isPlaying"
|
|
>
|
|
<i class="iconfont icon-speaker" @click="synthesis(data.content)"></i>
|
|
</el-tooltip>
|
|
<el-tooltip
|
|
class="box-item"
|
|
effect="dark"
|
|
content="暂停播放"
|
|
placement="bottom"
|
|
v-else
|
|
>
|
|
<el-image class="voice-icon" :src="playIcon" @click="stopSynthesis()" />
|
|
</el-tooltip>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<audio ref="audio" @ended="isPlaying = false" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useSharedStore } from '@/store/sharedata'
|
|
import { httpPost } from '@/utils/http'
|
|
import { dateFormat, processContent } from '@/utils/libs'
|
|
import { DocumentCopy, Refresh } from '@element-plus/icons-vue'
|
|
import { ElMessage } from 'element-plus'
|
|
import hl from 'highlight.js'
|
|
import MarkdownIt from 'markdown-it'
|
|
import emoji from 'markdown-it-emoji'
|
|
import mathjaxPlugin from 'markdown-it-mathjax3'
|
|
import { ref } from 'vue'
|
|
// eslint-disable-next-line no-undef,no-unused-vars
|
|
const props = defineProps({
|
|
data: {
|
|
type: Object,
|
|
default: {
|
|
icon: '',
|
|
content: '',
|
|
created_at: '',
|
|
tokens: 0,
|
|
},
|
|
},
|
|
readOnly: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
listStyle: {
|
|
type: String,
|
|
default: 'list',
|
|
},
|
|
})
|
|
|
|
const audio = ref(null)
|
|
const isPlaying = ref(false)
|
|
const playIcon = ref('/images/voice.gif')
|
|
const store = useSharedStore()
|
|
|
|
const md = new MarkdownIt({
|
|
breaks: true,
|
|
html: true,
|
|
linkify: true,
|
|
typographer: true,
|
|
highlight: function (str, lang) {
|
|
const codeIndex = parseInt(Date.now()) + Math.floor(Math.random() * 10000000)
|
|
// 显示复制代码按钮
|
|
const copyBtn = `<span class="copy-code-btn" data-clipboard-action="copy" data-clipboard-target="#copy-target-${codeIndex}">复制</span>
|
|
<textarea style="position: absolute;top: -9999px;left: -9999px;z-index: -9999;" id="copy-target-${codeIndex}">${str.replace(
|
|
/<\/textarea>/g,
|
|
'</textarea>'
|
|
)}</textarea>`
|
|
if (lang && hl.getLanguage(lang)) {
|
|
const langHtml = `<span class="lang-name">${lang}</span>`
|
|
// 处理代码高亮
|
|
const preCode = hl.highlight(str, { language: lang }).value
|
|
// 将代码包裹在 pre 中
|
|
return `<pre class="code-container"><code class="language-${lang} hljs">${preCode}</code>${copyBtn} ${langHtml}</pre>`
|
|
}
|
|
|
|
// 处理代码高亮
|
|
const preCode = md.utils.escapeHtml(str)
|
|
// 将代码包裹在 pre 中
|
|
return `<pre class="code-container"><code class="language-${lang} hljs">${preCode}</code>${copyBtn}</pre>`
|
|
},
|
|
})
|
|
md.use(mathjaxPlugin)
|
|
md.use(emoji)
|
|
const emits = defineEmits(['regen'])
|
|
|
|
if (!props.data.icon) {
|
|
props.data.icon = 'images/gpt-icon.png'
|
|
}
|
|
|
|
const synthesis = (text) => {
|
|
isPlaying.value = true
|
|
httpPost('/api/chat/tts', { text: text, model_id: store.ttsModel }, { responseType: 'blob' })
|
|
.then((response) => {
|
|
// 创建 Blob 对象,明确指定 MIME 类型
|
|
const blob = new Blob([response], { type: 'audio/mpeg' }) // 假设音频格式为 MP3
|
|
const audioUrl = URL.createObjectURL(blob)
|
|
// 播放音频
|
|
audio.value.src = audioUrl
|
|
audio.value
|
|
.play()
|
|
.then(() => {
|
|
// 播放完成后释放 URL
|
|
URL.revokeObjectURL(audioUrl)
|
|
})
|
|
.catch(() => {
|
|
ElMessage.error('音频播放失败,请检查浏览器是否支持该音频格式')
|
|
isPlaying.value = false
|
|
})
|
|
})
|
|
.catch((e) => {
|
|
ElMessage.error('语音合成失败:' + e.message)
|
|
isPlaying.value = false
|
|
})
|
|
}
|
|
|
|
const stopSynthesis = () => {
|
|
isPlaying.value = false
|
|
audio.value.pause()
|
|
audio.value.currentTime = 0
|
|
}
|
|
|
|
// 重新生成
|
|
const reGenerate = (prompt) => {
|
|
console.log(prompt)
|
|
emits('regen', prompt)
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
@import '@/assets/css/markdown/vue.css';
|
|
|
|
.chat-page,.chat-export {
|
|
--font-family: Menlo,"微软雅黑","Roboto Mono","Courier New",Courier,monospace,"Inter",sans-serif;
|
|
font-family: var(--font-family);
|
|
|
|
.chat-line {
|
|
.boxed {
|
|
border: 1px solid var(--el-border-color);
|
|
border-radius: 5px;
|
|
padding: 0 5px;
|
|
}
|
|
.chat-item {
|
|
.content-wrapper {
|
|
img {
|
|
max-width: 600px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
p {
|
|
line-height 1.5
|
|
|
|
code {
|
|
color:var(--theme-text-color-primary);
|
|
font-weight 600
|
|
}
|
|
}
|
|
|
|
p:last-child {
|
|
margin-bottom: 0
|
|
}
|
|
|
|
p:first-child {
|
|
margin-top 0
|
|
}
|
|
|
|
.code-container {
|
|
position relative
|
|
display flex
|
|
|
|
.hljs {
|
|
border-radius 10px
|
|
width 100%
|
|
}
|
|
|
|
.copy-code-btn {
|
|
position: absolute;
|
|
right 10px
|
|
top 10px
|
|
cursor pointer
|
|
font-size 12px
|
|
color #c1c1c1
|
|
|
|
&:hover {
|
|
color #20a0ff
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.lang-name {
|
|
position absolute;
|
|
right 10px
|
|
bottom 20px
|
|
padding 2px 6px 4px 6px
|
|
background-color #444444
|
|
border-radius 10px
|
|
color #00e0e0
|
|
}
|
|
|
|
|
|
// 设置表格边框
|
|
|
|
table {
|
|
width 100%
|
|
margin-bottom 1rem
|
|
border-collapse collapse;
|
|
border 1px solid #dee2e6;
|
|
background-color:var(--chat-content-bg);
|
|
color:var(--theme-text-color-primary);
|
|
|
|
thead {
|
|
th {
|
|
border 1px solid #dee2e6
|
|
vertical-align: bottom
|
|
border-bottom: 2px solid #dee2e6
|
|
padding 10px
|
|
}
|
|
}
|
|
|
|
td {
|
|
border 1px solid #dee2e6
|
|
padding 10px
|
|
}
|
|
}
|
|
|
|
// 代码快
|
|
|
|
blockquote {
|
|
margin 0 0 0.8rem 0
|
|
background-color: var(--quote-bg-color);
|
|
padding: 0.8rem 1.5rem;
|
|
color: var(--quote-text-color);
|
|
border-left: 0.4rem solid #6b50e1; /* 紫色边框 */
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.chat-line-reply-list {
|
|
justify-content: center;
|
|
background-color: var(--chat-content-bg);
|
|
color:var(--theme-text-color-primary);
|
|
width 100%
|
|
padding-bottom: 1.5rem;
|
|
padding-top: 1.5rem;
|
|
border: 1px solid var(--el-border-color);
|
|
border-radius: 10px;
|
|
|
|
.chat-line-inner {
|
|
display flex;
|
|
width 100%;
|
|
max-width 900px;
|
|
padding-left 10px;
|
|
|
|
.chat-icon {
|
|
margin-right 20px;
|
|
|
|
img {
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 50%;
|
|
padding: 1px;
|
|
}
|
|
}
|
|
|
|
.chat-item {
|
|
width 100%
|
|
position: relative;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
|
|
.content-wrapper {
|
|
min-height 20px;
|
|
word-break break-word;
|
|
padding: 0
|
|
color:var(--theme-text-color-primary);
|
|
font-size: var(--content-font-size);
|
|
border-radius: 5px;
|
|
overflow auto;
|
|
}
|
|
|
|
|
|
.bar {
|
|
padding 10px 10px 10px 0;
|
|
|
|
.bar-item {
|
|
margin-right 10px;
|
|
border-radius 5px;
|
|
cursor pointer
|
|
display flex
|
|
align-items center
|
|
justify-content center
|
|
height 26px
|
|
|
|
.voice-icon {
|
|
width 20px
|
|
height 20px
|
|
}
|
|
|
|
.el-icon {
|
|
position relative
|
|
top 2px;
|
|
cursor pointer
|
|
}
|
|
}
|
|
|
|
.el-button {
|
|
height 20px
|
|
padding 5px 2px;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.tool-box {
|
|
font-size 16px;
|
|
|
|
.el-button {
|
|
height 20px
|
|
padding 5px 2px;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.chat-line-reply-chat {
|
|
justify-content: center;
|
|
padding 1.5rem;
|
|
|
|
.chat-line-inner {
|
|
display flex;
|
|
width 100%
|
|
flex-flow row
|
|
|
|
.chat-icon {
|
|
margin-right 20px;
|
|
|
|
img {
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 50%
|
|
padding: 1px;
|
|
}
|
|
}
|
|
|
|
.chat-item {
|
|
position: relative;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
width 100%
|
|
max-width calc(100% - 110px)
|
|
|
|
.content-wrapper {
|
|
display flex
|
|
.content {
|
|
min-height 20px;
|
|
word-break break-word;
|
|
padding: 1rem
|
|
color var(--theme-text-primary);
|
|
|
|
font-size: var(--content-font-size);
|
|
overflow auto;
|
|
// background-color #F5F5F5
|
|
background-color :var(--chat-content-bg);
|
|
border-radius: 0 10px 10px 10px;
|
|
width 100%
|
|
}
|
|
|
|
}
|
|
|
|
.bar {
|
|
padding 10px 10px 10px 0;
|
|
display flex
|
|
|
|
.bar-item {
|
|
margin-right 10px;
|
|
border-radius 5px;
|
|
display flex
|
|
align-items center
|
|
justify-content center
|
|
height 26px
|
|
|
|
.voice-icon {
|
|
width 20px
|
|
height 20px
|
|
}
|
|
|
|
|
|
.el-icon {
|
|
position relative
|
|
top 2px;
|
|
cursor pointer
|
|
}
|
|
}
|
|
|
|
.bar-item.bg {
|
|
// background-color var( --gray-btn-bg)
|
|
cursor pointer
|
|
}
|
|
|
|
.el-button {
|
|
height 20px
|
|
padding 5px 2px;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.tool-box {
|
|
font-size 16px;
|
|
|
|
.el-button {
|
|
height 20px
|
|
padding 5px 2px;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
</style>
|