You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
467 lines
11 KiB
467 lines
11 KiB
<template>
|
|
<div class="chat-message-item">
|
|
<div class="message-tip" v-if="msgInfo.type == $enums.MESSAGE_TYPE.TIP_TEXT">
|
|
{{ msgInfo.content }}
|
|
</div>
|
|
<div class="message-tip" v-else-if="msgInfo.type == $enums.MESSAGE_TYPE.TIP_TIME">
|
|
{{ $date.toTimeText(msgInfo.sendTime) }}
|
|
</div>
|
|
<div class="message-normal" v-else-if="isNormal" :class="{ 'message-mine': mine }">
|
|
<div class="head-image">
|
|
<head-image :name="showName" :size="38" :url="headImage" :id="msgInfo.sendId"></head-image>
|
|
</div>
|
|
<div class="content">
|
|
<div v-show="mode == 1 && msgInfo.groupId && !msgInfo.selfSend" class="message-top">
|
|
<span>{{ showName }}</span>
|
|
</div>
|
|
<div v-show="mode == 2" class="message-top">
|
|
<span>{{ showName }}</span>
|
|
<span>{{ $date.toTimeText(msgInfo.sendTime) }}</span>
|
|
</div>
|
|
<div class="message-bottom" @contextmenu.prevent="showRightMenu($event)">
|
|
<div ref="chatMsgBox">
|
|
<span class="message-text" v-if="msgInfo.type == $enums.MESSAGE_TYPE.TEXT"
|
|
v-html="htmlText"></span>
|
|
<div class="message-image" v-if="msgInfo.type == $enums.MESSAGE_TYPE.IMAGE">
|
|
<div class="img-load-box" v-loading="loading" element-loading-text="上传中.."
|
|
element-loading-background="rgba(0, 0, 0, 0.4)">
|
|
<img class="send-image" :src="JSON.parse(msgInfo.content).thumbUrl"
|
|
@click="showFullImageBox()" loading="lazy" />
|
|
</div>
|
|
<span title="发送失败" v-show="loadFail" @click="onSendFail"
|
|
class="send-fail el-icon-warning"></span>
|
|
</div>
|
|
<div class="message-file" v-if="msgInfo.type == $enums.MESSAGE_TYPE.FILE">
|
|
<div class="chat-file-box" v-loading="loading">
|
|
<div class="chat-file-info">
|
|
<el-link class="chat-file-name" :underline="true" target="_blank" type="primary"
|
|
:href="data.url" :download="data.name">{{ data.name }}</el-link>
|
|
<div class="chat-file-size">{{ fileSize }}</div>
|
|
</div>
|
|
<div class="chat-file-icon">
|
|
<span type="primary" class="el-icon-document"></span>
|
|
</div>
|
|
</div>
|
|
<span title="发送失败" v-show="loadFail" @click="onSendFail"
|
|
class="send-fail el-icon-warning"></span>
|
|
</div>
|
|
</div>
|
|
<div class="message-voice" v-if="msgInfo.type == $enums.MESSAGE_TYPE.AUDIO" @click="onPlayVoice()">
|
|
<audio controls :src="JSON.parse(msgInfo.content).url"></audio>
|
|
</div>
|
|
<div class="chat-action message-text" v-if="isAction">
|
|
<span v-if="msgInfo.type == $enums.MESSAGE_TYPE.ACT_RT_VOICE" title="重新呼叫"
|
|
@click="$emit('call')" class="iconfont icon-chat-voice"></span>
|
|
<span v-if="msgInfo.type == $enums.MESSAGE_TYPE.ACT_RT_VIDEO" title="重新呼叫"
|
|
@click="$emit('call')" class="iconfont icon-chat-video"></span>
|
|
<span>{{ msgInfo.content }}</span>
|
|
</div>
|
|
<div class="message-status" v-if="!isAction">
|
|
<span class="chat-readed" v-show="msgInfo.selfSend && !msgInfo.groupId
|
|
&& msgInfo.status == $enums.MESSAGE_STATUS.READED">已读</span>
|
|
<span class="chat-unread" v-show="msgInfo.selfSend && !msgInfo.groupId
|
|
&& msgInfo.status != $enums.MESSAGE_STATUS.READED">未读</span>
|
|
</div>
|
|
<div class="chat-receipt" v-show="msgInfo.receipt" @click="onShowReadedBox">
|
|
<span v-if="msgInfo.receiptOk" class="icon iconfont icon-ok" title="全体已读"></span>
|
|
<span v-else>{{ msgInfo.readedCount }}人已读</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<right-menu ref="rightMenu" @select="onSelectMenu"></right-menu>
|
|
<chat-group-readed ref="chatGroupReadedBox" :msgInfo="msgInfo" :groupMembers="groupMembers"></chat-group-readed>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import HeadImage from "../common/HeadImage.vue";
|
|
import RightMenu from '../common/RightMenu.vue';
|
|
import ChatGroupReaded from './ChatGroupReaded.vue';
|
|
export default {
|
|
name: "messageItem",
|
|
components: {
|
|
HeadImage,
|
|
RightMenu,
|
|
ChatGroupReaded
|
|
},
|
|
props: {
|
|
mode: {
|
|
type: Number,
|
|
default: 1
|
|
},
|
|
mine: {
|
|
type: Boolean,
|
|
required: true
|
|
},
|
|
headImage: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
showName: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
msgInfo: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
groupMembers: {
|
|
type: Array
|
|
},
|
|
menu: {
|
|
type: Boolean,
|
|
default: true
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
audioPlayState: 'STOP'
|
|
}
|
|
},
|
|
methods: {
|
|
onSendFail() {
|
|
this.$message.error("该文件已发送失败,目前不支持自动重新发送,建议手动重新发送")
|
|
},
|
|
showFullImageBox() {
|
|
let imageUrl = JSON.parse(this.msgInfo.content).originUrl;
|
|
if (imageUrl) {
|
|
this.$store.commit('showFullImageBox', imageUrl);
|
|
}
|
|
},
|
|
onPlayVoice() {
|
|
if (!this.audio) {
|
|
this.audio = new Audio();
|
|
}
|
|
this.audio.src = JSON.parse(this.msgInfo.content).url;
|
|
this.audio.play();
|
|
this.onPlayVoice = 'RUNNING';
|
|
},
|
|
showRightMenu(e) {
|
|
this.$refs.rightMenu.open(e, this.menuItems);
|
|
},
|
|
onSelectMenu(item) {
|
|
this.$emit(item.key.toLowerCase(), this.msgInfo);
|
|
},
|
|
onShowReadedBox() {
|
|
let rect = this.$refs.chatMsgBox.getBoundingClientRect();
|
|
this.$refs.chatGroupReadedBox.open(rect);
|
|
}
|
|
},
|
|
computed: {
|
|
loading() {
|
|
return this.msgInfo.loadStatus && this.msgInfo.loadStatus === "loading";
|
|
},
|
|
loadFail() {
|
|
return this.msgInfo.loadStatus && this.msgInfo.loadStatus === "fail";
|
|
},
|
|
data() {
|
|
return JSON.parse(this.msgInfo.content)
|
|
},
|
|
fileSize() {
|
|
let size = this.data.size;
|
|
if (size > 1024 * 1024) {
|
|
return Math.round(size / 1024 / 1024) + "M";
|
|
}
|
|
if (size > 1024) {
|
|
return Math.round(size / 1024) + "KB";
|
|
}
|
|
return size + "B";
|
|
},
|
|
menuItems() {
|
|
let items = [];
|
|
items.push({
|
|
key: 'DELETE',
|
|
name: '删除',
|
|
icon: 'el-icon-delete'
|
|
});
|
|
if (this.msgInfo.selfSend && this.msgInfo.id > 0) {
|
|
items.push({
|
|
key: 'RECALL',
|
|
name: '撤回',
|
|
icon: 'el-icon-refresh-left'
|
|
});
|
|
}
|
|
return items;
|
|
},
|
|
isAction() {
|
|
return this.$msgType.isAction(this.msgInfo.type);
|
|
},
|
|
isNormal() {
|
|
const type = this.msgInfo.type;
|
|
return this.$msgType.isNormal(type) || this.$msgType.isAction(type)
|
|
},
|
|
htmlText() {
|
|
let color = this.msgInfo.selfSend ? 'white' : '';
|
|
let text = this.$url.replaceURLWithHTMLLinks(this.msgInfo.content, color)
|
|
return this.$emo.transform(text, 'emoji-normal')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.chat-message-item {
|
|
|
|
.message-tip {
|
|
line-height: 50px;
|
|
font-size: var(--im-font-size-small);
|
|
color: var(--im-text-color-light);
|
|
}
|
|
|
|
.message-normal {
|
|
position: relative;
|
|
font-size: 0;
|
|
padding-left: 48px;
|
|
min-height: 50px;
|
|
margin-top: 10px;
|
|
|
|
.head-image {
|
|
position: absolute;
|
|
width: 40px;
|
|
height: 40px;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.content {
|
|
text-align: left;
|
|
|
|
.send-fail {
|
|
color: #e60c0c;
|
|
font-size: 30px;
|
|
cursor: pointer;
|
|
margin: 0 20px;
|
|
}
|
|
|
|
.message-top {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
color: var(--im-text-color-light);
|
|
font-size: var(--im-font-size);
|
|
line-height: 20px;
|
|
|
|
span {
|
|
margin-right: 12px;
|
|
}
|
|
}
|
|
|
|
.message-bottom {
|
|
display: inline-block;
|
|
padding-right: 300px;
|
|
padding-left: 5px;
|
|
|
|
.message-text {
|
|
display: inline-block;
|
|
position: relative;
|
|
line-height: 26px;
|
|
//margin-top: 3px;
|
|
padding: 6px 10px;
|
|
background-color: var(--im-background);
|
|
border-radius: 10px;
|
|
font-size: var(--im-font-size);
|
|
text-align: left;
|
|
white-space: pre-wrap;
|
|
word-break: break-all;
|
|
|
|
&:after {
|
|
content: "";
|
|
position: absolute;
|
|
left: -10px;
|
|
top: 13px;
|
|
width: 0;
|
|
height: 0;
|
|
border-style: solid dashed dashed;
|
|
border-color: #eee transparent transparent;
|
|
overflow: hidden;
|
|
border-width: 10px;
|
|
}
|
|
}
|
|
|
|
.message-image {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
|
|
.send-image {
|
|
min-width: 200px;
|
|
min-height: 150px;
|
|
max-width: 400px;
|
|
max-height: 300px;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
}
|
|
|
|
.message-file {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
margin-bottom: 2px;
|
|
|
|
.chat-file-box {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
min-height: 60px;
|
|
box-shadow: var(--im-box-shadow-light);
|
|
border-radius: 4px;
|
|
padding: 10px 15px;
|
|
|
|
.chat-file-info {
|
|
flex: 1;
|
|
height: 100%;
|
|
text-align: left;
|
|
font-size: 14px;
|
|
margin-right: 10px;
|
|
|
|
.chat-file-name {
|
|
display: inline-block;
|
|
min-width: 160px;
|
|
max-width: 220px;
|
|
font-size: 14px;
|
|
margin-bottom: 4px;
|
|
white-space: pre-wrap;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.chat-file-size {
|
|
font-size: var(--im-font-size-smaller);
|
|
color: var(--im-text-color-light);
|
|
}
|
|
}
|
|
|
|
.chat-file-icon {
|
|
font-size: 44px;
|
|
color: #d42e07;
|
|
}
|
|
}
|
|
|
|
.send-fail {
|
|
color: #e60c0c;
|
|
font-size: 30px;
|
|
cursor: pointer;
|
|
margin: 0 20px;
|
|
}
|
|
|
|
}
|
|
|
|
.message-voice {
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
|
|
audio {
|
|
height: 45px;
|
|
padding: 5px 0;
|
|
}
|
|
}
|
|
|
|
.chat-action {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.iconfont {
|
|
cursor: pointer;
|
|
font-size: 22px;
|
|
padding-right: 8px;
|
|
}
|
|
}
|
|
|
|
.message-status {
|
|
display: block;
|
|
|
|
.chat-readed {
|
|
font-size: 12px;
|
|
color: var(--im-text-color-light);
|
|
}
|
|
|
|
.chat-unread {
|
|
font-size: var(--im-font-size-smaller);
|
|
color: var(--im-color-danger);
|
|
}
|
|
}
|
|
|
|
.chat-receipt {
|
|
font-size: var(--im-font-size-smaller);
|
|
cursor: pointer;
|
|
color: var(--im-text-color-light);
|
|
|
|
.icon-ok {
|
|
font-size: 20px;
|
|
color: var(--im-color-sucess);
|
|
}
|
|
}
|
|
|
|
.chat-at-user {
|
|
padding: 2px 5px;
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
&.message-mine {
|
|
text-align: right;
|
|
padding-left: 0;
|
|
padding-right: 48px;
|
|
|
|
.head-image {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
.content {
|
|
text-align: right;
|
|
|
|
.message-top {
|
|
flex-direction: row-reverse;
|
|
|
|
span {
|
|
margin-left: 12px;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.message-bottom {
|
|
padding-left: 180px;
|
|
padding-right: 5px;
|
|
|
|
.message-text {
|
|
margin-left: 10px;
|
|
background-color: var(--im-color-primary-light-2);
|
|
color: #fff;
|
|
|
|
&:after {
|
|
left: auto;
|
|
right: -10px;
|
|
border-top-color: var(--im-color-primary-light-2);
|
|
}
|
|
}
|
|
|
|
.message-image {
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.message-file {
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.chat-action {
|
|
flex-direction: row-reverse;
|
|
|
|
.iconfont {
|
|
transform: rotateY(180deg);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
</style>
|