61 lines
795 B
JavaScript
61 lines
795 B
JavaScript
import * as types from './actionsTypes';
|
|
|
|
export function subscribeRoom(rid) {
|
|
return {
|
|
type: types.ROOM.SUBSCRIBE,
|
|
rid
|
|
};
|
|
}
|
|
|
|
export function unsubscribeRoom(rid) {
|
|
return {
|
|
type: types.ROOM.UNSUBSCRIBE,
|
|
rid
|
|
};
|
|
}
|
|
|
|
export function leaveRoom(rid, t) {
|
|
return {
|
|
type: types.ROOM.LEAVE,
|
|
rid,
|
|
t
|
|
};
|
|
}
|
|
|
|
export function deleteRoom(rid, t) {
|
|
return {
|
|
type: types.ROOM.DELETE,
|
|
rid,
|
|
t
|
|
};
|
|
}
|
|
|
|
export function closeRoom(rid) {
|
|
return {
|
|
type: types.ROOM.CLOSE,
|
|
rid
|
|
};
|
|
}
|
|
|
|
export function forwardRoom(rid, transferData) {
|
|
return {
|
|
type: types.ROOM.FORWARD,
|
|
transferData,
|
|
rid
|
|
};
|
|
}
|
|
|
|
export function removedRoom() {
|
|
return {
|
|
type: types.ROOM.REMOVED
|
|
};
|
|
}
|
|
|
|
export function userTyping(rid, status = true) {
|
|
return {
|
|
type: types.ROOM.USER_TYPING,
|
|
rid,
|
|
status
|
|
};
|
|
}
|