2025-07-04 16:18:58 +08:00
|
|
|
export default {
|
|
|
|
|
storeConversationList: (state) => state.conversation.conversationList,
|
|
|
|
|
storeCurrentConversation: (state) => state.conversation.currentConversation,
|
|
|
|
|
storeUnReadCount: (state) => state.conversation.unReadCount,
|
|
|
|
|
storeCurrentGroup: (state) => state.conversation.currentGroup,
|
|
|
|
|
storeCurrentMemberInGroup: (state) => state.conversation.currentMemberInGroup,
|
|
|
|
|
storeFriendList: (state) => state.contact.friendList,
|
|
|
|
|
storeBlackList: (state) => state.contact.blackList,
|
|
|
|
|
storeGroupList: (state) => state.contact.groupList,
|
|
|
|
|
storeRecvFriendApplications: (state) => state.contact.recvFriendApplications,
|
|
|
|
|
storeSentFriendApplications: (state) => state.contact.sentFriendApplications,
|
|
|
|
|
storeRecvGroupApplications: (state) => state.contact.recvGroupApplications,
|
|
|
|
|
storeSentGroupApplications: (state) => state.contact.sentGroupApplications,
|
|
|
|
|
storeHistoryMessageList: (state) => state.message.historyMessageList,
|
|
|
|
|
storeHasMoreMessage: (state) => state.message.hasMoreMessage,
|
|
|
|
|
storeSelfInfo: (state) => state.user.selfInfo,
|
|
|
|
|
storeCurrentUserID: (state) => state.user.selfInfo.userID,
|
|
|
|
|
storeIsSyncing: (state) => state.user.isSyncing,
|
|
|
|
|
storeReinstall: (state) => state.user.reinstall,
|
|
|
|
|
storeProgress: (state) => state.user.progress,
|
|
|
|
|
storeAuthData: (state) => state.user.authData,
|
2026-02-05 10:42:50 +08:00
|
|
|
storeOaId: (state) => state.oa.id,
|
|
|
|
|
storeOaName: (state) => state.oa.userName,
|
2025-07-04 16:18:58 +08:00
|
|
|
};
|