* RN-382 Refactor at_mention & channel_mention autocomplete * Feedback review * If the term changes always trigger a request
10 lines
366 B
JavaScript
10 lines
366 B
JavaScript
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
export const AT_MENTION_REGEX = /\B(@([^@\r\n\s]*))$/i;
|
|
|
|
export const AT_MENTION_SEARCH_REGEX = /\bfrom:\s*(\S*)$/i;
|
|
|
|
export const CHANNEL_MENTION_REGEX = /\B(~([^~\r\n]*))$/i;
|
|
|
|
export const CHANNEL_MENTION_SEARCH_REGEX = /\b(?:in|channel):\s*(\S*)$/i;
|