mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-03-13 06:30:01 +01:00
* Redesign app settings Signed-off-by: Ajay Bura <ajbura@gmail.com> * Redesign user profile in settings Signed-off-by: Ajay Bura <ajbura@gmail.com> * Update string Signed-off-by: Ajay Bura <ajbura@gmail.com> * Fix bug Signed-off-by: Ajay Bura <ajbura@gmail.com>
152 lines
3.1 KiB
JavaScript
152 lines
3.1 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(roomId, tabText) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_SPACE_SETTINGS,
|
|
roomId,
|
|
tabText,
|
|
});
|
|
}
|
|
|
|
export function openSpaceManage(roomId) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_SPACE_MANAGE,
|
|
roomId,
|
|
});
|
|
}
|
|
|
|
export function openSpaceAddExisting(roomId) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_SPACE_ADDEXISTING,
|
|
roomId,
|
|
});
|
|
}
|
|
|
|
export function toggleRoomSettings(tabText) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.TOGGLE_ROOM_SETTINGS,
|
|
tabText,
|
|
});
|
|
}
|
|
|
|
export function openShortcutSpaces() {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_SHORTCUT_SPACES,
|
|
});
|
|
}
|
|
|
|
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(isSpace = false, parentId = null) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_CREATE_ROOM,
|
|
isSpace,
|
|
parentId,
|
|
});
|
|
}
|
|
|
|
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(tabText) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_SETTINGS,
|
|
tabText,
|
|
});
|
|
}
|
|
|
|
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 openViewSource(event) {
|
|
appDispatcher.dispatch({
|
|
type: cons.actions.navigation.OPEN_VIEWSOURCE,
|
|
event,
|
|
});
|
|
}
|
|
|
|
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,
|
|
});
|
|
}
|