2021-07-28 15:15:52 +02:00
|
|
|
import appDispatcher from '../dispatcher';
|
|
|
|
import cons from '../state/cons';
|
|
|
|
|
2021-09-05 15:26:34 +02:00
|
|
|
function selectTab(tabId) {
|
2021-07-28 15:15:52 +02:00
|
|
|
appDispatcher.dispatch({
|
2021-09-05 15:26:34 +02:00
|
|
|
type: cons.actions.navigation.SELECT_TAB,
|
2021-07-28 15:15:52 +02:00
|
|
|
tabId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-09-03 14:28:01 +02:00
|
|
|
function selectSpace(roomId) {
|
|
|
|
appDispatcher.dispatch({
|
|
|
|
type: cons.actions.navigation.SELECT_SPACE,
|
|
|
|
roomId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-12-03 14:02:10 +01:00
|
|
|
function selectRoom(roomId, eventId) {
|
2021-07-28 15:15:52 +02:00
|
|
|
appDispatcher.dispatch({
|
|
|
|
type: cons.actions.navigation.SELECT_ROOM,
|
|
|
|
roomId,
|
2021-12-03 14:02:10 +01:00
|
|
|
eventId,
|
2021-07-28 15:15:52 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function openInviteList() {
|
|
|
|
appDispatcher.dispatch({
|
|
|
|
type: cons.actions.navigation.OPEN_INVITE_LIST,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-08-31 15:13:31 +02:00
|
|
|
function openPublicRooms(searchTerm) {
|
2021-07-28 15:15:52 +02:00
|
|
|
appDispatcher.dispatch({
|
2021-08-31 15:13:31 +02:00
|
|
|
type: cons.actions.navigation.OPEN_PUBLIC_ROOMS,
|
2021-08-08 11:15:21 +02:00
|
|
|
searchTerm,
|
2021-07-28 15:15:52 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-08-31 15:13:31 +02:00
|
|
|
function openCreateRoom() {
|
2021-07-28 15:15:52 +02:00
|
|
|
appDispatcher.dispatch({
|
2021-08-31 15:13:31 +02:00
|
|
|
type: cons.actions.navigation.OPEN_CREATE_ROOM,
|
2021-07-28 15:15:52 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-08-08 06:53:26 +02:00
|
|
|
function openInviteUser(roomId, searchTerm) {
|
2021-07-28 15:15:52 +02:00
|
|
|
appDispatcher.dispatch({
|
|
|
|
type: cons.actions.navigation.OPEN_INVITE_USER,
|
|
|
|
roomId,
|
2021-08-08 06:53:26 +02:00
|
|
|
searchTerm,
|
2021-07-28 15:15:52 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-10-18 17:25:52 +02:00
|
|
|
function openProfileViewer(userId, roomId) {
|
|
|
|
appDispatcher.dispatch({
|
|
|
|
type: cons.actions.navigation.OPEN_PROFILE_VIEWER,
|
|
|
|
userId,
|
|
|
|
roomId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-07-28 15:15:52 +02:00
|
|
|
function openSettings() {
|
|
|
|
appDispatcher.dispatch({
|
|
|
|
type: cons.actions.navigation.OPEN_SETTINGS,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-08-14 06:49:29 +02:00
|
|
|
function openEmojiBoard(cords, requestEmojiCallback) {
|
|
|
|
appDispatcher.dispatch({
|
|
|
|
type: cons.actions.navigation.OPEN_EMOJIBOARD,
|
|
|
|
cords,
|
|
|
|
requestEmojiCallback,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-12-03 14:02:10 +01:00
|
|
|
function openReadReceipts(roomId, userIds) {
|
2021-08-16 14:07:29 +02:00
|
|
|
appDispatcher.dispatch({
|
|
|
|
type: cons.actions.navigation.OPEN_READRECEIPTS,
|
|
|
|
roomId,
|
2021-12-03 14:02:10 +01:00
|
|
|
userIds,
|
2021-08-16 14:07:29 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-09-09 14:19:57 +02:00
|
|
|
function openRoomOptions(cords, roomId) {
|
|
|
|
appDispatcher.dispatch({
|
|
|
|
type: cons.actions.navigation.OPEN_ROOMOPTIONS,
|
|
|
|
cords,
|
|
|
|
roomId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-11-20 08:59:32 +01:00
|
|
|
function replyTo(userId, eventId, body) {
|
|
|
|
appDispatcher.dispatch({
|
|
|
|
type: cons.actions.navigation.CLICK_REPLY_TO,
|
|
|
|
userId,
|
|
|
|
eventId,
|
|
|
|
body,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-12-10 12:52:53 +01:00
|
|
|
function openSearch(term) {
|
|
|
|
appDispatcher.dispatch({
|
|
|
|
type: cons.actions.navigation.OPEN_SEARCH,
|
|
|
|
term,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-07-28 15:15:52 +02:00
|
|
|
export {
|
2021-09-05 15:26:34 +02:00
|
|
|
selectTab,
|
2021-09-03 14:28:01 +02:00
|
|
|
selectSpace,
|
2021-07-28 15:15:52 +02:00
|
|
|
selectRoom,
|
|
|
|
openInviteList,
|
2021-08-31 15:13:31 +02:00
|
|
|
openPublicRooms,
|
|
|
|
openCreateRoom,
|
2021-07-28 15:15:52 +02:00
|
|
|
openInviteUser,
|
2021-10-18 17:25:52 +02:00
|
|
|
openProfileViewer,
|
2021-07-28 15:15:52 +02:00
|
|
|
openSettings,
|
2021-08-14 06:49:29 +02:00
|
|
|
openEmojiBoard,
|
2021-08-16 14:07:29 +02:00
|
|
|
openReadReceipts,
|
2021-09-09 14:19:57 +02:00
|
|
|
openRoomOptions,
|
2021-11-20 08:59:32 +01:00
|
|
|
replyTo,
|
2021-12-10 12:52:53 +01:00
|
|
|
openSearch,
|
2021-07-28 15:15:52 +02:00
|
|
|
};
|