* Improve sidebar performance on first load * Initial work for switch channel * Revert android changes * Split Sidebar per Platform * Fix waitForHydration executing the callback more than once * Fix custom emoji not showing on Android * Finalize Channel Switch * Enable Android Ram Bundles * Select the right team for lastChannelForTeam * Channel loading post indicator * Fix main sidebar base intl provider * Update mm-redux * No need to request configAndLicense on launch * Load channel member roles * Rename closeChannelDrawer to closeMainSidebar * do not throw errors when console is called while running tests * constant for LOADING_POSTS_HEIGHT * Remove show more if a long post is edited and no longer long * Update mm-redux#batch-actions branch * Code review * Clear notifications if channel was switched * Import Platform Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com>
20 lines
591 B
JavaScript
20 lines
591 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import keyMirror from 'mattermost-redux/utils/key_mirror';
|
|
|
|
const NavigationTypes = keyMirror({
|
|
NAVIGATION_RESET: null,
|
|
NAVIGATION_CLOSE_MODAL: null,
|
|
NAVIGATION_NO_TEAMS: null,
|
|
RESTART_APP: null,
|
|
NAVIGATION_ERROR_TEAMS: null,
|
|
NAVIGATION_SHOW_OVERLAY: null,
|
|
CLOSE_MAIN_SIDEBAR: null,
|
|
MAIN_SIDEBAR_DID_CLOSE: null,
|
|
MAIN_SIDEBAR_DID_OPEN: null,
|
|
CLOSE_SETTINGS_SIDEBAR: null,
|
|
BLUR_POST_TEXTBOX: null,
|
|
});
|
|
|
|
export default NavigationTypes;
|