高亮文本显示增加富文本格式处理,能正确显示表情、换行符等;视频类消息能直接在消息记录中查看并播放;处理文件格式校验,预览文件前先校验

This commit is contained in:
wangyifeng 2025-07-04 11:38:57 +08:00
parent 6a54757c6a
commit 481719a685
4 changed files with 175 additions and 37 deletions

View File

@ -1,70 +1,172 @@
<template> <template>
<span> <span>
<template v-if="isHtml">
<span v-html="highlightedHtml" />
</template>
<template v-else>
<span class="text-content">
<template v-for="(part, index) in parts" :key="index"> <template v-for="(part, index) in parts" :key="index">
<span v-if="part.highlighted" :class="highlightClass"> <span
{{ part.text }} v-if="part.highlighted"
:class="highlightClass"
v-html="textReplaceEmoji(part.text)"
/>
<span v-else v-html="textReplaceEmoji(part.text)" />
</template>
</span> </span>
<span v-else>{{ part.text }}</span>
</template> </template>
</span> </span>
</template> </template>
<script setup> <script setup>
import { computed } from 'vue' import { computed } from 'vue'
import { textReplaceEmoji } from '@/utils/emojis'
const props = defineProps({ const props = defineProps({
text: { text: {
type: String, type: String,
required: true, required: true
}, },
searchText: { searchText: {
type: String, type: String,
default: '', default: ''
}, },
highlightClass: { highlightClass: {
type: String, type: String,
default: 'highlight', default: 'highlight'
}, }
})
// HTML
const isHtml = computed(() => {
return /<[^>]*>/g.test(props.text)
}) })
const escapedSearchText = computed(() => const escapedSearchText = computed(() =>
String(props.searchText).replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'), String(props.searchText).replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&')
) )
const pattern = computed(() => new RegExp(escapedSearchText.value, 'gi')) const pattern = computed(() => new RegExp(escapedSearchText.value, 'gi'))
const parts = computed(() => { const parts = computed(() => {
if (!props.searchText || !props.text) if (!props.searchText || !props.text) return [{ text: props.text, highlighted: false }]
return [{ text: props.text, highlighted: false }];
const result = []; const result = []
let currentIndex = 0; let currentIndex = 0
const escapedSearchTextValue = escapedSearchText.value; const escapedSearchTextValue = escapedSearchText.value
const searchPattern = new RegExp(`(${escapedSearchTextValue})`, 'gi'); const searchPattern = new RegExp(`(${escapedSearchTextValue})`, 'gi')
props.text.replace(searchPattern, (match, p1, offset) => { props.text.replace(searchPattern, (match, p1, offset) => {
// //
if (currentIndex < offset) { if (currentIndex < offset) {
result.push({ text: props.text.slice(currentIndex, offset), highlighted: false }); result.push({ text: props.text.slice(currentIndex, offset), highlighted: false })
} }
// //
result.push({ text: p1, highlighted: true }); result.push({ text: p1, highlighted: true })
// //
currentIndex = offset + p1.length; currentIndex = offset + p1.length
return p1; // replace return p1 // replace
}); })
// //
if (currentIndex < props.text.length) { if (currentIndex < props.text.length) {
result.push({ text: props.text.slice(currentIndex), highlighted: false }); result.push({ text: props.text.slice(currentIndex), highlighted: false })
} }
return result; return result
}); })
//
const processSpecialChars = (text) => {
return (
text
//
.replace(/\n/g, '<br>')
//
.replace(/\t/g, '&nbsp;&nbsp;&nbsp;&nbsp;')
// &nbsp;
.replace(/ {2,}/g, (match) => {
return '&nbsp;'.repeat(match.length)
})
//
.replace(/[\u200B-\u200D\uFEFF]/g, '')
)
}
// HTML - 使
const highlightedHtml = computed(() => {
if (!props.searchText || !props.text) {
//
return textReplaceEmoji(processSpecialChars(props.text))
}
// 使
// HTML
// HTML
const parts = []
let lastIndex = 0
const tagRegex = /<[^>]*>/g
let tagMatch
// lastIndex
tagRegex.lastIndex = 0
while ((tagMatch = tagRegex.exec(props.text)) !== null) {
//
if (tagMatch.index > lastIndex) {
const textBeforeTag = props.text.slice(lastIndex, tagMatch.index)
if (textBeforeTag) {
//
const processedText = processSpecialChars(textBeforeTag)
const searchPattern = new RegExp(`(${escapedSearchText.value})`, 'gi')
const highlightedText = processedText.replace(
searchPattern,
`<span class="${props.highlightClass}">$1</span>`
)
parts.push(highlightedText)
}
}
//
parts.push(tagMatch[0])
lastIndex = tagMatch.index + tagMatch[0].length
}
//
if (lastIndex < props.text.length) {
const textAfterLastTag = props.text.slice(lastIndex)
if (textAfterLastTag) {
//
const processedText = processSpecialChars(textAfterLastTag)
const searchPattern = new RegExp(`(${escapedSearchText.value})`, 'gi')
const highlightedText = processedText.replace(
searchPattern,
`<span class="${props.highlightClass}">$1</span>`
)
parts.push(highlightedText)
}
}
let html = parts.join('')
//
return textReplaceEmoji(html)
})
</script> </script>
<style scoped> <style scoped>
.highlight { .highlight {
color: #7a58de; color: #7a58de;
} }
.text-content {
white-space: pre-wrap;
word-break: break-word;
:deep(.emoji) {
vertical-align: text-bottom!important;
margin: 0 5px !important;
width: 22px !important;
height: 22px !important;
}
}
</style> </style>

View File

@ -137,7 +137,7 @@
@click="toDialogueByMember(item)" @click="toDialogueByMember(item)"
:searchResultKey="'search_by_member_condition'" :searchResultKey="'search_by_member_condition'"
:searchItem="item" :searchItem="item"
:searchText="state.searchText" :searchText="props?.searchRecordByConditionText"
:searchRecordDetail="true" :searchRecordDetail="true"
></searchItem> ></searchItem>
</div> </div>
@ -305,6 +305,7 @@ import { parseTime } from '@/utils/datetime'
import { fileFormatSize, fileSuffix } from '@/utils/strings' import { fileFormatSize, fileSuffix } from '@/utils/strings'
import { NImage, NInfiniteScroll, NScrollbar, NIcon, NDatePicker } from 'naive-ui' import { NImage, NInfiniteScroll, NScrollbar, NIcon, NDatePicker } from 'naive-ui'
import { MessageComponents } from '@/constant/message' import { MessageComponents } from '@/constant/message'
import { checkFileCanPreview } from '@/utils/helper/form'
const emits = defineEmits([ const emits = defineEmits([
'clearSearchMemberByAlphabet', 'clearSearchMemberByAlphabet',
@ -693,11 +694,15 @@ const previewPDF = (item) => {
// downloadAndOpenFile(item) // downloadAndOpenFile(item)
// }) // })
// } // }
if(checkFileCanPreview(item?.extra?.path || '')){
window.open( window.open(
`${import.meta.env.VITE_PAGE_URL}/office?url=${item.extra.path}`, `${import.meta.env.VITE_PAGE_URL}/office?url=${item.extra.path}`,
'_blank', '_blank',
'width=1200,height=900,left=200,top=200,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,status=no' 'width=1200,height=900,left=200,top=200,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,status=no'
) )
} else {
toDialogueByMember(item)
}
} }
const downloadAndOpenFile = (item) => { const downloadAndOpenFile = (item) => {

View File

@ -69,9 +69,9 @@
class="text-[12px] font-regular" class="text-[12px] font-regular"
:text="resultDetail" :text="resultDetail"
:searchText="props.searchText" :searchText="props.searchText"
v-if="props.searchItem?.msg_type !== 3 && props.searchItem?.msg_type !== 6" v-if="props.searchItem?.msg_type !== 3 && props.searchItem?.msg_type !== 5 && props.searchItem?.msg_type !== 6"
/> />
<div class="message-component-wrapper" v-if="props.searchItem?.msg_type === 3" @click.stop> <div class="message-component-wrapper" v-if="props.searchItem?.msg_type === 3 || props.searchItem?.msg_type === 5" @click.stop>
<component <component
:is="MessageComponents[props.searchItem?.msg_type] || 'unknown-message'" :is="MessageComponents[props.searchItem?.msg_type] || 'unknown-message'"
:extra="resultDetail" :extra="resultDetail"
@ -122,6 +122,7 @@ import { ref, watch, computed, onMounted, onUnmounted, reactive, defineProps } f
import HighlightText from './highLightText.vue' import HighlightText from './highLightText.vue'
import { beautifyTime } from '@/utils/datetime' import { beautifyTime } from '@/utils/datetime'
import { ChatMsgTypeMapping, MessageComponents } from '@/constant/message' import { ChatMsgTypeMapping, MessageComponents } from '@/constant/message'
import { checkFileCanPreview } from '@/utils/helper/form'
const props = defineProps({ const props = defineProps({
searchItem: Object | Number, searchItem: Object | Number,
searchResultKey: { searchResultKey: {
@ -291,7 +292,7 @@ const resultDetail = computed(() => {
result_detail = result_detail =
props.searchItem?.msg_type === 1 props.searchItem?.msg_type === 1
? props.searchItem?.extra?.content ? props.searchItem?.extra?.content
: props.searchItem?.msg_type === 3 || props.searchItem?.msg_type === 6 : props.searchItem?.msg_type === 3 || props.searchItem?.msg_type === 5 || props.searchItem?.msg_type === 6
? props.searchItem?.extra ? props.searchItem?.extra
: ChatMsgTypeMapping[props.searchItem?.msg_type] : ChatMsgTypeMapping[props.searchItem?.msg_type]
break break
@ -310,11 +311,15 @@ const previewPDF = (item) => {
// downloadAndOpenFile(item) // downloadAndOpenFile(item)
// }) // })
// } // }
if(checkFileCanPreview(item?.extra?.path || '')){
window.open( window.open(
`${import.meta.env.VITE_PAGE_URL}/office?url=${item}`, `${import.meta.env.VITE_PAGE_URL}/office?url=${item}`,
'_blank', '_blank',
'width=1200,height=900,left=200,top=200,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,status=no' 'width=1200,height=900,left=200,top=200,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,status=no'
) )
} else {
//
}
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>

View File

@ -345,3 +345,29 @@ export const formatNumberWithCommas = (num) => {
} }
return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ","); return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}; };
// 判断文件是否可以预览
export const checkFileCanPreview = (path) => {
if (!path) {
return false
}
//PDF文件扩展名映射
const PDF_EXTENSIONS = ['PDF', 'pdf']
// Excel文件扩展名映射
const EXCEL_EXTENSIONS = ['XLS', 'XLSX', 'CSV', 'xls', 'xlsx', 'csv']
// Word文件扩展名映射
const WORD_EXTENSIONS = ['DOC', 'DOCX', 'RTF', 'DOT', 'DOTX', 'doc', 'docx', 'rtf', 'dot', 'dotx']
// PPT文件扩展名映射
const PPT_EXTENSIONS = ['PPT', 'PPTX', 'PPS', 'PPSX', 'ppt', 'pptx', 'pps', 'ppsx']
// 获取文件扩展名
function getFileExtension(filepath) {
const parts = filepath?.split('.')
return parts?.length > 1 ? parts?.pop()?.toUpperCase() : ''
}
const extension = getFileExtension(path)
return PDF_EXTENSIONS.includes(extension) ||
EXCEL_EXTENSIONS.includes(extension) ||
WORD_EXTENSIONS.includes(extension) ||
PPT_EXTENSIONS.includes(extension)
}