import { store } from '@/store'
|
import { defineStore } from 'pinia'
|
import { KeFuConversationApi, KeFuConversationRespVO } from '@/api/mall/promotion/kefu/conversation'
|
import { KeFuMessageRespVO } from '@/api/mall/promotion/kefu/message'
|
import { isEmpty } from '@/utils/is'
|
|
interface MallKefuInfoVO {
|
conversationList: KeFuConversationRespVO[] // 会话列表
|
conversationMessageList: Map<number, KeFuMessageRespVO[]> // 会话消息
|
}
|
|
export const useMallKefuStore = defineStore('mall-kefu', {
|
state: (): MallKefuInfoVO => ({
|
conversationList: [],
|
conversationMessageList: new Map<number, KeFuMessageRespVO[]>() // key 会话,value 会话消息列表
|
}),
|
getters: {
|
getConversationList(): KeFuConversationRespVO[] {
|
return this.conversationList
|
},
|
getConversationMessageList(): (conversationId: number) => KeFuMessageRespVO[] | undefined {
|
return (conversationId: number) => this.conversationMessageList.get(conversationId)
|
}
|
},
|
actions: {
|
// ======================= 会话消息相关 =======================
|
/** 缓存历史消息 */
|
saveMessageList(conversationId: number, messageList: KeFuMessageRespVO[]) {
|
this.conversationMessageList.set(conversationId, messageList)
|
},
|
|
// ======================= 会话相关 =======================
|
/** 加载会话缓存列表 */
|
async setConversationList() {
|
this.conversationList = await KeFuConversationApi.getConversationList()
|
this.conversationSort()
|
},
|
/** 更新会话缓存已读 */
|
async updateConversationStatus(conversationId: number) {
|
if (isEmpty(this.conversationList)) {
|
return
|
}
|
const conversation = this.conversationList.find((item) => item.id === conversationId)
|
conversation && (conversation.adminUnreadMessageCount = 0)
|
},
|
/** 更新会话缓存 */
|
async updateConversation(conversationId: number) {
|
if (isEmpty(this.conversationList)) {
|
return
|
}
|
|
const conversation = await KeFuConversationApi.getConversation(conversationId)
|
this.deleteConversation(conversationId)
|
conversation && this.conversationList.push(conversation)
|
this.conversationSort()
|
},
|
/** 删除会话缓存 */
|
deleteConversation(conversationId: number) {
|
const index = this.conversationList.findIndex((item) => item.id === conversationId)
|
// 存在则删除
|
if (index > -1) {
|
this.conversationList.splice(index, 1)
|
}
|
},
|
conversationSort() {
|
// 按置顶属性和最后消息时间排序
|
this.conversationList.sort((a, b) => {
|
// 按照置顶排序,置顶的会在前面
|
if (a.adminPinned !== b.adminPinned) {
|
return a.adminPinned ? -1 : 1
|
}
|
// 按照最后消息时间排序,最近的会在前面
|
return (b.lastMessageTime as unknown as number) - (a.lastMessageTime as unknown as number)
|
})
|
}
|
}
|
})
|
|
export const useMallKefuStoreWithOut = () => {
|
return useMallKefuStore(store)
|
}
|