833edc9568
Signed-off-by: Ajay Bura <ajbura@gmail.com>
122 lines
2.5 KiB
JavaScript
122 lines
2.5 KiB
JavaScript
import appDispatcher from '../dispatcher';
|
|
import cons from '../state/cons';
|
|
|
|
export function selectTab(tabId) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.SELECT_TAB,
|
|
tabId,
|
|
});
|
|
}
|
|
|
|
export function selectSpace(roomId) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.SELECT_SPACE,
|
|
roomId,
|
|
});
|
|
}
|
|
|
|
export function selectRoom(roomId, eventId) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.SELECT_ROOM,
|
|
roomId,
|
|
eventId,
|
|
});
|
|
}
|
|
|
|
export function openSpaceSettings(spaceId, tabText) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_SPACE_SETTINGS,
|
|
spaceId,
|
|
tabText,
|
|
});
|
|
}
|
|
|
|
export function toggleRoomSettings(tabText) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.TOGGLE_ROOM_SETTINGS,
|
|
tabText,
|
|
});
|
|
}
|
|
|
|
export function openInviteList() {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_INVITE_LIST,
|
|
});
|
|
}
|
|
|
|
export function openPublicRooms(searchTerm) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_PUBLIC_ROOMS,
|
|
searchTerm,
|
|
});
|
|
}
|
|
|
|
export function openCreateRoom() {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_CREATE_ROOM,
|
|
});
|
|
}
|
|
|
|
export function openInviteUser(roomId, searchTerm) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_INVITE_USER,
|
|
roomId,
|
|
searchTerm,
|
|
});
|
|
}
|
|
|
|
export function openProfileViewer(userId, roomId) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_PROFILE_VIEWER,
|
|
userId,
|
|
roomId,
|
|
});
|
|
}
|
|
|
|
export function openSettings() {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_SETTINGS,
|
|
});
|
|
}
|
|
|
|
export function openEmojiBoard(cords, requestEmojiCallback) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_EMOJIBOARD,
|
|
cords,
|
|
requestEmojiCallback,
|
|
});
|
|
}
|
|
|
|
export function openReadReceipts(roomId, userIds) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_READRECEIPTS,
|
|
roomId,
|
|
userIds,
|
|
});
|
|
}
|
|
|
|
export function replyTo(userId, eventId, body) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.CLICK_REPLY_TO,
|
|
userId,
|
|
eventId,
|
|
body,
|
|
});
|
|
}
|
|
|
|
export function openSearch(term) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_SEARCH,
|
|
term,
|
|
});
|
|
}
|
|
|
|
export function openReusableContextMenu(placement, cords, render, afterClose) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_REUSABLE_CONTEXT_MENU,
|
|
placement,
|
|
cords,
|
|
render,
|
|
afterClose,
|
|
});
|
|
}
|