1 Star 0 Fork 0

GoBelieveIO/im_rn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
actions.js 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
//会话列表
export const SET_CONVERSATIONS = "set_conversations";
export const ADD_CONVERSATION = "add_conversation";
export const UPDATE_CONVERSATION = "update_conversation";
export const SET_UNREAD = "set_unread";
export const SET_LATEST_MESSAGE = "set_latest_message";
//单个会话, 只支持一个
export const SET_CONVERSATION = "set_conversation";
export function setConversations(conversations) {
return {
type:SET_CONVERSATIONS,
conversations:conversations
};
}
export function addConversation(conv) {
return {
type:ADD_CONVERSATION,
conversation:conv
};
}
export function updateConversation(conv, index) {
return {
type:UPDATE_CONVERSATION,
conversation:conv,
index:index
};
}
export function setUnread(cid, unread) {
return {
type:SET_UNREAD,
cid:cid,
unread:unread
};
}
export function setLatestMessage(message) {
return {
type:SET_LATEST_MESSAGE,
message:message
};
}
export function setConversation(conversation) {
return {
type:SET_CONVERSATION,
conversation:conversation
};
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/GoBelieveIO/im_rn.git
git@gitee.com:GoBelieveIO/im_rn.git
GoBelieveIO
im_rn
im_rn
master

搜索帮助