pleroma-fe/src/modules/chats.js

173 lines
4.9 KiB
JavaScript
Raw Normal View History

2020-05-07 16:10:53 +03:00
import { find, omitBy, orderBy, sumBy } from 'lodash'
2026-01-06 16:23:17 +02:00
import { reactive } from 'vue'
2026-01-08 17:26:52 +02:00
2020-05-07 16:10:53 +03:00
import chatService from '../services/chat_service/chat_service.js'
2026-01-06 16:23:17 +02:00
import { maybeShowChatNotification } from '../services/chat_utils/chat_utils.js'
2020-09-04 11:19:53 +03:00
import { promiseInterval } from '../services/promise_interval/promise_interval.js'
2020-05-07 16:10:53 +03:00
2026-06-16 17:32:26 +03:00
import { useOAuthStore } from 'src/stores/oauth.js'
2026-06-13 23:32:08 +03:00
import { chats, deleteChatMessage } from 'src/api/chats.js'
2026-06-13 23:32:08 +03:00
2020-05-07 16:10:53 +03:00
const emptyChatList = () => ({
data: [],
2026-01-06 16:22:52 +02:00
idStore: {},
2020-05-07 16:10:53 +03:00
})
const defaultState = {
chatList: emptyChatList(),
chatListFetcher: null,
fetcher: undefined,
2020-10-29 13:33:06 +03:00
currentChatId: null,
2026-01-06 16:22:52 +02:00
lastReadMessageId: null,
2020-05-07 16:10:53 +03:00
}
const getChatById = (state, id) => {
return find(state.chatList.data, { id })
}
const sortedChatList = (state) => {
return orderBy(state.chatList.data, ['updated_at'], ['desc'])
}
const unreadChatCount = (state) => {
return sumBy(state.chatList.data, 'unread')
}
2026-06-13 23:32:08 +03:00
const chatsModule = {
2020-05-07 16:10:53 +03:00
state: { ...defaultState },
getters: {
sortedChatList,
2026-01-06 16:22:52 +02:00
unreadChatCount,
2020-05-07 16:10:53 +03:00
},
actions: {
// Chat list
2026-01-06 16:22:52 +02:00
startFetchingChats({ dispatch, commit }) {
2020-09-02 21:01:31 +03:00
const fetcher = () => dispatch('fetchChats', { latest: true })
2020-05-07 16:10:53 +03:00
commit('setChatListFetcher', {
2026-01-06 16:22:52 +02:00
fetcher: () => promiseInterval(fetcher, 5000),
2020-05-07 16:10:53 +03:00
})
},
2026-01-06 16:22:52 +02:00
stopFetchingChats({ commit }) {
2020-05-07 16:10:53 +03:00
commit('setChatListFetcher', { fetcher: undefined })
},
2026-01-06 16:22:52 +02:00
fetchChats({ dispatch, rootState }) {
2026-06-13 23:32:08 +03:00
return chats({
2026-06-16 17:32:26 +03:00
credentials: useOAuthStore().token,
}).then(({ data }) => {
dispatch('addNewChats', { chats: data })
2026-01-06 16:22:52 +02:00
return chats
})
2020-05-07 16:10:53 +03:00
},
2026-01-06 16:22:52 +02:00
addNewChats(store, { chats }) {
2020-07-13 00:06:45 +03:00
const { commit, dispatch, rootGetters } = store
const newChatMessageSideEffects = (chat) => {
maybeShowChatNotification(store, chat)
}
2026-01-06 16:22:52 +02:00
commit(
'addNewUsers',
chats.map((k) => k.account).filter((k) => k),
)
commit('addNewChats', {
dispatch,
chats,
rootGetters,
newChatMessageSideEffects,
})
2020-05-07 16:10:53 +03:00
},
// Opened Chats
2026-01-06 16:22:52 +02:00
addOpenedChat({ commit, dispatch }, { chat }) {
commit('addOpenedChat', { dispatch, chat })
2020-05-07 16:10:53 +03:00
dispatch('addNewUsers', [chat.account])
},
2026-01-06 16:22:52 +02:00
addChatMessages({ commit }, value) {
2020-05-07 16:10:53 +03:00
commit('addChatMessages', { commit, ...value })
},
2026-01-06 16:22:52 +02:00
deleteChatMessage({ rootState, commit }, value) {
2026-06-15 20:02:22 +03:00
deleteChatMessage({
...value,
2026-06-16 17:32:26 +03:00
credentials: useOAuthStore().token,
2026-06-15 20:02:22 +03:00
})
2020-05-07 16:10:53 +03:00
commit('deleteChatMessage', { commit, ...value })
},
2026-01-06 16:22:52 +02:00
resetChats({ commit, dispatch }) {
2020-05-07 16:10:53 +03:00
commit('resetChats', { commit })
},
2026-01-06 16:22:52 +02:00
clearOpenedChats({ commit }) {
2020-05-07 16:10:53 +03:00
commit('clearOpenedChats', { commit })
2020-10-29 13:33:06 +03:00
},
2026-01-06 16:22:52 +02:00
handleMessageError({ commit }, value) {
2020-10-29 13:33:06 +03:00
commit('handleMessageError', { commit, ...value })
},
2020-05-07 16:10:53 +03:00
},
mutations: {
2026-01-06 16:22:52 +02:00
setChatListFetcher(state, { fetcher }) {
2020-05-07 16:10:53 +03:00
const prevFetcher = state.chatListFetcher
if (prevFetcher) {
prevFetcher.stop()
2020-05-07 16:10:53 +03:00
}
state.chatListFetcher = fetcher && fetcher()
},
2026-01-06 16:22:52 +02:00
setCurrentChatId(state, { chatId }) {
2020-05-07 16:10:53 +03:00
state.currentChatId = chatId
},
2026-01-06 16:22:52 +02:00
addNewChats(state, { chats, newChatMessageSideEffects }) {
2020-05-07 16:10:53 +03:00
chats.forEach((updatedChat) => {
const chat = getChatById(state, updatedChat.id)
if (chat) {
2026-01-06 16:22:52 +02:00
const isNewMessage =
(chat.lastMessage && chat.lastMessage.id) !==
(updatedChat.lastMessage && updatedChat.lastMessage.id)
2020-05-07 16:10:53 +03:00
chat.lastMessage = updatedChat.lastMessage
chat.unread = updatedChat.unread
chat.updated_at = updatedChat.updated_at
2020-07-13 00:06:45 +03:00
if (isNewMessage && chat.unread) {
newChatMessageSideEffects(updatedChat)
}
2020-05-07 16:10:53 +03:00
} else {
state.chatList.data.push(updatedChat)
2021-04-25 13:24:08 +03:00
state.chatList.idStore[updatedChat.id] = updatedChat
2020-05-07 16:10:53 +03:00
}
})
},
2026-01-06 16:22:52 +02:00
updateChat(state, { chat: updatedChat }) {
2020-05-07 16:10:53 +03:00
const chat = getChatById(state, updatedChat.id)
if (chat) {
chat.lastMessage = updatedChat.lastMessage
chat.unread = updatedChat.unread
chat.updated_at = updatedChat.updated_at
}
2026-01-06 16:22:52 +02:00
if (!chat) {
state.chatList.data.unshift(updatedChat)
}
2021-04-25 13:24:08 +03:00
state.chatList.idStore[updatedChat.id] = updatedChat
2020-05-07 16:10:53 +03:00
},
2026-01-06 16:22:52 +02:00
deleteChat(state, { id }) {
state.chats.data = state.chats.data.filter(
(conversation) => conversation.last_status.id !== id,
)
state.chats.idStore = omitBy(
state.chats.idStore,
(conversation) => conversation.last_status.id === id,
2020-05-07 16:10:53 +03:00
)
},
2026-01-06 16:22:52 +02:00
resetChats(state, { commit }) {
2020-05-07 16:10:53 +03:00
state.chatList = emptyChatList()
state.currentChatId = null
commit('setChatListFetcher', { fetcher: undefined })
},
2026-01-06 16:22:52 +02:00
setChatsLoading(state, { value }) {
2020-05-07 16:10:53 +03:00
state.chats.loading = value
},
2026-01-06 16:22:52 +02:00
readChat(state, { id, lastReadId }) {
2020-05-07 16:10:53 +03:00
const chat = getChatById(state, id)
if (chat) {
chat.unread = 0
}
2020-10-29 13:33:06 +03:00
},
2026-01-06 16:22:52 +02:00
},
2020-05-07 16:10:53 +03:00
}
2026-06-13 23:32:08 +03:00
export default chatsModule