| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333 |
- <template>
- <view class="page chat-box" id="chatBox">
- <nav-bar back more @more="onShowMore">{{ title }}</nav-bar>
- <view class="chat-main-box" :style="{height: chatMainHeight+'px'}">
- <view class="chat-message" @click="switchChatTabBox('none')">
- <scroll-view class="scroll-box" scroll-y="true" upper-threshold="200" @scrolltoupper="onScrollToTop"
- @scroll="onScroll" :scroll-into-view="'chat-item-' + scrollMsgIdx" :scroll-top="scrollTop">
- <view v-if="chat" class="chat-wrap">
- <view v-for="(msgInfo, idx) in chat.messages" :key="idx">
- <chat-message-item :ref="'message'+msgInfo.id" v-if="idx >= showMinIdx"
- :headImage="headImage(msgInfo)" @call="onRtCall(msgInfo)" :showName="showName(msgInfo)"
- @resend="onResendMessage" @recall="onRecallMessage" @delete="onDeleteMessage"
- @copy="onCopyMessage" @longPressHead="onLongPressHead(msgInfo)"
- @download="onDownloadFile" @audioStateChange="onAudioStateChange"
- :id="'chat-item-' + idx" :msgInfo="msgInfo" :groupMembers="groupMembers">
- </chat-message-item>
- </view>
- </view>
- </scroll-view>
- <view v-if="!isInBottom" class="scroll-to-bottom" @click="onClickToBottom">
- {{ newMessageSize > 0 ? newMessageSize+'条新消息' :'回到底部'}}
- </view>
- </view>
- <view v-if="atUserIds.length > 0" class="chat-at-bar" @click="openAtBox()">
- <view class="iconfont icon-at"> </view>
- <scroll-view v-if="atUserIds.length > 0" class="chat-at-scroll-box" scroll-x="true" scroll-left="120">
- <view class="chat-at-items">
- <view v-for="m in atUserItems" class="chat-at-item" :key="m.userId">
- <head-image :name="m.showNickName" :url="m.headImage" size="minier"></head-image>
- </view>
- </view>
- </scroll-view>
- </view>
- <view class="send-bar">
- <view v-if="!showRecord" class="iconfont icon-voice-circle" @click="onRecorderInput()"></view>
- <view v-else class="iconfont icon-keyboard" @click="onKeyboardInput()"></view>
- <chat-record v-if="showRecord" class="chat-record" @send="onSendRecord"></chat-record>
- <view v-else class="send-text">
- <editor id="editor" class="send-text-area" :placeholder="isReceipt ? '[回执消息]' : ''"
- :read-only="isReadOnly" @focus="onEditorFocus" @blur="onEditorBlur" @ready="onEditorReady"
- @input="onTextInput">
- </editor>
- </view>
- <view v-if="chat && chat.type == 'GROUP'" class="iconfont icon-at" @click="openAtBox()"></view>
- <view class="iconfont icon-icon_emoji" @click="onShowEmoChatTab()"></view>
- <view v-if="isEmpty" class="iconfont icon-add" @click="onShowToolsChatTab()">
- </view>
- <button v-if="!isEmpty || atUserIds.length" class="btn-send" type="primary"
- @touchend.prevent="sendTextMessage()" size="mini">发送</button>
- </view>
- </view>
- <view class="chat-tab-bar">
- <scroll-view v-if="chatTabBox == 'tools'" class="chat-tools" :style="{height: keyboardHeight+'px'}">
- <view class="chat-tools-list">
- <view class="chat-tools-item">
- <file-upload ref="fileUpload" :onBefore="onUploadFileBefore" :onSuccess="onUploadFileSuccess"
- :onError="onUploadFileFail">
- <view class="tool-icon iconfont icon-folder"></view>
- </file-upload>
- <view class="tool-name">文件</view>
- </view>
- <view class="chat-tools-item">
- <image-upload :maxCount="9" sourceType="album" :onBefore="onUploadImageBefore"
- :onSuccess="onUploadImageSuccess" :onError="onUploadImageFail">
- <view class="tool-icon iconfont icon-picture"></view>
- </image-upload>
- <view class="tool-name">相册</view>
- </view>
- <view class="chat-tools-item">
- <image-upload sourceType="camera" :onBefore="onUploadImageBefore"
- :onSuccess="onUploadImageSuccess" :onError="onUploadImageFail">
- <view class="tool-icon iconfont icon-camera"></view>
- </image-upload>
- <view class="tool-name">拍摄</view>
- </view>
- <view class="chat-tools-item" @click="onRecorderInput()">
- <view class="tool-icon iconfont icon-microphone"></view>
- <view class="tool-name">语音消息</view>
- </view>
- <view v-if="chat.type == 'GROUP' && memberSize<=500" class="chat-tools-item"
- @click="switchReceipt()">
- <view class="tool-icon iconfont icon-receipt" :class="isReceipt ? 'active' : ''"></view>
- <view class="tool-name">回执消息</view>
- </view>
- <!-- #ifndef MP-WEIXIN -->
- <!-- 音视频不支持小程序 -->
- <view v-if="chat.type == 'PRIVATE'" class="chat-tools-item" @click="onPriviteVideo()">
- <view class="tool-icon iconfont icon-video"></view>
- <view class="tool-name">视频通话</view>
- </view>
- <view v-if="chat.type == 'PRIVATE'" class="chat-tools-item" @click="onPriviteVoice()">
- <view class="tool-icon iconfont icon-call"></view>
- <view class="tool-name">语音通话</view>
- </view>
- <view v-if="chat.type == 'GROUP'" class="chat-tools-item" @click="onGroupVideo()">
- <view class="tool-icon iconfont icon-call"></view>
- <view class="tool-name">语音通话</view>
- </view>
- <!-- #endif -->
- </view>
- </scroll-view>
- <scroll-view v-if="chatTabBox === 'emo'" class="chat-emotion" scroll-y="true"
- :style="{height: keyboardHeight+'px'}">
- <view class="emotion-item-list">
- <image class="emotion-item emoji-large" :title="emoText" :src="$emo.textToPath(emoText)"
- v-for="(emoText, i) in $emo.emoTextList" :key="i" @click="selectEmoji(emoText)" mode="aspectFit"
- lazy-load="true"></image>
- </view>
- </scroll-view>
- </view>
- <!-- @用户时选择成员 -->
- <chat-at-box ref="atBox" :ownerId="group.ownerId" :members="groupMembers"
- @complete="onAtComplete"></chat-at-box>
- <!-- 群语音通话时选择成员 -->
- <!-- #ifndef MP-WEIXIN -->
- <group-member-selector ref="selBox" :members="groupMembers" :maxSize="configStore.webrtc.maxChannel"
- @complete="onInviteOk"></group-member-selector>
- <group-rtc-join ref="rtcJoin" :groupId="group.id"></group-rtc-join>
- <!-- #endif -->
- </view>
- </template>
- <script>
- import UNI_APP from '@/.env.js';
- export default {
- data() {
- return {
- chat: {},
- userInfo: {},
- group: {},
- groupMembers: [],
- isReceipt: false, // 是否回执消息
- scrollMsgIdx: 0, // 滚动条定位为到哪条消息
- chatTabBox: 'none',
- showRecord: false,
- chatMainHeight: 800, // 聊天窗口高度
- keyboardHeight: 290, // 键盘高度
- screenHeight: 1000, // 屏幕高度
- windowHeight: 1000, // 窗口高度
- initHeight: 1000, // h5初始高度
- atUserIds: [],
- showMinIdx: 0, // 下标小于showMinIdx的消息不显示,否则可能很卡
- reqQueue: [], // 请求队列
- isSending: false, // 是否正在发送请求
- isShowKeyBoard: false, // 键盘是否正在弹起
- editorCtx: null, // 编辑器上下文
- isEmpty: true, // 编辑器是否为空
- isFocus: false, // 编辑器是否焦点
- isReadOnly: false, // 编辑器是否只读
- playingAudio: null, // 当前正在播放的录音消息
- isInBottom: true, // 滚动条是否在底部
- newMessageSize: 0, // 滚动条不在底部时新的消息数量
- scrollTop: 0, // 用于ios h5定位滚动条
- scrollViewHeight: 0 // 滚动条总长度
- }
- },
- methods: {
- onRecorderInput() {
- this.showRecord = true;
- this.switchChatTabBox('none');
- },
- onKeyboardInput() {
- this.showRecord = false;
- this.switchChatTabBox('none');
- },
- onSendRecord(data) {
- // 检查是否被封禁
- if (this.isBanned) {
- this.showBannedTip();
- return;
- }
- let msgInfo = {
- tmpId: this.generateId(),
- content: JSON.stringify(data),
- type: this.$enums.MESSAGE_TYPE.AUDIO,
- receipt: this.isReceipt
- }
- // 填充对方id
- this.fillTargetId(msgInfo, this.chat.targetId);
- // 防止发送期间用户切换会话导致串扰
- const chat = this.chat;
- // 消息回显
- let tmpMessage = this.buildTmpMessage(msgInfo);
- this.chatStore.insertMessage(tmpMessage, chat);
- this.moveChatToTop();
- this.sendMessageRequest(msgInfo).then((m) => {
- // 更新消息
- tmpMessage.id = m.id;
- tmpMessage.status = m.status;
- this.chatStore.updateMessage(tmpMessage, chat);
- // 会话置顶
- this.moveChatToTop();
- // 滚动到底部
- this.scrollToBottom();
- this.isReceipt = false;
- })
- },
- onRtCall(msgInfo) {
- if (msgInfo.type == this.$enums.MESSAGE_TYPE.ACT_RT_VOICE) {
- this.onPriviteVoice();
- } else if (msgInfo.type == this.$enums.MESSAGE_TYPE.ACT_RT_VIDEO) {
- this.onPriviteVideo();
- }
- },
- onPriviteVideo() {
- const friendInfo = encodeURIComponent(JSON.stringify(this.friend));
- uni.navigateTo({
- url: `/pages/chat/chat-private-video?mode=video&friend=${friendInfo}&isHost=true`
- })
- },
- onPriviteVoice() {
- const friendInfo = encodeURIComponent(JSON.stringify(this.friend));
- uni.navigateTo({
- url: `/pages/chat/chat-private-video?mode=voice&friend=${friendInfo}&isHost=true`
- })
- },
- onGroupVideo() {
- // 邀请成员发起通话
- let ids = [this.mine.id];
- this.$refs.selBox.init(ids, ids, []);
- this.$refs.selBox.open();
- },
- onInviteOk(ids) {
- if (ids.length < 2) {
- return;
- }
- let users = [];
- ids.forEach(id => {
- let m = this.groupMembers.find(m => m.userId == id);
- // 只取部分字段,压缩url长度
- users.push({
- id: m.userId,
- nickName: m.showNickName,
- headImage: m.headImage,
- isCamera: false,
- isMicroPhone: true
- })
- })
- const groupId = this.group.id;
- const inviterId = this.mine.id;
- const userInfos = encodeURIComponent(JSON.stringify(users));
- uni.navigateTo({
- url: `/pages/chat/chat-group-video?groupId=${groupId}&isHost=true
- &inviterId=${inviterId}&userInfos=${userInfos}`
- })
- },
- moveChatToTop() {
- let chatIdx = this.chatStore.findChatIdx(this.chat);
- this.chatStore.moveTop(chatIdx);
- },
- switchReceipt() {
- this.isReceipt = !this.isReceipt;
- },
- openAtBox() {
- this.$refs.atBox.init(this.atUserIds);
- this.$refs.atBox.open();
- },
- onAtComplete(atUserIds) {
- this.atUserIds = atUserIds;
- },
- onLongPressHead(msgInfo) {
- if (!msgInfo.selfSend && this.isGroup && this.atUserIds.indexOf(msgInfo.sendId) < 0) {
- this.atUserIds.push(msgInfo.sendId);
- }
- },
- headImage(msgInfo) {
- if (this.isGroup) {
- let member = this.groupMembers.find((m) => m.userId == msgInfo.sendId);
- return member ? member.headImage : "";
- } else {
- return msgInfo.selfSend ? this.mine.headImageThumb : this.chat.headImage
- }
- },
- showName(msgInfo) {
- if (this.isGroup) {
- let member = this.groupMembers.find((m) => m.userId == msgInfo.sendId);
- return member ? member.showNickName : "";
- } else {
- return msgInfo.selfSend ? this.mine.nickName : this.chat.showName
- }
- },
- sendTextMessage() {
- this.editorCtx.getContents({
- success: (e) => {
- // 清空编辑框数据
- this.editorCtx.clear();
- // 检查是否被封禁
- if (this.isBanned) {
- this.showBannedTip();
- return;
- }
- let sendText = "";
- e.delta.ops.forEach((op) => {
- if (op.insert.image) {
- // emo表情
- sendText += `#${op.attributes.alt};`
- } else(
- // 文字
- sendText += op.insert
- )
- })
- // 去除最后的换行符
- sendText = sendText.trim();
- if (!sendText && this.atUserIds.length == 0) {
- return uni.showToast({
- title: "不能发送空白信息",
- icon: "none"
- });
- }
- let receiptText = this.isReceipt ? "【回执消息】" : "";
- let atText = this.createAtText();
- let msgInfo = {
- tmpId: this.generateId(),
- content: receiptText + sendText + atText,
- atUserIds: this.atUserIds,
- receipt: this.isReceipt,
- type: this.$enums.MESSAGE_TYPE.TEXT
- }
- // 清空@成员和回执标记
- this.atUserIds = [];
- this.isReceipt = false;
- // 填充对方id
- this.fillTargetId(msgInfo, this.chat.targetId);
- // 防止发送期间用户切换会话导致串扰
- const chat = this.chat;
- // 回显消息
- let tmpMessage = this.buildTmpMessage(msgInfo);
- this.chatStore.insertMessage(tmpMessage, chat);
- this.moveChatToTop();
- this.sendMessageRequest(msgInfo).then((m) => {
- // 更新消息
- tmpMessage = JSON.parse(JSON.stringify(tmpMessage));
- tmpMessage.id = m.id;
- tmpMessage.status = m.status;
- tmpMessage.content = m.content;
- this.chatStore.updateMessage(tmpMessage, chat);
- }).catch(() => {
- // 更新消息
- tmpMessage = JSON.parse(JSON.stringify(tmpMessage));
- tmpMessage.status = this.$enums.MESSAGE_STATUS.FAILED;
- this.chatStore.updateMessage(tmpMessage, chat);
- })
- }
- })
- },
- createAtText() {
- let atText = "";
- this.atUserIds.forEach((id) => {
- if (id == -1) {
- atText += ` @全体成员`;
- } else {
- let member = this.groupMembers.find((m) => m.userId == id);
- if (member) {
- atText += ` @${member.showNickName}`;
- }
- }
- })
- return atText;
- },
- fillTargetId(msgInfo, targetId) {
- if (this.isGroup) {
- msgInfo.groupId = targetId;
- } else {
- msgInfo.recvId = targetId;
- }
- },
- scrollToBottom() {
- let size = this.messageSize;
- if (size > 0) {
- this.scrollToMsgIdx(size - 1);
- }
- },
- scrollToMsgIdx(idx) {
- // 如果scrollMsgIdx值没变化,滚动条不会移动
- if (idx == this.scrollMsgIdx && idx > 0) {
- this.$nextTick(() => {
- // 先滚动到上一条
- this.scrollMsgIdx = idx - 1;
- // 再滚动目标位置
- this.scrollToMsgIdx(idx);
- });
- return;
- }
- this.$nextTick(() => {
- this.scrollMsgIdx = idx;
- });
- },
- onShowEmoChatTab() {
- this.showRecord = false;
- this.switchChatTabBox('emo')
- },
- onShowToolsChatTab() {
- this.showRecord = false;
- this.switchChatTabBox('tools')
- },
- switchChatTabBox(chatTabBox) {
- if (this.chatTabBox != chatTabBox) {
- this.chatTabBox = chatTabBox;
- if (chatTabBox != 'tools' && this.$refs.fileUpload) {
- this.$refs.fileUpload.hide()
- }
- setTimeout(() => this.reCalChatMainHeight(), 30);
- }
- },
- selectEmoji(emoText) {
- let path = this.$emo.textToPath(emoText)
- // 先把键盘禁用了,否则会重新弹出键盘
- this.isReadOnly = true;
- this.isEmpty = false;
- this.$nextTick(() => {
- this.editorCtx.insertImage({
- src: path,
- alt: emoText,
- extClass: 'emoji-small',
- nowrap: true,
- complete: () => {
- this.isReadOnly = false;
- this.editorCtx.blur();
- }
- });
- })
- },
- onUploadImageBefore(file) {
- // 检查是否被封禁
- if (this.isBanned) {
- this.showBannedTip();
- return;
- }
- let data = {
- originUrl: file.path,
- thumbUrl: file.path
- }
- let msgInfo = {
- tmpId: this.generateId(),
- fileId: file.uid,
- sendId: this.mine.id,
- content: JSON.stringify(data),
- sendTime: new Date().getTime(),
- selfSend: true,
- type: this.$enums.MESSAGE_TYPE.IMAGE,
- readedCount: 0,
- status: this.$enums.MESSAGE_STATUS.SENDING
- }
- // 填充对方id
- this.fillTargetId(msgInfo, this.chat.targetId);
- // 插入消息
- this.chatStore.insertMessage(msgInfo, this.chat);
- // 会话置顶
- this.moveChatToTop();
- // 借助file对象保存
- file.msgInfo = msgInfo;
- file.chat = this.chat;
- // 更新图片宽高
- let chat = this.chat;
- this.getImageSize(file).then(size => {
- msgInfo = JSON.parse(JSON.stringify(msgInfo))
- data.width = size.width;
- data.height = size.height;
- msgInfo.content = JSON.stringify(data)
- this.chatStore.updateMessage(msgInfo, chat);
- this.scrollToBottom();
- })
- return true;
- },
- onUploadImageSuccess(file, res) {
- let msgInfo = JSON.parse(JSON.stringify(file.msgInfo));
- msgInfo.content = JSON.stringify(res.data);
- msgInfo.receipt = this.isReceipt
- this.sendMessageRequest(msgInfo).then((m) => {
- msgInfo.id = m.id;
- msgInfo.status = m.status;
- this.isReceipt = false;
- this.chatStore.updateMessage(msgInfo, file.chat);
- })
- },
- onUploadImageFail(file, err) {
- let msgInfo = JSON.parse(JSON.stringify(file.msgInfo));
- msgInfo.status = this.$enums.MESSAGE_STATUS.FAILED;
- this.chatStore.updateMessage(msgInfo, file.chat);
- },
- onUploadFileBefore(file) {
- // 检查是否被封禁
- if (this.isBanned) {
- this.showBannedTip();
- return;
- }
- let data = {
- name: file.name,
- size: file.size,
- url: file.path
- }
- let msgInfo = {
- tmpId: this.generateId(),
- sendId: this.mine.id,
- content: JSON.stringify(data),
- sendTime: new Date().getTime(),
- selfSend: true,
- type: this.$enums.MESSAGE_TYPE.FILE,
- readedCount: 0,
- status: this.$enums.MESSAGE_STATUS.SENDING
- }
- // 填充对方id
- this.fillTargetId(msgInfo, this.chat.targetId);
- // 插入消息
- this.chatStore.insertMessage(msgInfo, this.chat);
- // 会话置顶
- this.moveChatToTop();
- // 借助file对象保存
- file.msgInfo = msgInfo;
- file.chat = this.chat;
- return true;
- },
- onUploadFileSuccess(file, res) {
- let data = {
- name: file.name,
- size: file.size,
- url: res.data
- }
- let msgInfo = JSON.parse(JSON.stringify(file.msgInfo));
- msgInfo.content = JSON.stringify(data);
- msgInfo.receipt = this.isReceipt
- this.sendMessageRequest(msgInfo).then((m) => {
- msgInfo.id = m.id;
- msgInfo.status = m.status;
- this.isReceipt = false;
- this.chatStore.updateMessage(msgInfo, file.chat);
- })
- },
- onUploadFileFail(file, res) {
- let msgInfo = JSON.parse(JSON.stringify(file.msgInfo));
- msgInfo.status = this.$enums.MESSAGE_STATUS.FAILED;
- this.chatStore.updateMessage(msgInfo, file.chat);
- },
- onResendMessage(msgInfo) {
- if (msgInfo.type != this.$enums.MESSAGE_TYPE.TEXT) {
- uni.showToast({
- title: "该消息不支持自动重新发送,建议手动重新发送",
- icon: "none"
- })
- return;
- }
- // 防止发送期间用户切换会话导致串扰
- const chat = this.chat;
- // 删除旧消息
- this.chatStore.deleteMessage(msgInfo, chat);
- // 重新发送
- msgInfo.tmpId = this.generateId();
- let tmpMessage = this.buildTmpMessage(msgInfo);
- this.chatStore.insertMessage(tmpMessage, chat);
- this.moveChatToTop();
- this.sendMessageRequest(msgInfo).then(m => {
- // 更新消息
- tmpMessage = JSON.parse(JSON.stringify(tmpMessage));
- tmpMessage.id = m.id;
- tmpMessage.status = m.status;
- tmpMessage.content = m.content;
- this.chatStore.updateMessage(tmpMessage, chat);
- }).catch(() => {
- // 更新消息
- tmpMessage = JSON.parse(JSON.stringify(tmpMessage));
- tmpMessage.status = this.$enums.MESSAGE_STATUS.FAILED;
- this.chatStore.updateMessage(tmpMessage, chat);
- })
- },
- onDeleteMessage(msgInfo) {
- uni.showModal({
- title: '删除消息',
- content: '确认删除消息?',
- success: (res) => {
- if (!res.cancel) {
- this.chatStore.deleteMessage(msgInfo, this.chat);
- uni.showToast({
- title: "删除成功",
- icon: "none"
- })
- }
- }
- })
- },
- onRecallMessage(msgInfo) {
- uni.showModal({
- title: '撤回消息',
- content: '确认撤回消息?',
- success: (res) => {
- if (!res.cancel) {
- let url = `/message/${this.chat.type.toLowerCase()}/recall/${msgInfo.id}`
- this.$http({
- url: url,
- method: 'DELETE'
- }).then((m) => {
- m.selfSend = true;
- this.chatStore.recallMessage(m, this.chat);
- })
- }
- }
- })
- },
- onCopyMessage(msgInfo) {
- uni.setClipboardData({
- data: msgInfo.content,
- success: () => {
- uni.showToast({ title: '复制成功' });
- },
- fail: () => {
- uni.showToast({ title: '复制失败', icon: 'none' });
- }
- });
- },
- onDownloadFile(msgInfo) {
- let url = JSON.parse(msgInfo.content).url;
- uni.downloadFile({
- url: url,
- success(res) {
- if (res.statusCode === 200) {
- var filePath = encodeURI(res.tempFilePath);
- uni.openDocument({
- filePath: filePath,
- showMenu: true
- });
- }
- },
- fail(e) {
- uni.showToast({
- title: "文件下载失败",
- icon: "none"
- })
- }
- });
- },
- onClickToBottom() {
- this.scrollToBottom();
- // 有些设备滚到底部时会莫名触发滚动到顶部的事件
- // 所以这里延迟100s保证能准确设置底部标志
- setTimeout(() => {
- this.isInBottom = true;
- this.newMessageSize = 0;
- }, 100)
- },
- onScroll(e) {
- // 记录当前滚动条高度
- this.scrollViewHeight = e.detail.scrollHeight;
- },
- onScrollToTop() {
- if (this.showMinIdx > 0) {
- // #ifndef H5
- // 防止滚动条定格在顶部,不能一直往上滚,app和小程序采用scroll-into-view定位
- this.scrollToMsgIdx(this.showMinIdx);
- // #endif
- // #ifdef H5
- // 防止滚动条定格在顶部,不能一直往上滚,h5采用scroll-top定位
- if (uni.getSystemInfoSync().platform == 'ios') {
- this.holdingScrollBar(this.scrollViewHeight);
- }
- // #endif
- // 多展示20条信息
- this.showMinIdx = this.showMinIdx > 20 ? this.showMinIdx - 20 : 0;
- }
- // 清除底部标识
- this.isInBottom = false;
- },
- onScrollToBottom(e) {
- // 设置底部标识
- this.isInBottom = true;
- this.newMessageSize = 0;
- },
- holdingScrollBar(scrollViewHeight) {
- // 内容高度
- const query = uni.createSelectorQuery().in(this);
- setTimeout(() => {
- query.select('.chat-wrap').boundingClientRect();
- query.exec(data => {
- this.scrollTop = data[0].height - scrollViewHeight;
- if (this.scrollTop < 10) {
- // 未渲染完成,重试一次
- this.holdingScrollBar();
- } else {
- // 让页面再滚动一下,解决部分ios手机出现白屏问题
- const delays = [100, 300, 1000];
- delays.forEach(delay => setTimeout(() => this.scrollTop += 5, delay))
- }
- });
- }, 10)
- },
- onShowMore() {
- if (this.isGroup) {
- uni.navigateTo({
- url: "/pages/group/group-info?id=" + this.group.id
- })
- } else {
- uni.navigateTo({
- url: "/pages/common/user-info?id=" + this.userInfo.id
- })
- }
- },
- onTextInput(e) {
- this.isEmpty = e.detail.html == '<p><br></p>'
- },
- onEditorReady() {
- this.$nextTick(() => {
- const query = uni.createSelectorQuery().in(this);
- query.select('#editor').context((res) => {
- this.editorCtx = res.context
- }).exec()
- })
- },
- onEditorFocus(e) {
- this.isFocus = true;
- this.scrollToBottom()
- this.switchChatTabBox('none')
- },
- onEditorBlur(e) {
- this.isFocus = false;
- },
- onAudioStateChange(state, msgInfo) {
- const playingAudio = this.$refs['message' + msgInfo.id][0]
- if (state == 'PLAYING' && playingAudio != this.playingAudio) {
- // 停止之前的录音
- this.playingAudio && this.playingAudio.stopPlayAudio();
- // 记录当前正在播放的消息
- this.playingAudio = playingAudio;
- }
- },
- loadReaded(fid) {
- this.$http({
- url: `/message/private/maxReadedId?friendId=${fid}`,
- method: 'get'
- }).then((id) => {
- this.chatStore.readedMessage({
- friendId: fid,
- maxId: id
- });
- });
- },
- readedMessage() {
- if (this.unreadCount > 0) {
- let url = ""
- if (this.isGroup) {
- url = `/message/group/readed?groupId=${this.chat.targetId}`
- } else {
- url = `/message/private/readed?friendId=${this.chat.targetId}`
- }
- this.$http({
- url: url,
- method: 'PUT'
- }).then(() => {})
- }
- this.chatStore.resetUnreadCount(this.chat)
- },
- loadGroup(groupId) {
- this.$http({
- url: `/group/find/${groupId}`,
- method: 'GET'
- }).then((group) => {
- this.group = group;
- this.chatStore.updateChatFromGroup(group);
- this.groupStore.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.friendStore.updateFriend(friend);
- // 更新会话中的头像和昵称
- this.chatStore.updateChatFromFriend(friend);
- } else {
- this.chatStore.updateChatFromUser(this.userInfo);
- }
- },
- loadFriend(friendId) {
- // 获取好友用户信息
- this.$http({
- url: `/user/find/${friendId}`,
- method: 'GET'
- }).then((userInfo) => {
- this.userInfo = userInfo;
- this.updateFriendInfo();
- })
- },
- rpxTopx(rpx) {
- // rpx转换成px
- let info = uni.getSystemInfoSync()
- let px = info.windowWidth * rpx / 750;
- return Math.floor(rpx);
- },
- 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();
- })
- }
- },
- reCalChatMainHeight() {
- let sysInfo = uni.getSystemInfoSync();
- let h = this.windowHeight;
- // 减去标题栏高度
- h -= 50;
- // 减去键盘高度
- if (this.isShowKeyBoard || this.chatTabBox != 'none') {
- // ios app的键盘高度不准,需要减去屏幕和窗口差
- // #ifdef APP-PLUS
- if (sysInfo.platform == 'ios') {
- h += this.screenHeight - this.windowHeight;
- }
- // #endif
- h -= this.keyboardHeight;
- this.scrollToBottom();
- }
- // APP需要减去状态栏高度
- // #ifdef APP-PLUS
- h -= sysInfo.statusBarHeight;
- // #endif
- this.chatMainHeight = h;
- // #ifndef APP
- // ios浏览器键盘把页面顶起后,页面长度不会变化,这里把页面拉到顶部适配一下
- if (uni.getSystemInfoSync().platform == 'ios') {
- // 不同手机需要的延时时间不一致,采用分段延时的方式处理
- const delays = [50, 100, 500];
- delays.forEach((delay) => {
- setTimeout(() => {
- uni.pageScrollTo({
- scrollTop: 0,
- duration: 10
- });
- }, delay);
- })
- }
- // #endif
- },
- listenKeyBoard() {
- // #ifdef H5
- if (navigator.platform == "Win32") {
- // 电脑端不需要弹出键盘
- console.log("navigator.platform:", navigator.platform)
- return;
- }
- if (uni.getSystemInfoSync().platform == 'ios') {
- // 监听键盘高度,ios13以上开始支持
- if (window.visualViewport) {
- window.visualViewport.addEventListener('resize', this.resizeListener);
- } else {
- // ios h5实现键盘监听
- window.addEventListener('focusin', this.focusInListener);
- window.addEventListener('focusout', this.focusOutListener);
- }
- } else {
- // 安卓h5实现键盘监听
- window.addEventListener('resize', this.resizeListener);
- }
- // #endif
- // #ifndef H5
- // app实现键盘监听
- uni.onKeyboardHeightChange(this.keyBoardListener);
- // #endif
- },
- unListenKeyboard() {
- // #ifdef H5
- window.removeEventListener('focusin', this.focusInListener);
- window.removeEventListener('focusout', this.focusOutListener);
- window.removeEventListener('resize', this.resizeListener);
- if (window.visualViewport) {
- window.visualViewport.removeEventListener('resize', this.resizeListener);
- }
- // #endif
- // #ifndef H5
- uni.offKeyboardHeightChange(this.keyBoardListener);
- // #endif
- },
- keyBoardListener(res) {
- this.isShowKeyBoard = res.height > 0;
- if (this.isShowKeyBoard) {
- this.keyboardHeight = res.height; // 获取并保存键盘高度
- }
- setTimeout(() => this.reCalChatMainHeight(), 30);
- },
- resizeListener() {
- let keyboardHeight = this.initHeight - window.innerHeight;
- // 兼容部分ios浏览器
- if (window.visualViewport && uni.getSystemInfoSync().platform == 'ios') {
- keyboardHeight = this.initHeight - window.visualViewport.height;
- }
- let isShowKeyBoard = keyboardHeight > 150;
- if (isShowKeyBoard) {
- this.keyboardHeight = keyboardHeight;
- }
- if (this.isShowKeyBoard != isShowKeyBoard) {
- this.isShowKeyBoard = isShowKeyBoard;
- setTimeout(() => this.reCalChatMainHeight(), 30);
- }
- },
- focusInListener() {
- this.isShowKeyBoard = true;
- setTimeout(() => this.reCalChatMainHeight(), 30);
- },
- focusOutListener() {
- this.isShowKeyBoard = false;
- setTimeout(() => this.reCalChatMainHeight(), 30);
- },
- showBannedTip() {
- let msgInfo = {
- tmpId: this.generateId(),
- sendId: this.mine.id,
- sendTime: new Date().getTime(),
- type: this.$enums.MESSAGE_TYPE.TIP_TEXT
- }
- if (this.isPrivate) {
- msgInfo.recvId = this.mine.id
- msgInfo.content = "该用户已被管理员封禁,原因:" + this.userInfo.reason
- } else {
- msgInfo.groupId = this.group.id;
- msgInfo.content = "本群聊已被管理员封禁,原因:" + this.group.reason
- }
- this.chatStore.insertMessage(msgInfo, this.chat);
- },
- buildTmpMessage(msgInfo) {
- let message = JSON.parse(JSON.stringify(msgInfo));
- message.sendId = this.mine.id;
- message.sendTime = new Date().getTime();
- message.status = this.$enums.MESSAGE_STATUS.SENDING;
- message.selfSend = true;
- if (this.isGroup) {
- message.readedCount = 0;
- }
- return message;
- },
- getImageSize(file) {
- return new Promise((resolve) => {
- uni.getImageInfo({
- src: file.path,
- success: (res) => {
- resolve(res);
- },
- fail: (err) => {
- console.error('获取图片信息失败', err);
- }
- });
- });
- },
- generateId() {
- // 生成临时id
- return String(new Date().getTime()) + String(Math.floor(Math.random() * 1000));
- }
- },
- computed: {
- mine() {
- return this.userStore.userInfo;
- },
- friend() {
- return this.friendStore.findFriend(this.userInfo.id);
- },
- title() {
- if (!this.chat) {
- return "";
- }
- let title = this.chat.showName;
- if (this.isGroup) {
- let size = this.groupMembers.filter(m => !m.quit).length;
- title += `(${size})`;
- }
- return title;
- },
- messageAction() {
- return `/message/${this.chat.type.toLowerCase()}/send`;
- },
- messageSize() {
- if (!this.chat || !this.chat.messages) {
- return 0;
- }
- return this.chat.messages.length;
- },
- unreadCount() {
- if (!this.chat || !this.chat.unreadCount) {
- return 0;
- }
- return this.chat.unreadCount;
- },
- isBanned() {
- return (this.isPrivate && this.userInfo.isBanned) ||
- (this.isGroup && this.group.isBanned)
- },
- atUserItems() {
- let atUsers = [];
- this.atUserIds.forEach((id) => {
- if (id == -1) {
- atUsers.push({
- id: -1,
- showNickName: "全体成员"
- })
- return;
- }
- let member = this.groupMembers.find((m) => m.userId == id);
- if (member) {
- atUsers.push(member);
- }
- })
- return atUsers;
- },
- memberSize() {
- return this.groupMembers.filter(m => !m.quit).length;
- },
- isGroup() {
- return this.chat.type == 'GROUP';
- },
- isPrivate() {
- return this.chat.type == 'PRIVATE';
- },
- loading() {
- return this.chatStore.loading;
- }
- },
- watch: {
- messageSize: function(newSize, oldSize) {
- // 接收到新消息
- if (newSize > oldSize && oldSize > 0) {
- let lastMessage = this.chat.messages[newSize - 1];
- if (this.$msgType.isNormal(lastMessage.type)) {
- if (this.isInBottom || lastMessage.selfSend) {
- // 收到消息,则滚动至底部
- this.scrollToBottom();
- } else {
- // 若滚动条不在底部,说明用户正在翻历史消息,此时滚动条不能动,同时增加新消息提示
- this.newMessageSize++;
- }
- }
- }
- },
- unreadCount: {
- handler(newCount, oldCount) {
- if (newCount > 0) {
- // 消息已读
- this.readedMessage()
- }
- }
- },
- loading: {
- handler(newLoading, oldLoading) {
- // 断线重连后,需要更新一下已读状态
- if (!newLoading && this.isPrivate) {
- this.loadReaded(this.chat.targetId)
- }
- }
- }
- },
- onLoad(options) {
- // 聊天数据
- this.chat = this.chatStore.chats[options.chatIdx];
- // 初始状态只显示20条消息
- let size = this.messageSize;
- this.showMinIdx = size > 20 ? size - 20 : 0;
- // 消息已读
- this.readedMessage()
- // 加载好友或群聊信息
- if (this.isGroup) {
- this.loadGroup(this.chat.targetId);
- } else {
- this.loadFriend(this.chat.targetId);
- this.loadReaded(this.chat.targetId)
- }
- // 激活当前会话
- this.chatStore.activeChat(options.chatIdx);
- // 复位回执消息
- this.isReceipt = false;
- // 清空底部标志
- this.isInBottom = true;
- this.newMessageSize = 0;
- // 监听键盘高度
- this.listenKeyBoard();
- // 计算聊天窗口高度
- this.windowHeight = uni.getSystemInfoSync().windowHeight;
- this.screenHeight = uni.getSystemInfoSync().screenHeight;
- this.reCalChatMainHeight();
- this.$nextTick(() => {
- // 上面获取的windowHeight可能不准,重新计算一次聊天窗口高度
- this.windowHeight = uni.getSystemInfoSync().windowHeight;
- this.reCalChatMainHeight();
- this.scrollToBottom();
- // #ifdef H5
- this.initHeight = window.innerHeight;
- // 兼容ios的h5:禁止页面滚动
- const chatBox = document.getElementById('chatBox')
- chatBox.addEventListener('touchmove', e => {
- e.preventDefault()
- }, { passive: false });
- // #endif
- });
- },
- onUnload() {
- this.unListenKeyboard();
- }
- }
- </script>
- <style lang="scss">
- .chat-box {
- $icon-color: rgba(0, 0, 0, 0.88);
- position: relative;
- background-color: #fafafa;
- .header {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 60rpx;
- padding: 5px;
- background-color: #fafafa;
- line-height: 50px;
- font-size: $im-font-size-large;
- box-shadow: $im-box-shadow-lighter;
- z-index: 1;
- .btn-side {
- position: absolute;
- line-height: 60rpx;
- cursor: pointer;
- &.right {
- right: 30rpx;
- }
- }
- }
- .chat-main-box {
- // #ifndef APP-PLUS
- top: $im-nav-bar-height;
- // #endif
- // #ifdef APP-PLUS
- top: calc($im-nav-bar-height + var(--status-bar-height));
- // #endif
- position: fixed;
- width: 100%;
- display: flex;
- flex-direction: column;
- z-index: 2;
- .chat-message {
- flex: 1;
- padding: 0;
- overflow: hidden;
- position: relative;
- background-color: white;
- .scroll-box {
- height: 100%;
- }
- .scroll-to-bottom {
- position: absolute;
- right: 30rpx;
- bottom: 30rpx;
- font-size: $im-font-size;
- color: $im-color-primary;
- font-weight: 600;
- background: white;
- padding: 10rpx 30rpx;
- border-radius: 25rpx;
- box-shadow: $im-box-shadow-dark;
- }
- }
- .chat-at-bar {
- display: flex;
- align-items: center;
- padding: 0 10rpx;
- .icon-at {
- font-size: $im-font-size-larger;
- color: $im-color-primary;
- font-weight: bold;
- }
- .chat-at-scroll-box {
- flex: 1;
- width: 80%;
- .chat-at-items {
- display: flex;
- align-items: center;
- height: 70rpx;
- .chat-at-item {
- padding: 0 3rpx;
- }
- }
- }
- }
- .send-bar {
- display: flex;
- align-items: center;
- padding: 10rpx;
- border-top: $im-border solid 1px;
- background-color: $im-bg;
- min-height: 80rpx;
- padding-bottom: 14rpx;
- .iconfont {
- font-size: 60rpx;
- margin: 0 10rpx;
- color: $icon-color;
- }
- .chat-record {
- flex: 1;
- }
- .send-text {
- flex: 1;
- overflow: auto;
- padding: 14rpx 20rpx;
- background-color: #fff;
- border-radius: 8rpx;
- font-size: $im-font-size;
- box-sizing: border-box;
- margin: 0 10rpx;
- position: relative;
- .send-text-area {
- width: 100%;
- height: 100%;
- min-height: 40rpx;
- max-height: 200rpx;
- font-size: 30rpx;
- }
- }
- .btn-send {
- margin: 5rpx;
- }
- }
- }
- .chat-tab-bar {
- position: fixed;
- bottom: 0;
- background-color: $im-bg;
- .chat-tools {
- padding: 40rpx;
- box-sizing: border-box;
- .chat-tools-list {
- display: flex;
- flex-wrap: wrap;
- align-content: center;
- .chat-tools-item {
- width: 25%;
- padding: 16rpx;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- align-items: center;
- .tool-icon {
- padding: 26rpx;
- font-size: 54rpx;
- border-radius: 20%;
- background-color: white;
- color: $icon-color;
- &:active {
- background-color: $im-bg-active;
- }
- }
- .tool-name {
- height: 60rpx;
- line-height: 60rpx;
- font-size: 28rpx;
- }
- }
- }
- }
- .chat-emotion {
- padding: 40rpx;
- box-sizing: border-box;
- .emotion-item-list {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- align-content: center;
- .emotion-item {
- text-align: center;
- cursor: pointer;
- padding: 5px;
- }
- }
- }
- }
- }
- </style>
|