* Push notifications entry point * Process android notification natively only if RN is not initialized * Database changes to store local channel viewed_at * EphemeralStore wait until screen removed * Move schedule session notification to utility * Fix channel remote & local actions + added actions for markChannelAsViewed & fetchMyChannel * Add fetchMyTeam remote action * Add dismissAllModalsAndPopToScreen to navigation * Improve post list component & add app state to re-trigger queries * Improve WS implementation * Handle push notification events * Fix postsInChannel since handler * Handle in-app notifications * Post list to listen to column changes * Track selected bottom tab in ephemeral store * add useIsTablet hook * in-app notifications on tablets
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const ABOUT = 'About';
|
|
export const EMOJI_PICKER = 'AddReaction';
|
|
export const APP_FORM = 'AppForm';
|
|
export const BOTTOM_SHEET = 'BottomSheet';
|
|
export const CHANNEL = 'Channel';
|
|
export const CUSTOM_STATUS_CLEAR_AFTER = 'CustomStatusClearAfter';
|
|
export const CUSTOM_STATUS = 'CustomStatus';
|
|
export const FORGOT_PASSWORD = 'ForgotPassword';
|
|
export const HOME = 'Home';
|
|
export const INTEGRATION_SELECTOR = 'IntegrationSelector';
|
|
export const IN_APP_NOTIFICATION = 'InAppNotification';
|
|
export const LOGIN = 'Login';
|
|
export const LOGIN_OPTIONS = 'LoginOptions';
|
|
export const MAIN_SIDEBAR = 'MainSidebar';
|
|
export const MFA = 'MFA';
|
|
export const PERMALINK = 'Permalink';
|
|
export const SEARCH = 'Search';
|
|
export const SERVER = 'Server';
|
|
export const SETTINGS_SIDEBAR = 'SettingsSidebar';
|
|
export const SSO = 'SSO';
|
|
export const THREAD = 'Thread';
|
|
|
|
export default {
|
|
ABOUT,
|
|
EMOJI_PICKER,
|
|
APP_FORM,
|
|
BOTTOM_SHEET,
|
|
CHANNEL,
|
|
CUSTOM_STATUS_CLEAR_AFTER,
|
|
CUSTOM_STATUS,
|
|
FORGOT_PASSWORD,
|
|
HOME,
|
|
INTEGRATION_SELECTOR,
|
|
IN_APP_NOTIFICATION,
|
|
LOGIN,
|
|
LOGIN_OPTIONS,
|
|
MAIN_SIDEBAR,
|
|
MFA,
|
|
PERMALINK,
|
|
SEARCH,
|
|
SERVER,
|
|
SETTINGS_SIDEBAR,
|
|
SSO,
|
|
THREAD,
|
|
};
|