* Add react-navigator dependency * Add react-native-navigation dependency * react-native-navigation, ios and android config * update react-native-navigation * New navigation and code cleanup * Set ScreenBackgroundColor * Fix channel drawer event issue * Applied RNPN non-working popInitial notification * Android navbar and back button * packages and notices * MM-redux update * Fix draft on team switch * Remove custom NavBar
40 lines
886 B
JavaScript
40 lines
886 B
JavaScript
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import keyMirror from 'mattermost-redux/utils/key_mirror';
|
|
|
|
const ViewTypes = keyMirror({
|
|
APPLICATION_INITIALIZED: null,
|
|
|
|
SERVER_URL_CHANGED: null,
|
|
|
|
LOGIN_ID_CHANGED: null,
|
|
PASSWORD_CHANGED: null,
|
|
|
|
POST_DRAFT_CHANGED: null,
|
|
COMMENT_DRAFT_CHANGED: null,
|
|
|
|
NOTIFICATION_CHANGED: null,
|
|
NOTIFICATION_IN_APP: null,
|
|
|
|
CONNECTION_CHANGED: null,
|
|
|
|
SET_POST_DRAFT: null,
|
|
SET_COMMENT_DRAFT: null,
|
|
|
|
SET_TEMP_UPLOAD_FILES_FOR_POST_DRAFT: null,
|
|
RETRY_UPLOAD_FILE_FOR_POST: null,
|
|
|
|
CLEAR_FILES_FOR_POST_DRAFT: null,
|
|
|
|
REMOVE_FILE_FROM_POST_DRAFT: null,
|
|
REMOVE_LAST_FILE_FROM_POST_DRAFT: null,
|
|
|
|
ADD_FILE_TO_FETCH_CACHE: null,
|
|
|
|
SET_CHANNEL_LOADER: null,
|
|
|
|
SET_LAST_CHANNEL_FOR_TEAM: null
|
|
});
|
|
|
|
export default ViewTypes;
|