* Permalink initial commit * Fixes: 10 items per page * MM-40203: permalink modal viewer for mentions Is triggered by pressing on an item in mentions, and shows posts around that item, including the item in a modal. * Adds previously deleted file * address feedback * Move showPermalink as a remote action * address more feedback * fetchPostsAround to only return PostModel * Attempt to autoscroll to highlighted item * Permalink to not highlight saved and pinned posts * Add bottom margin using insets to permalink screen * Use lottie loading indicator * Switch to channel * Missing translation string Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export default {
|
|
PAGE_SIZE_DEFAULT: 60,
|
|
POST_CHUNK_SIZE: 60,
|
|
POST_AROUND_CHUNK_SIZE: 10,
|
|
CHANNELS_CHUNK_SIZE: 50,
|
|
STATUS_INTERVAL: 60000,
|
|
AUTOCOMPLETE_LIMIT_DEFAULT: 25,
|
|
MENTION: 'mention',
|
|
OUT_OF_OFFICE: 'ooo',
|
|
OFFLINE: 'offline',
|
|
AWAY: 'away',
|
|
ONLINE: 'online',
|
|
DND: 'dnd',
|
|
STATUS_COMMANDS: ['offline', 'away', 'online', 'dnd'],
|
|
DEFAULT_CHANNEL: 'town-square',
|
|
DM_CHANNEL: 'D',
|
|
OPEN_CHANNEL: 'O',
|
|
PRIVATE_CHANNEL: 'P',
|
|
GM_CHANNEL: 'G',
|
|
TEAMMATE_NAME_DISPLAY: {
|
|
SHOW_USERNAME: 'username',
|
|
SHOW_NICKNAME_FULLNAME: 'nickname_full_name',
|
|
SHOW_FULLNAME: 'full_name',
|
|
},
|
|
SPECIAL_MENTIONS: ['all', 'channel', 'here'],
|
|
MAX_USERS_IN_GM: 8,
|
|
MIN_USERS_IN_GM: 3,
|
|
MAX_GROUP_CHANNELS_FOR_PROFILES: 50,
|
|
DEFAULT_AUTOLINKED_URL_SCHEMES: ['http', 'https', 'ftp', 'mailto', 'tel', 'mattermost'],
|
|
DISABLED: 'disabled',
|
|
DEFAULT_ON: 'default_on',
|
|
DEFAULT_OFF: 'default_off',
|
|
PROFILE_CHUNK_SIZE: 100,
|
|
SEARCH_TIMEOUT_MILLISECONDS: 100,
|
|
AUTOCOMPLETE_SPLIT_CHARACTERS: ['.', '-', '_'],
|
|
CHANNEL_USER_ROLE: 'channel_user',
|
|
RESTRICT_DIRECT_MESSAGE_ANY: 'any',
|
|
};
|