cinny/src/client/action/navigation.js

85 lines
1.6 KiB
JavaScript
Raw Normal View History

2021-07-28 16:15:52 +03:00
import appDispatcher from '../dispatcher';
import cons from '../state/cons';
2021-08-30 06:01:13 +03:00
function changeTab(tabId) {
2021-07-28 16:15:52 +03:00
appDispatcher.dispatch({
type: cons.actions.navigation.CHANGE_TAB,
tabId,
});
}
function selectRoom(roomId) {
appDispatcher.dispatch({
type: cons.actions.navigation.SELECT_ROOM,
roomId,
});
}
function togglePeopleDrawer() {
appDispatcher.dispatch({
type: cons.actions.navigation.TOGGLE_PEOPLE_DRAWER,
});
}
function openInviteList() {
appDispatcher.dispatch({
type: cons.actions.navigation.OPEN_INVITE_LIST,
});
}
2021-08-31 16:13:31 +03:00
function openPublicRooms(searchTerm) {
2021-07-28 16:15:52 +03:00
appDispatcher.dispatch({
2021-08-31 16:13:31 +03:00
type: cons.actions.navigation.OPEN_PUBLIC_ROOMS,
searchTerm,
2021-07-28 16:15:52 +03:00
});
}
2021-08-31 16:13:31 +03:00
function openCreateRoom() {
2021-07-28 16:15:52 +03:00
appDispatcher.dispatch({
2021-08-31 16:13:31 +03:00
type: cons.actions.navigation.OPEN_CREATE_ROOM,
2021-07-28 16:15:52 +03:00
});
}
function openInviteUser(roomId, searchTerm) {
2021-07-28 16:15:52 +03:00
appDispatcher.dispatch({
type: cons.actions.navigation.OPEN_INVITE_USER,
roomId,
searchTerm,
2021-07-28 16:15:52 +03:00
});
}
function openSettings() {
appDispatcher.dispatch({
type: cons.actions.navigation.OPEN_SETTINGS,
});
}
2021-08-14 07:49:29 +03:00
function openEmojiBoard(cords, requestEmojiCallback) {
appDispatcher.dispatch({
type: cons.actions.navigation.OPEN_EMOJIBOARD,
cords,
requestEmojiCallback,
});
}
2021-08-16 15:07:29 +03:00
function openReadReceipts(roomId, eventId) {
appDispatcher.dispatch({
type: cons.actions.navigation.OPEN_READRECEIPTS,
roomId,
eventId,
});
}
2021-07-28 16:15:52 +03:00
export {
2021-08-30 06:01:13 +03:00
changeTab,
2021-07-28 16:15:52 +03:00
selectRoom,
togglePeopleDrawer,
openInviteList,
2021-08-31 16:13:31 +03:00
openPublicRooms,
openCreateRoom,
2021-07-28 16:15:52 +03:00
openInviteUser,
openSettings,
2021-08-14 07:49:29 +03:00
openEmojiBoard,
2021-08-16 15:07:29 +03:00
openReadReceipts,
2021-07-28 16:15:52 +03:00
};