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

3 years ago
<template>
10 months ago
<div class="chat-message-item">
<div class="message-tip" v-if="msgInfo.type == $enums.MESSAGE_TYPE.TIP_TEXT">
{{ msgInfo.content }}
</div>
10 months ago
<div class="message-tip" v-else-if="msgInfo.type == $enums.MESSAGE_TYPE.TIP_TIME">
{{ $date.toTimeText(msgInfo.sendTime) }}
</div>
10 months ago
<div class="message-normal" v-else-if="isNormal" :class="{ 'message-mine': mine }">
3 years ago
<div class="head-image">
1 year ago
<head-image :name="showName" :size="38" :url="headImage" :id="msgInfo.sendId"></head-image>
3 years ago
</div>
10 months ago
<div class="content">
<div v-show="mode == 1 && msgInfo.groupId && !msgInfo.selfSend" class="message-top">
<span>{{ showName }}</span>
2 years ago
</div>
10 months ago
<div v-show="mode == 2" class="message-top">
<span>{{ showName }}</span>
<span>{{ $date.toTimeText(msgInfo.sendTime) }}</span>
3 years ago
</div>
10 months ago
<div class="message-bottom" @contextmenu.prevent="showRightMenu($event)">
<div ref="chatMsgBox">
10 months ago
<span class="message-text" v-if="msgInfo.type == $enums.MESSAGE_TYPE.TEXT"
v-html="htmlText"></span>
10 months ago
<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" />
3 years ago
</div>
<span title="发送失败" v-show="loadFail" @click="onSendFail"
class="send-fail el-icon-warning"></span>
</div>
10 months ago
<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>
3 years ago
</div>
<span title="发送失败" v-show="loadFail" @click="onSendFail"
class="send-fail el-icon-warning"></span>
3 years ago
</div>
</div>
10 months ago
<div class="message-voice" v-if="msgInfo.type == $enums.MESSAGE_TYPE.AUDIO" @click="onPlayVoice()">
3 years ago
<audio controls :src="JSON.parse(msgInfo.content).url"></audio>
</div>
10 months ago
<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>
10 months ago
<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>
3 years ago
</div>
</div>
</div>
<right-menu ref="rightMenu" @select="onSelectMenu"></right-menu>
<chat-group-readed ref="chatGroupReadedBox" :msgInfo="msgInfo" :groupMembers="groupMembers"></chat-group-readed>
3 years ago
</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("该文件已发送失败,目前不支持自动重新发送,建议手动重新发送")
3 years ago
},
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) {
3 years ago
items.push({
key: 'RECALL',
name: '撤回',
icon: 'el-icon-refresh-left'
3 years ago
});
}
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)
10 months ago
return this.$emo.transform(text, 'emoji-normal')
3 years ago
}
}
}
3 years ago
</script>
10 months ago
<style lang="scss" scoped>
.chat-message-item {
10 months ago
.message-tip {
line-height: 50px;
font-size: var(--im-font-size-small);
color: var(--im-text-color-light);
}
10 months ago
.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;
3 years ago
}
10 months ago
.content {
text-align: left;
.send-fail {
color: #e60c0c;
font-size: 30px;
cursor: pointer;
margin: 0 20px;
3 years ago
}
10 months ago
.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;
}
}
10 months ago
.message-bottom {
display: inline-block;
padding-right: 300px;
padding-left: 5px;
10 months ago
.message-text {
11 months ago
display: inline-block;
position: relative;
line-height: 26px;
//margin-top: 3px;
padding: 6px 10px;
background-color: var(--im-background);
border-radius: 10px;
1 year ago
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;
3 years ago
}
}
10 months ago
.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;
3 years ago
}
}
10 months ago
.message-file {
display: flex;
flex-wrap: nowrap;
flex-direction: row;
align-items: center;
cursor: pointer;
margin-bottom: 2px;
.chat-file-box {
3 years ago
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);
}
3 years ago
}
.chat-file-icon {
font-size: 44px;
color: #d42e07;
}
3 years ago
}
.send-fail {
color: #e60c0c;
font-size: 30px;
3 years ago
cursor: pointer;
margin: 0 20px;
}
3 years ago
}
3 years ago
10 months ago
.message-voice {
font-size: 14px;
cursor: pointer;
audio {
height: 45px;
padding: 5px 0;
3 years ago
}
}
3 years ago
.chat-action {
display: flex;
align-items: center;
3 years ago
.iconfont {
cursor: pointer;
font-size: 22px;
padding-right: 8px;
}
}
10 months ago
.message-status {
display: block;
.chat-readed {
font-size: 12px;
color: var(--im-text-color-light);
}
.chat-unread {
1 year ago
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);
}
3 years ago
}
.chat-at-user {
padding: 2px 5px;
border-radius: 3px;
cursor: pointer;
}
3 years ago
}
}
3 years ago
10 months ago
&.message-mine {
text-align: right;
padding-left: 0;
padding-right: 48px;
3 years ago
.head-image {
left: auto;
right: 0;
}
10 months ago
.content {
text-align: right;
3 years ago
10 months ago
.message-top {
flex-direction: row-reverse;
span {
margin-left: 12px;
margin-right: 0;
}
}
3 years ago
10 months ago
.message-bottom {
padding-left: 180px;
padding-right: 5px;
10 months ago
.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);
}
}
3 years ago
10 months ago
.message-image {
flex-direction: row-reverse;
}
3 years ago
10 months ago
.message-file {
flex-direction: row-reverse;
}
3 years ago
.chat-action {
flex-direction: row-reverse;
3 years ago
.iconfont {
transform: rotateY(180deg);
}
3 years ago
}
}
}
}
3 years ago
}
}
</style>