2017-11-20 22:18:00 +00:00
|
|
|
import * as types from './actionsTypes';
|
|
|
|
|
|
|
|
|
|
|
|
export function removeUserTyping(username) {
|
|
|
|
return {
|
|
|
|
type: types.ROOM.REMOVE_USER_TYPING,
|
|
|
|
username
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-11-21 17:09:22 +00:00
|
|
|
export function someoneTyping(data) {
|
2017-11-20 22:18:00 +00:00
|
|
|
return {
|
2017-11-21 17:09:22 +00:00
|
|
|
type: types.ROOM.SOMEONE_TYPING,
|
2017-11-20 22:18:00 +00:00
|
|
|
...data
|
|
|
|
};
|
|
|
|
}
|
2017-11-21 16:55:32 +00:00
|
|
|
|
2017-11-20 22:18:00 +00:00
|
|
|
export function addUserTyping(username) {
|
|
|
|
return {
|
|
|
|
type: types.ROOM.ADD_USER_TYPING,
|
|
|
|
username
|
|
|
|
};
|
|
|
|
}
|
2017-11-21 16:55:32 +00:00
|
|
|
|
|
|
|
export function openRoom(room) {
|
|
|
|
return {
|
|
|
|
type: types.ROOM.OPEN,
|
|
|
|
room
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-11-21 17:09:22 +00:00
|
|
|
export function userTyping(status = true) {
|
2017-11-21 16:55:32 +00:00
|
|
|
return {
|
2017-11-21 17:09:22 +00:00
|
|
|
type: types.ROOM.USER_TYPING,
|
2017-11-21 16:55:32 +00:00
|
|
|
status
|
|
|
|
};
|
|
|
|
}
|