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.
881 lines
23 KiB
881 lines
23 KiB
<template>
|
|
<div class="chat-box" @click="closeRefBox()" @mousemove="readedMessage()">
|
|
<el-container>
|
|
<el-header height="50px">
|
|
<span>{{ title }}</span>
|
|
<span title="群聊信息" v-show="isGroup" class="btn-side el-icon-more" @click="showSide = !showSide"></span>
|
|
</el-header>
|
|
<el-main style="padding: 0;">
|
|
<el-container>
|
|
<el-container class="content-box">
|
|
<el-main class="im-chat-main" id="chatScrollBox" @scroll="onScroll">
|
|
<div class="im-chat-box">
|
|
<ul>
|
|
<li v-for="(msgInfo, idx) in chat.messages" :key="idx">
|
|
<chat-message-item v-if="idx >= showMinIdx" @call="onCall(msgInfo.type)"
|
|
:mine="msgInfo.sendId == mine.id" :headImage="headImage(msgInfo)"
|
|
:showName="showName(msgInfo)" :msgInfo="msgInfo"
|
|
:groupMembers="groupMembers" @delete="deleteMessage"
|
|
@recall="recallMessage">
|
|
</chat-message-item>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</el-main>
|
|
<div v-if="!isInBottom" class="scroll-to-bottom" @click="scrollToBottom">
|
|
{{ newMessageSize > 0 ? newMessageSize + '条新消息' : '回到底部' }}
|
|
</div>
|
|
<el-footer height="220px" class="im-chat-footer">
|
|
<div class="chat-tool-bar">
|
|
<div title="表情" class="icon iconfont icon-emoji" ref="emotion"
|
|
@click.stop="showEmotionBox()">
|
|
</div>
|
|
<div title="发送图片">
|
|
<file-upload :action="'/image/upload'" :maxSize="5 * 1024 * 1024"
|
|
:fileTypes="['image/jpeg', 'image/png', 'image/jpg', 'image/webp', 'image/gif']"
|
|
@before="onImageBefore" @success="onImageSuccess" @fail="onImageFail">
|
|
<i class="el-icon-picture-outline"></i>
|
|
</file-upload>
|
|
</div>
|
|
<div title="发送文件">
|
|
<file-upload ref="fileUpload" :action="'/file/upload'" :maxSize="10 * 1024 * 1024"
|
|
@before="onFileBefore" @success="onFileSuccess" @fail="onFileFail">
|
|
<i class="el-icon-wallet"></i>
|
|
</file-upload>
|
|
</div>
|
|
<div title="回执消息" v-show="isGroup && memberSize <= 500"
|
|
class="icon iconfont icon-receipt" :class="isReceipt ? 'chat-tool-active' : ''"
|
|
@click="onSwitchReceipt">
|
|
</div>
|
|
<div title="发送语音" class="el-icon-microphone" @click="showRecordBox()">
|
|
</div>
|
|
<div title="语音通话" v-show="isPrivate" class="el-icon-phone-outline"
|
|
@click="showPrivateVideo('voice')">
|
|
</div>
|
|
<div title="语音通话" v-show="isGroup" class="el-icon-phone-outline"
|
|
@click="onGroupVideo()">
|
|
</div>
|
|
<div title="视频通话" v-show="isPrivate" class="el-icon-video-camera"
|
|
@click="showPrivateVideo('video')">
|
|
</div>
|
|
<div title="聊天记录" class="el-icon-chat-dot-round" @click="showHistoryBox()"></div>
|
|
</div>
|
|
<div class="send-content-area">
|
|
<ChatInput :ownerId="group.ownerId" ref="chatInputEditor" :group-members="groupMembers"
|
|
@submit="sendMessage" />
|
|
<div class="send-btn-area">
|
|
<el-button type="primary" icon="el-icon-s-promotion"
|
|
@click="notifySend()">发送</el-button>
|
|
</div>
|
|
</div>
|
|
</el-footer>
|
|
</el-container>
|
|
<el-aside class="side-box" width="320px" v-if="showSide">
|
|
<chat-group-side :group="group" :groupMembers="groupMembers" @reload="loadGroup(group.id)">
|
|
</chat-group-side>
|
|
</el-aside>
|
|
</el-container>
|
|
</el-main>
|
|
<emotion ref="emoBox" @emotion="onEmotion"></Emotion>
|
|
<chat-record :visible="showRecord" @close="closeRecordBox" @send="onSendRecord"></chat-record>
|
|
<group-member-selector ref="rtcSel" :group="group" @complete="onInviteOk"></group-member-selector>
|
|
<rtc-group-join ref="rtcJoin" :groupId="group.id"></rtc-group-join>
|
|
<chat-history :visible="showHistory" :chat="chat" :friend="friend" :group="group"
|
|
:groupMembers="groupMembers" @close="closeHistoryBox"></chat-history>
|
|
</el-container>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ChatGroupSide from "./ChatGroupSide.vue";
|
|
import ChatMessageItem from "./ChatMessageItem.vue";
|
|
import FileUpload from "../common/FileUpload.vue";
|
|
import Emotion from "../common/Emotion.vue";
|
|
import ChatRecord from "./ChatRecord.vue";
|
|
import ChatHistory from "./ChatHistory.vue";
|
|
import ChatAtBox from "./ChatAtBox.vue"
|
|
import GroupMemberSelector from "../group/GroupMemberSelector.vue"
|
|
import RtcGroupJoin from "../rtc/RtcGroupJoin.vue"
|
|
import ChatInput from "./ChatInput";
|
|
|
|
|
|
export default {
|
|
name: "chatPrivate",
|
|
components: {
|
|
ChatInput,
|
|
ChatMessageItem,
|
|
FileUpload,
|
|
ChatGroupSide,
|
|
Emotion,
|
|
ChatRecord,
|
|
ChatHistory,
|
|
ChatAtBox,
|
|
GroupMemberSelector,
|
|
RtcGroupJoin
|
|
},
|
|
props: {
|
|
chat: {
|
|
type: Object
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
userInfo: {},
|
|
group: {},
|
|
groupMembers: [],
|
|
sendImageUrl: "",
|
|
sendImageFile: "",
|
|
placeholder: "",
|
|
isReceipt: true,
|
|
showRecord: false, // 是否显示语音录制弹窗
|
|
showSide: false, // 是否显示群聊信息栏
|
|
showHistory: false, // 是否显示历史聊天记录
|
|
lockMessage: false, // 是否锁定发送,
|
|
showMinIdx: 0, // 下标低于showMinIdx的消息不显示,否则页面会很卡置
|
|
reqQueue: [], // 等待发送的请求队列
|
|
isSending: false, // 是否正在发消息
|
|
isInBottom: false, // 滚动条是否在底部
|
|
newMessageSize: 0 // 滚动条不在底部时新的消息数量
|
|
}
|
|
},
|
|
methods: {
|
|
moveChatToTop() {
|
|
let chatIdx = this.$store.getters.findChatIdx(this.chat);
|
|
this.$store.commit("moveTop", chatIdx);
|
|
},
|
|
closeRefBox() {
|
|
this.$refs.emoBox.close();
|
|
// this.$refs.atBox.close();
|
|
},
|
|
onCall(type) {
|
|
if (type == this.$enums.MESSAGE_TYPE.ACT_RT_VOICE) {
|
|
this.showPrivateVideo('voice');
|
|
} else if (type == this.$enums.MESSAGE_TYPE.ACT_RT_VIDEO) {
|
|
this.showPrivateVideo('video');
|
|
}
|
|
},
|
|
onSwitchReceipt() {
|
|
this.isReceipt = !this.isReceipt;
|
|
this.refreshPlaceHolder();
|
|
},
|
|
onImageSuccess(data, file) {
|
|
let msgInfo = JSON.parse(JSON.stringify(file.msgInfo));
|
|
msgInfo.content = JSON.stringify(data);
|
|
msgInfo.receipt = this.isReceipt;
|
|
this.sendMessageRequest(msgInfo).then((m) => {
|
|
msgInfo.loadStatus = 'ok';
|
|
msgInfo.id = m.id;
|
|
this.isReceipt = false;
|
|
this.$store.commit("insertMessage", [msgInfo, file.chat]);
|
|
})
|
|
},
|
|
onImageFail(e, file) {
|
|
let msgInfo = JSON.parse(JSON.stringify(file.msgInfo));
|
|
msgInfo.loadStatus = 'fail';
|
|
this.$store.commit("insertMessage", [msgInfo, file.chat]);
|
|
},
|
|
onImageBefore(file) {
|
|
// 被封禁提示
|
|
if (this.isBanned) {
|
|
this.showBannedTip();
|
|
return;
|
|
}
|
|
let url = URL.createObjectURL(file);
|
|
let data = {
|
|
originUrl: url,
|
|
thumbUrl: url
|
|
}
|
|
let msgInfo = {
|
|
id: 0,
|
|
tmpId: this.generateId(),
|
|
fileId: file.uid,
|
|
sendId: this.mine.id,
|
|
content: JSON.stringify(data),
|
|
sendTime: new Date().getTime(),
|
|
selfSend: true,
|
|
type: 1,
|
|
readedCount: 0,
|
|
loadStatus: "loading",
|
|
status: this.$enums.MESSAGE_STATUS.UNSEND
|
|
}
|
|
// 填充对方id
|
|
this.fillTargetId(msgInfo, this.chat.targetId);
|
|
// 插入消息
|
|
this.$store.commit("insertMessage", [msgInfo, this.chat]);
|
|
// 会话置顶
|
|
this.moveChatToTop();
|
|
// 滚动到底部
|
|
this.scrollToBottom();
|
|
// 借助file对象保存
|
|
file.msgInfo = msgInfo;
|
|
file.chat = this.chat;
|
|
},
|
|
onFileSuccess(url, file) {
|
|
let data = {
|
|
name: file.name,
|
|
size: file.size,
|
|
url: url
|
|
}
|
|
let msgInfo = JSON.parse(JSON.stringify(file.msgInfo));
|
|
msgInfo.content = JSON.stringify(data);
|
|
msgInfo.receipt = this.isReceipt
|
|
this.sendMessageRequest(msgInfo).then((m) => {
|
|
msgInfo.loadStatus = 'ok';
|
|
msgInfo.id = m.id;
|
|
this.isReceipt = false;
|
|
this.refreshPlaceHolder();
|
|
this.$store.commit("insertMessage", [msgInfo, file.chat]);
|
|
})
|
|
},
|
|
onFileFail(e, file) {
|
|
let msgInfo = JSON.parse(JSON.stringify(file.msgInfo));
|
|
msgInfo.loadStatus = 'fail';
|
|
this.$store.commit("insertMessage", [msgInfo, file.chat]);
|
|
},
|
|
onFileBefore(file) {
|
|
// 被封禁提示
|
|
if (this.isBanned) {
|
|
this.showBannedTip();
|
|
return;
|
|
}
|
|
let url = URL.createObjectURL(file);
|
|
let data = {
|
|
name: file.name,
|
|
size: file.size,
|
|
url: url
|
|
}
|
|
let msgInfo = {
|
|
id: 0,
|
|
tmpId: this.generateId(),
|
|
sendId: this.mine.id,
|
|
content: JSON.stringify(data),
|
|
sendTime: new Date().getTime(),
|
|
selfSend: true,
|
|
type: 2,
|
|
loadStatus: "loading",
|
|
readedCount: 0,
|
|
status: this.$enums.MESSAGE_STATUS.UNSEND
|
|
}
|
|
// 填充对方id
|
|
this.fillTargetId(msgInfo, this.chat.targetId);
|
|
// 插入消息
|
|
this.$store.commit("insertMessage", [msgInfo, this.chat]);
|
|
// 会话置顶
|
|
this.moveChatToTop();
|
|
// 滚动到底部
|
|
this.scrollToBottom();
|
|
// 借助file对象透传
|
|
file.msgInfo = msgInfo;
|
|
file.chat = this.chat;
|
|
},
|
|
onCloseSide() {
|
|
this.showSide = false;
|
|
},
|
|
onScrollToTop() {
|
|
// 多展示10条信息
|
|
this.showMinIdx = this.showMinIdx > 10 ? this.showMinIdx - 10 : 0;
|
|
},
|
|
onScroll(e) {
|
|
let scrollElement = e.target
|
|
let scrollTop = scrollElement.scrollTop
|
|
if (scrollTop < 30) { // 在顶部,不滚动的情况
|
|
// 多展示20条信息
|
|
this.showMinIdx = this.showMinIdx > 20 ? this.showMinIdx - 20 : 0;
|
|
this.isInBottom = false;
|
|
}
|
|
// 滚到底部
|
|
if (scrollTop + scrollElement.clientHeight >= scrollElement.scrollHeight - 30) {
|
|
this.isInBottom = true;
|
|
this.newMessageSize = 0;
|
|
}
|
|
},
|
|
showEmotionBox() {
|
|
let width = this.$refs.emotion.offsetWidth;
|
|
let left = this.$elm.fixLeft(this.$refs.emotion);
|
|
let top = this.$elm.fixTop(this.$refs.emotion);
|
|
this.$refs.emoBox.open({
|
|
x: left + width / 2,
|
|
y: top
|
|
})
|
|
},
|
|
onEmotion(emoText) {
|
|
this.$refs.chatInputEditor.insertEmoji(emoText);
|
|
},
|
|
showRecordBox() {
|
|
this.showRecord = true;
|
|
},
|
|
closeRecordBox() {
|
|
this.showRecord = false;
|
|
},
|
|
showPrivateVideo(mode) {
|
|
// 检查是否被封禁
|
|
if (this.isBanned) {
|
|
this.showBannedTip();
|
|
return;
|
|
}
|
|
|
|
let rtcInfo = {
|
|
mode: mode,
|
|
isHost: true,
|
|
friend: this.friend,
|
|
}
|
|
// 通过home.vue打开单人视频窗口
|
|
this.$eventBus.$emit("openPrivateVideo", rtcInfo);
|
|
},
|
|
onGroupVideo() {
|
|
// 检查是否被封禁
|
|
if (this.isBanned) {
|
|
this.showBannedTip();
|
|
return;
|
|
}
|
|
// 邀请成员发起通话
|
|
let ids = [this.mine.id];
|
|
let maxChannel = this.$store.state.configStore.webrtc.maxChannel;
|
|
this.$refs.rtcSel.open(maxChannel, ids, ids, []);
|
|
},
|
|
onInviteOk(members) {
|
|
if (members.length < 2) {
|
|
return;
|
|
}
|
|
let userInfos = [];
|
|
members.forEach(m => {
|
|
userInfos.push({
|
|
id: m.userId,
|
|
nickName: m.showNickName,
|
|
headImage: m.headImage,
|
|
isCamera: false,
|
|
isMicroPhone: true
|
|
})
|
|
})
|
|
let rtcInfo = {
|
|
isHost: true,
|
|
groupId: this.group.id,
|
|
inviterId: this.mine.id,
|
|
userInfos: userInfos
|
|
}
|
|
// 通过home.vue打开多人视频窗口
|
|
this.$eventBus.$emit("openGroupVideo", rtcInfo);
|
|
},
|
|
showHistoryBox() {
|
|
this.showHistory = true;
|
|
},
|
|
closeHistoryBox() {
|
|
this.showHistory = false;
|
|
},
|
|
onSendRecord(data) {
|
|
// 检查是否被封禁
|
|
if (this.isBanned) {
|
|
this.showBannedTip();
|
|
return;
|
|
}
|
|
let msgInfo = {
|
|
content: JSON.stringify(data),
|
|
type: 3,
|
|
receipt: this.isReceipt
|
|
}
|
|
// 填充对方id
|
|
this.fillTargetId(msgInfo, this.chat.targetId);
|
|
this.sendMessageRequest(msgInfo).then((m) => {
|
|
m.selfSend = true;
|
|
this.$store.commit("insertMessage", [m, this.chat]);
|
|
// 会话置顶
|
|
this.moveChatToTop();
|
|
// 保持输入框焦点
|
|
this.$refs.chatInputEditor.focus();
|
|
// 滚动到底部
|
|
this.scrollToBottom();
|
|
// 关闭录音窗口
|
|
this.showRecord = false;
|
|
this.isReceipt = false;
|
|
this.refreshPlaceHolder();
|
|
})
|
|
},
|
|
fillTargetId(msgInfo, targetId) {
|
|
if (this.chat.type == "GROUP") {
|
|
msgInfo.groupId = targetId;
|
|
} else {
|
|
msgInfo.recvId = targetId;
|
|
}
|
|
},
|
|
notifySend() {
|
|
this.$refs.chatInputEditor.submit();
|
|
},
|
|
async sendMessage(fullList) {
|
|
this.resetEditor();
|
|
this.readedMessage();
|
|
// 检查是否被封禁
|
|
if (this.isBanned) {
|
|
this.showBannedTip();
|
|
return;
|
|
}
|
|
let sendText = this.isReceipt ? "【回执消息】" : "";
|
|
fullList.forEach(async msg => {
|
|
switch (msg.type) {
|
|
case "text":
|
|
await this.sendTextMessage(sendText + msg.content, msg.atUserIds);
|
|
break;
|
|
case "image":
|
|
await this.sendImageMessage(msg.content.file);
|
|
break;
|
|
case "file":
|
|
await this.sendFileMessage(msg.content.file);
|
|
break;
|
|
}
|
|
})
|
|
},
|
|
sendImageMessage(file) {
|
|
return new Promise((resolve, reject) => {
|
|
this.onImageBefore(file);
|
|
let formData = new FormData()
|
|
formData.append('file', file)
|
|
this.$http.post("/image/upload", formData, {
|
|
headers: {
|
|
'Content-Type': 'multipart/form-data'
|
|
}
|
|
}).then((data) => {
|
|
this.onImageSuccess(data, file);
|
|
resolve();
|
|
}).catch((res) => {
|
|
this.onImageFail(res, file);
|
|
reject();
|
|
})
|
|
this.$nextTick(() => this.$refs.chatInputEditor.focus());
|
|
this.scrollToBottom();
|
|
});
|
|
},
|
|
sendTextMessage(sendText, atUserIds) {
|
|
return new Promise((resolve, reject) => {
|
|
if (!sendText.trim()) {
|
|
reject();
|
|
}
|
|
let msgInfo = {
|
|
content: sendText,
|
|
type: 0
|
|
}
|
|
// 填充对方id
|
|
this.fillTargetId(msgInfo, this.chat.targetId);
|
|
// 被@人员列表
|
|
if (this.chat.type == "GROUP") {
|
|
msgInfo.atUserIds = atUserIds;
|
|
msgInfo.receipt = this.isReceipt;
|
|
}
|
|
this.lockMessage = true;
|
|
this.sendMessageRequest(msgInfo).then((m) => {
|
|
m.selfSend = true;
|
|
this.$store.commit("insertMessage", [m, this.chat]);
|
|
// 会话置顶
|
|
this.moveChatToTop();
|
|
}).finally(() => {
|
|
// 解除锁定
|
|
this.scrollToBottom();
|
|
this.isReceipt = false;
|
|
resolve();
|
|
});
|
|
});
|
|
},
|
|
sendFileMessage(file) {
|
|
return new Promise((resolve, reject) => {
|
|
let check = this.$refs.fileUpload.beforeUpload(file);
|
|
if (check) {
|
|
this.$refs.fileUpload.onFileUpload({ file });
|
|
}
|
|
})
|
|
},
|
|
deleteMessage(msgInfo) {
|
|
this.$confirm('确认删除消息?', '删除消息', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
this.$store.commit("deleteMessage", [msgInfo, this.chat]);
|
|
});
|
|
},
|
|
recallMessage(msgInfo) {
|
|
this.$confirm('确认撤回消息?', '撤回消息', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
let url = `/message/${this.chat.type.toLowerCase()}/recall/${msgInfo.id}`
|
|
this.$http({
|
|
url: url,
|
|
method: 'delete'
|
|
}).then((m) => {
|
|
this.$message.success("消息已撤回");
|
|
m.selfSend = true;
|
|
this.$store.commit("recallMessage", [m, this.chat]);
|
|
})
|
|
});
|
|
},
|
|
readedMessage() {
|
|
if (this.chat.unreadCount == 0) {
|
|
return;
|
|
}
|
|
this.$store.commit("resetUnreadCount", this.chat)
|
|
if (this.chat.type == "GROUP") {
|
|
var url = `/message/group/readed?groupId=${this.chat.targetId}`
|
|
} else {
|
|
url = `/message/private/readed?friendId=${this.chat.targetId}`
|
|
}
|
|
this.$http({
|
|
url: url,
|
|
method: 'put'
|
|
}).then(() => {})
|
|
},
|
|
loadReaded(fId) {
|
|
this.$http({
|
|
url: `/message/private/maxReadedId?friendId=${fId}`,
|
|
method: 'get'
|
|
}).then((id) => {
|
|
this.$store.commit("readedMessage", {
|
|
friendId: fId,
|
|
maxId: id
|
|
});
|
|
});
|
|
},
|
|
loadGroup(groupId) {
|
|
this.$http({
|
|
url: `/group/find/${groupId}`,
|
|
method: 'get'
|
|
}).then((group) => {
|
|
this.group = group;
|
|
this.$store.commit("updateChatFromGroup", group);
|
|
this.$store.commit("updateGroup", group);
|
|
});
|
|
|
|
this.$http({
|
|
url: `/group/members/${groupId}`,
|
|
method: 'get'
|
|
}).then((groupMembers) => {
|
|
this.groupMembers = groupMembers;
|
|
});
|
|
},
|
|
updateFriendInfo() {
|
|
if (this.isFriend) {
|
|
// store的数据不能直接修改,深拷贝一份store的数据
|
|
let friend = JSON.parse(JSON.stringify(this.friend));
|
|
friend.headImage = this.userInfo.headImageThumb;
|
|
friend.nickName = this.userInfo.nickName;
|
|
friend.showNickName = friend.remarkNickName ? friend.remarkNickName : friend.nickName;
|
|
this.$store.commit("updateChatFromFriend", friend);
|
|
this.$store.commit("updateFriend", friend);
|
|
} else {
|
|
this.$store.commit("updateChatFromUser", this.userInfo);
|
|
}
|
|
},
|
|
loadFriend(friendId) {
|
|
// 获取好友信息
|
|
this.$http({
|
|
url: `/user/find/${friendId}`,
|
|
method: 'GET'
|
|
}).then((userInfo) => {
|
|
this.userInfo = userInfo;
|
|
this.updateFriendInfo();
|
|
})
|
|
},
|
|
showName(msgInfo) {
|
|
if (!msgInfo) {
|
|
return ""
|
|
}
|
|
if (this.isGroup) {
|
|
let member = this.groupMembers.find((m) => m.userId == msgInfo.sendId);
|
|
return member ? member.showNickName : msgInfo.sendNickName || "";
|
|
} else {
|
|
return msgInfo.selfSend ? this.mine.nickName : this.chat.showName
|
|
}
|
|
},
|
|
headImage(msgInfo) {
|
|
if (this.isGroup) {
|
|
let member = this.groupMembers.find((m) => m.userId == msgInfo.sendId);
|
|
return member ? member.headImage : "";
|
|
} else {
|
|
return msgInfo.sendId == this.mine.id ? this.mine.headImageThumb : this.chat.headImage
|
|
}
|
|
},
|
|
resetEditor() {
|
|
this.$nextTick(() => {
|
|
this.$refs.chatInputEditor.clear();
|
|
this.$refs.chatInputEditor.focus();
|
|
});
|
|
},
|
|
scrollToBottom() {
|
|
this.$nextTick(() => {
|
|
let div = document.getElementById("chatScrollBox");
|
|
div.scrollTop = div.scrollHeight;
|
|
});
|
|
},
|
|
refreshPlaceHolder() {
|
|
if (this.isReceipt) {
|
|
this.placeholder = "【回执消息】"
|
|
} else if (this.$refs.editBox && this.$refs.editBox.innerHTML) {
|
|
this.placeholder = ""
|
|
} else {
|
|
this.placeholder = "聊点什么吧~";
|
|
}
|
|
},
|
|
sendMessageRequest(msgInfo) {
|
|
return new Promise((resolve, reject) => {
|
|
// 请求入队列,防止请求"后发先至",导致消息错序
|
|
this.reqQueue.push({ msgInfo, resolve, reject });
|
|
this.processReqQueue();
|
|
})
|
|
},
|
|
processReqQueue() {
|
|
if (this.reqQueue.length && !this.isSending) {
|
|
this.isSending = true;
|
|
const reqData = this.reqQueue.shift();
|
|
this.$http({
|
|
url: this.messageAction,
|
|
method: 'post',
|
|
data: reqData.msgInfo
|
|
}).then((res) => {
|
|
reqData.resolve(res)
|
|
}).catch((e) => {
|
|
reqData.reject(e)
|
|
}).finally(() => {
|
|
this.isSending = false;
|
|
// 发送下一条请求
|
|
this.processReqQueue();
|
|
})
|
|
}
|
|
},
|
|
showBannedTip() {
|
|
let msgInfo = {
|
|
tmpId: this.generateId(),
|
|
sendId: this.mine.id,
|
|
sendTime: new Date().getTime(),
|
|
type: this.$enums.MESSAGE_TYPE.TIP_TEXT
|
|
}
|
|
if (this.chat.type == "PRIVATE") {
|
|
msgInfo.recvId = this.mine.id
|
|
msgInfo.content = "该用户已被管理员封禁,原因:" + this.userInfo.reason
|
|
} else {
|
|
msgInfo.groupId = this.group.id;
|
|
msgInfo.content = "本群聊已被管理员封禁,原因:" + this.group.reason
|
|
}
|
|
this.$store.commit("insertMessage", [msgInfo, this.chat]);
|
|
},
|
|
generateId() {
|
|
// 生成临时id
|
|
return String(new Date().getTime()) + String(Math.floor(Math.random() * 1000));
|
|
}
|
|
},
|
|
computed: {
|
|
mine() {
|
|
return this.$store.state.userStore.userInfo;
|
|
},
|
|
isFriend() {
|
|
return this.$store.getters.isFriend(this.userInfo.id);
|
|
},
|
|
friend() {
|
|
return this.$store.getters.findFriend(this.userInfo.id)
|
|
},
|
|
title() {
|
|
let title = this.chat.showName;
|
|
if (this.chat.type == "GROUP") {
|
|
let size = this.groupMembers.filter(m => !m.quit).length;
|
|
title += `(${size})`;
|
|
}
|
|
return title;
|
|
},
|
|
messageAction() {
|
|
return `/message/${this.chat.type.toLowerCase()}/send`;
|
|
},
|
|
unreadCount() {
|
|
return this.chat.unreadCount;
|
|
},
|
|
messageSize() {
|
|
if (!this.chat || !this.chat.messages) {
|
|
return 0;
|
|
}
|
|
return this.chat.messages.length;
|
|
},
|
|
isBanned() {
|
|
return (this.chat.type == "PRIVATE" && this.userInfo.isBanned) ||
|
|
(this.chat.type == "GROUP" && this.group.isBanned)
|
|
},
|
|
memberSize() {
|
|
return this.groupMembers.filter(m => !m.quit).length;
|
|
},
|
|
isGroup() {
|
|
return this.chat.type == 'GROUP';
|
|
},
|
|
isPrivate() {
|
|
return this.chat.type == 'PRIVATE';
|
|
}
|
|
},
|
|
watch: {
|
|
chat: {
|
|
handler(newChat, oldChat) {
|
|
if (newChat.targetId > 0 && (!oldChat || newChat.type != oldChat.type ||
|
|
newChat.targetId != oldChat.targetId)) {
|
|
this.userInfo = {}
|
|
this.group = {};
|
|
this.groupMembers = [];
|
|
if (this.chat.type == "GROUP") {
|
|
this.loadGroup(this.chat.targetId);
|
|
} else {
|
|
this.loadFriend(this.chat.targetId);
|
|
// 加载已读状态
|
|
this.loadReaded(this.chat.targetId)
|
|
}
|
|
// 滚到底部
|
|
this.scrollToBottom();
|
|
this.showSide = false;
|
|
// 消息已读
|
|
this.readedMessage()
|
|
// 初始状态只显示30条消息
|
|
let size = this.chat.messages.length;
|
|
this.showMinIdx = size > 30 ? size - 30 : 0;
|
|
// 重置输入框
|
|
this.resetEditor();
|
|
// 复位回执消息
|
|
this.isReceipt = false;
|
|
// 更新placeholder
|
|
this.refreshPlaceHolder();
|
|
}
|
|
},
|
|
immediate: true
|
|
},
|
|
messageSize: {
|
|
handler(newSize, oldSize) {
|
|
if (newSize > oldSize) {
|
|
if (this.isInBottom) {
|
|
// 拉至底部
|
|
this.scrollToBottom();
|
|
} else {
|
|
// 增加新消息提醒
|
|
this.newMessageSize++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
mounted() {
|
|
let div = document.getElementById("chatScrollBox");
|
|
div.addEventListener('scroll', this.onScroll)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.chat-box {
|
|
position: relative;
|
|
width: 100%;
|
|
background: #fff;
|
|
|
|
.el-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0 12px;
|
|
line-height: 50px;
|
|
font-size: var(--im-font-size-larger);
|
|
border-bottom: var(--im-border);
|
|
|
|
|
|
.btn-side {
|
|
position: absolute;
|
|
right: 20px;
|
|
line-height: 50px;
|
|
font-size: 20px;
|
|
cursor: pointer;
|
|
color: var(--im-text-color-light);
|
|
}
|
|
}
|
|
|
|
.content-box {
|
|
position: relative;
|
|
|
|
.im-chat-main {
|
|
padding: 0;
|
|
background-color: #fff;
|
|
|
|
.im-chat-box {
|
|
>ul {
|
|
padding: 0 20px;
|
|
|
|
li {
|
|
list-style-type: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.scroll-to-bottom {
|
|
text-align: right;
|
|
position: absolute;
|
|
right: 20px;
|
|
bottom: 230px;
|
|
color: var(--im-color-primary);
|
|
font-size: var(--im-font-size);
|
|
font-weight: 600;
|
|
background: #eee;
|
|
padding: 5px 15px;
|
|
border-radius: 15px;
|
|
cursor: pointer;
|
|
z-index: 99;
|
|
box-shadow: var(--im-box-shadow-light);
|
|
}
|
|
|
|
.im-chat-footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0;
|
|
|
|
.chat-tool-bar {
|
|
display: flex;
|
|
position: relative;
|
|
width: 100%;
|
|
height: 36px;
|
|
text-align: left;
|
|
box-sizing: border-box;
|
|
border-top: var(--im-border);
|
|
padding: 4px 2px 2px 8px;
|
|
|
|
>div {
|
|
font-size: 22px;
|
|
cursor: pointer;
|
|
line-height: 30px;
|
|
width: 30px;
|
|
height: 30px;
|
|
text-align: center;
|
|
border-radius: 2px;
|
|
margin-right: 8px;
|
|
color: #999;
|
|
transition: 0.3s;
|
|
|
|
&.chat-tool-active {
|
|
font-weight: 600;
|
|
color: var(--im-color-primary);
|
|
background-color: #ddd;
|
|
}
|
|
}
|
|
|
|
>div:hover {
|
|
color: #333;
|
|
}
|
|
}
|
|
|
|
.send-content-area {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
background-color: white !important;
|
|
|
|
.send-btn-area {
|
|
padding: 10px;
|
|
position: absolute;
|
|
bottom: 4px;
|
|
right: 6px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.side-box {
|
|
border-left: var(--im-border);
|
|
}
|
|
|
|
}
|
|
</style>
|