forked from Ivasoft/mattermost-mobile
* Gallery screen (ground work) * Open the gallery from posts * Open the gallery from post draft * feedback review * Feedback review 2 * do not remove dm channel names and localization fix * update to the latest network-client * do not override file width, height and imageThumbail if received file does not have it set * bring back ScrollView wrapper for message component * Remove Text wrapper for markdown paragraph * Fix YouTube play icon placeholder * Make video file play button container round * Add gif image placeholder * Save images & videos to camera roll * Feedback review 3 * load video thumbnail when post is in viewport * simplify prefix
67 lines
1.8 KiB
TypeScript
67 lines
1.8 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const ABOUT = 'About';
|
|
export const ACCOUNT = 'Account';
|
|
export const EMOJI_PICKER = 'AddReaction';
|
|
export const APP_FORM = 'AppForm';
|
|
export const BOTTOM_SHEET = 'BottomSheet';
|
|
export const BROWSE_CHANNELS = 'BrowseChannels';
|
|
export const CHANNEL = 'Channel';
|
|
export const CHANNEL_ADD_PEOPLE = 'ChannelAddPeople';
|
|
export const CHANNEL_DETAILS = 'ChannelDetails';
|
|
export const CHANNEL_EDIT = 'ChannelEdit';
|
|
export const CUSTOM_STATUS_CLEAR_AFTER = 'CustomStatusClearAfter';
|
|
export const CUSTOM_STATUS = 'CustomStatus';
|
|
export const EDIT_PROFILE = 'EditProfile';
|
|
export const EDIT_SERVER = 'EditServer';
|
|
export const FORGOT_PASSWORD = 'ForgotPassword';
|
|
export const GALLERY = 'Gallery';
|
|
export const HOME = 'Home';
|
|
export const INTEGRATION_SELECTOR = 'IntegrationSelector';
|
|
export const IN_APP_NOTIFICATION = 'InAppNotification';
|
|
export const LOGIN = 'Login';
|
|
export const MENTIONS = 'Mentions';
|
|
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 const USER_PROFILE = 'UserProfile';
|
|
export const POST_OPTIONS = 'PostOptions';
|
|
|
|
export default {
|
|
ABOUT,
|
|
ACCOUNT,
|
|
EMOJI_PICKER,
|
|
APP_FORM,
|
|
BOTTOM_SHEET,
|
|
BROWSE_CHANNELS,
|
|
CHANNEL,
|
|
CHANNEL_ADD_PEOPLE,
|
|
CHANNEL_EDIT,
|
|
CHANNEL_DETAILS,
|
|
CUSTOM_STATUS_CLEAR_AFTER,
|
|
CUSTOM_STATUS,
|
|
EDIT_PROFILE,
|
|
EDIT_SERVER,
|
|
FORGOT_PASSWORD,
|
|
GALLERY,
|
|
HOME,
|
|
INTEGRATION_SELECTOR,
|
|
IN_APP_NOTIFICATION,
|
|
LOGIN,
|
|
MENTIONS,
|
|
MFA,
|
|
PERMALINK,
|
|
SEARCH,
|
|
SERVER,
|
|
SETTINGS_SIDEBAR,
|
|
SSO,
|
|
THREAD,
|
|
USER_PROFILE,
|
|
POST_OPTIONS,
|
|
};
|