import { MESSAGE_TYPE, MESSAGE_STATUS } from '@/common/enums.js'; import userStore from './userStore'; export default { state: { activeIndex: -1, chats: [], privateMsgMaxId: 0, groupMsgMaxId: 0, loadingPrivateMsg: false, loadingGroupMsg: false, }, mutations: { initChats(state, chatsData) { state.chats = chatsData.chats ||[]; state.privateMsgMaxId = chatsData.privateMsgMaxId||0; state.groupMsgMaxId = chatsData.groupMsgMaxId||0; // 防止图片一直处在加载中状态 state.chats.forEach((chat) => { chat.messages.forEach((msg) => { if (msg.loadStatus == "loading") { msg.loadStatus = "fail" } }) }) }, openChat(state, chatInfo) { let chat = null; for (let idx in state.chats) { if (state.chats[idx].type == chatInfo.type && state.chats[idx].targetId === chatInfo.targetId) { chat = state.chats[idx]; // 放置头部 this.commit("moveTop",idx) break; } } // 创建会话 if (chat == null) { chat = { targetId: chatInfo.targetId, type: chatInfo.type, showName: chatInfo.showName, headImage: chatInfo.headImage, lastContent: "", lastSendTime: new Date().getTime(), unreadCount: 0, messages: [], atMe: false, atAll: false }; state.chats.unshift(chat); } this.commit("saveToStorage"); }, activeChat(state, idx) { state.activeIndex = idx; if (idx >= 0) { state.chats[idx].unreadCount = 0; } }, resetUnreadCount(state, chatInfo) { for (let idx in state.chats) { if (state.chats[idx].type == chatInfo.type && state.chats[idx].targetId == chatInfo.targetId) { state.chats[idx].unreadCount = 0; state.chats[idx].atMe = false; state.chats[idx].atAll = false; } } this.commit("saveToStorage"); }, readedMessage(state, pos) { for (let idx in state.chats) { if (state.chats[idx].type == 'PRIVATE' && state.chats[idx].targetId == pos.friendId) { state.chats[idx].messages.forEach((m) => { if (m.selfSend && m.status != MESSAGE_STATUS.RECALL) { // pos.maxId为空表示整个会话已读 if(!pos.maxId || m.id <= pos.maxId){ m.status = MESSAGE_STATUS.READED } } }) } } this.commit("saveToStorage"); }, removeChat(state, idx) { state.chats.splice(idx, 1); this.commit("saveToStorage"); }, removePrivateChat(state, userId) { for (let idx in state.chats) { if (state.chats[idx].type == 'PRIVATE' && state.chats[idx].targetId == userId) { this.commit("removeChat", idx); } } }, moveTop(state, idx) { // 加载中不移动,很耗性能 if(state.loadingPrivateMsg || state.loadingGroupMsg){ return ; } if (idx > 0) { let chat = state.chats[idx]; state.chats.splice(idx, 1); state.chats.unshift(chat); this.commit("saveToStorage"); } }, insertMessage(state, msgInfo) { // 获取对方id或群id let type = msgInfo.groupId ? 'GROUP' : 'PRIVATE'; // 记录消息的最大id if (msgInfo.id && type == "PRIVATE" && msgInfo.id > state.privateMsgMaxId) { state.privateMsgMaxId = msgInfo.id; } if (msgInfo.id && type == "GROUP" && msgInfo.id > state.groupMsgMaxId) { state.groupMsgMaxId = msgInfo.id; } // 如果是已存在消息,则覆盖旧的消息数据 let chat = this.getters.findChat(msgInfo); let message = this.getters.findMessage(chat, msgInfo); if(message){ Object.assign(message, msgInfo); // 撤回消息需要显示 if(msgInfo.type == MESSAGE_TYPE.RECALL){ chat.lastContent = msgInfo.content; } this.commit("saveToStorage"); return; } // 会话列表内容 if(!state.loadingPrivateMsg && !state.loadingGroupMsg){ if (msgInfo.type == MESSAGE_TYPE.IMAGE) { chat.lastContent = "[图片]"; } else if (msgInfo.type == MESSAGE_TYPE.FILE) { chat.lastContent = "[文件]"; } else if (msgInfo.type == MESSAGE_TYPE.AUDIO) { chat.lastContent = "[语音]"; } else if (msgInfo.type == MESSAGE_TYPE.TEXT || msgInfo.type == MESSAGE_TYPE.RECALL) { chat.lastContent = msgInfo.content; } else if (msgInfo.type == MESSAGE_TYPE.RT_VOICE) { chat.lastContent = "[语音通话]"; } else if (msgInfo.type == MESSAGE_TYPE.RT_VIDEO) { chat.lastContent = "[视频通话]"; } chat.lastSendTime = msgInfo.sendTime; chat.sendNickName = msgInfo.sendNickName; } // 未读加1 if (!msgInfo.selfSend && msgInfo.status != MESSAGE_STATUS.READED && msgInfo.type != MESSAGE_TYPE.TIP_TEXT) { chat.unreadCount++; } // 是否有人@我 if(!msgInfo.selfSend && chat.type=="GROUP" && msgInfo.atUserIds && msgInfo.status != MESSAGE_STATUS.READED){ let userId = userStore.state.userInfo.id; if(msgInfo.atUserIds.indexOf(userId)>=0){ chat.atMe = true; } if(msgInfo.atUserIds.indexOf(-1)>=0){ chat.atAll = true; } } // 间隔大于10分钟插入时间显示 if (!chat.lastTimeTip || (chat.lastTimeTip < msgInfo.sendTime - 600 * 1000)) { chat.messages.push({ sendTime: msgInfo.sendTime, type: MESSAGE_TYPE.TIP_TIME, }); chat.lastTimeTip = msgInfo.sendTime; } // 根据id顺序插入,防止消息乱序 let insertPos = chat.messages.length; for (let idx in chat.messages) { if (chat.messages[idx].id && msgInfo.id < chat.messages[idx].id) { insertPos = idx; console.log(`消息出现乱序,位置:${chat.messages.length},修正至:${insertPos}`); break; } } chat.messages.splice(insertPos, 0, msgInfo); this.commit("saveToStorage"); }, updateMessage(state, msgInfo) { // 获取对方id或群id let chat = this.getters.findChat(msgInfo); let message = this.getters.findMessage(chat, msgInfo); if(message){ // 属性拷贝 Object.assign(message, msgInfo); this.commit("saveToStorage"); } }, deleteMessage(state, msgInfo) { // 获取对方id或群id let chat = this.getters.findChat(msgInfo); for (let idx in chat.messages) { // 已经发送成功的,根据id删除 if (chat.messages[idx].id && chat.messages[idx].id == msgInfo.id) { chat.messages.splice(idx, 1); break; } // 正在发送中的消息可能没有id,根据发送时间删除 if (msgInfo.selfSend && chat.messages[idx].selfSend && chat.messages[idx].sendTime == msgInfo.sendTime) { chat.messages.splice(idx, 1); break; } } this.commit("saveToStorage"); }, updateChatFromFriend(state, friend) { for (let i in state.chats) { let chat = state.chats[i]; if (chat.type == 'PRIVATE' && chat.targetId == friend.id) { chat.headImage = friend.headImageThumb; chat.showName = friend.nickName; break; } } this.commit("saveToStorage"); }, updateChatFromGroup(state, group) { for (let i in state.chats) { let chat = state.chats[i]; if (chat.type == 'GROUP' && chat.targetId == group.id) { chat.headImage = group.headImageThumb; chat.showName = group.remark; break; } } this.commit("saveToStorage"); }, loadingPrivateMsg(state, loadding) { state.loadingPrivateMsg = loadding; if(!state.loadingPrivateMsg && !state.loadingGroupMsg){ this.commit("refreshChats") } }, loadingGroupMsg(state, loadding) { state.loadingGroupMsg = loadding; if(!state.loadingPrivateMsg && !state.loadingGroupMsg){ this.commit("refreshChats") } }, refreshChats(state){ state.chats.forEach((chat)=>{ if(chat.messages.length>0){ let msgInfo = chat.messages[chat.messages.length-1]; if (msgInfo.type == MESSAGE_TYPE.IMAGE) { chat.lastContent = "[图片]"; } else if (msgInfo.type == MESSAGE_TYPE.FILE) { chat.lastContent = "[文件]"; } else if (msgInfo.type == MESSAGE_TYPE.AUDIO) { chat.lastContent = "[语音]"; } else if (msgInfo.type == MESSAGE_TYPE.TEXT || msgInfo.type == MESSAGE_TYPE.RECALL) { chat.lastContent = msgInfo.content; } chat.lastSendTime = msgInfo.sendTime; }else{ chat.lastContent = ""; chat.lastSendTime = new Date().getTime() } }) state.chats.sort((chat1, chat2) => { return chat2.lastSendTime-chat1.lastSendTime; }); }, saveToStorage(state) { let userId = userStore.state.userInfo.id; let key = "chats-" + userId; let chatsData = { privateMsgMaxId: state.privateMsgMaxId, groupMsgMaxId: state.groupMsgMaxId, chats: state.chats } uni.setStorage({ key: key, data: chatsData }) }, clear(state) { state.chats = []; state.activeIndex = -1; state.privateMsgMaxId = 0; state.groupMsgMaxId = 0; state.loadingPrivateMsg = false; state.loadingGroupMsg = false; } }, actions: { loadChat(context) { return new Promise((resolve, reject) => { let userId = userStore.state.userInfo.id; uni.getStorage({ key: "chats-" + userId, success(res) { context.commit("initChats", res.data); resolve() }, fail(e) { resolve() } }); }) } }, getters: { findChatIdx: (state) => (chat) => { for (let idx in state.chats) { if (state.chats[idx].type == chat.type && state.chats[idx].targetId === chat.targetId) { chat = state.chats[idx]; return idx; } } }, findChat: (state) => (msgInfo) => { // 获取对方id或群id let type = msgInfo.groupId ? 'GROUP' : 'PRIVATE'; let targetId = msgInfo.groupId ? msgInfo.groupId : msgInfo.selfSend ? msgInfo.recvId : msgInfo.sendId; let chat = null; for (let idx in state.chats) { if (state.chats[idx].type == type && state.chats[idx].targetId === targetId) { chat = state.chats[idx]; break; } } return chat; }, findMessage: (state) => (chat, msgInfo) => { if (!chat) { return null; } for (let idx in chat.messages) { // 通过id判断 if (msgInfo.id && chat.messages[idx].id == msgInfo.id) { return chat.messages[idx]; } // 正在发送中的消息可能没有id,通过发送时间判断 if (msgInfo.selfSend && chat.messages[idx].selfSend && chat.messages[idx].sendTime == msgInfo.sendTime) { return chat.messages[idx]; } } } } }