* PLT-1626 Stopped breaking up hyphenated hashtags when highlighting search terms * Made hashtag search highlighting case independent * PLT-1424 Improved search highlighting when searching for CJK characters * PLT-1473 Added search term highlighting to single-line code blocks * PLT-1473 Added search term highlighting to code blocks that don't use syntax highlighting * PLT-1483 Added proper highlighting of at mentions * Fixing formatting
465 строки
16 KiB
JavaScript
465 строки
16 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import Autolinker from 'autolinker';
|
|
import {browserHistory} from 'react-router';
|
|
import Constants from './constants.jsx';
|
|
import * as Emoticons from './emoticons.jsx';
|
|
import * as Markdown from './markdown.jsx';
|
|
import PreferenceStore from 'stores/preference_store.jsx';
|
|
import UserStore from 'stores/user_store.jsx';
|
|
import twemoji from 'twemoji';
|
|
import * as Utils from './utils.jsx';
|
|
|
|
// pattern to detect the existance of a Chinese, Japanese, or Korean character in a string
|
|
// http://stackoverflow.com/questions/15033196/using-javascript-to-check-whether-a-string-contains-japanese-characters-includi
|
|
const cjkPattern = /[\u3000-\u303f\u3040-\u309f\u30a0-\u30ff\uff00-\uff9f\u4e00-\u9faf\u3400-\u4dbf]/;
|
|
|
|
// Performs formatting of user posts including highlighting mentions and search terms and converting urls, hashtags, and
|
|
// @mentions to links by taking a user's message and returning a string of formatted html. Also takes a number of options
|
|
// as part of the second parameter:
|
|
// - searchTerm - If specified, this word is highlighted in the resulting html. Defaults to nothing.
|
|
// - mentionHighlight - Specifies whether or not to highlight mentions of the current user. Defaults to true.
|
|
// - singleline - Specifies whether or not to remove newlines. Defaults to false.
|
|
// - emoticons - Enables emoticon parsing. Defaults to true.
|
|
// - markdown - Enables markdown parsing. Defaults to true.
|
|
export function formatText(text, options = {}) {
|
|
let output = text;
|
|
|
|
// would probably make more sense if it was on the calling components, but this option is intended primarily for debugging
|
|
if (PreferenceStore.get(Constants.Preferences.CATEGORY_ADVANCED_SETTINGS, 'formatting', 'true') === 'false') {
|
|
return output;
|
|
}
|
|
|
|
if (!('markdown' in options) || options.markdown) {
|
|
// the markdown renderer will call doFormatText as necessary
|
|
output = Markdown.format(output, options);
|
|
} else {
|
|
output = sanitizeHtml(output);
|
|
output = doFormatText(output, options);
|
|
}
|
|
|
|
// replace newlines with spaces if necessary
|
|
if (options.singleline) {
|
|
output = replaceNewlines(output);
|
|
}
|
|
|
|
output = insertLongLinkWbr(output);
|
|
|
|
return output;
|
|
}
|
|
|
|
// Performs most of the actual formatting work for formatText. Not intended to be called normally.
|
|
export function doFormatText(text, options) {
|
|
let output = text;
|
|
|
|
const tokens = new Map();
|
|
|
|
// replace important words and phrases with tokens
|
|
output = autolinkAtMentions(output, tokens);
|
|
output = autolinkEmails(output, tokens);
|
|
output = autolinkHashtags(output, tokens);
|
|
|
|
if (!('emoticons' in options) || options.emoticon) {
|
|
output = Emoticons.handleEmoticons(output, tokens);
|
|
}
|
|
|
|
if (options.searchTerm) {
|
|
output = highlightSearchTerms(output, tokens, options.searchTerm);
|
|
}
|
|
|
|
if (!('mentionHighlight' in options) || options.mentionHighlight) {
|
|
output = highlightCurrentMentions(output, tokens);
|
|
}
|
|
|
|
if (!('emoticons' in options) || options.emoticon) {
|
|
output = twemoji.parse(output, {
|
|
className: 'emoticon',
|
|
base: '',
|
|
folder: Constants.EMOJI_PATH,
|
|
callback: (icon, twemojiOptions) => {
|
|
if (!Emoticons.getEmoticonsByCodePoint().has(icon)) {
|
|
// just leave the unicode characters and hope the browser can handle it
|
|
return null;
|
|
}
|
|
|
|
return ''.concat(twemojiOptions.base, twemojiOptions.size, '/', icon, twemojiOptions.ext);
|
|
}
|
|
});
|
|
}
|
|
|
|
//replace all "/" to "/<wbr />"
|
|
output = output.replace(/\//g, '/<wbr />');
|
|
|
|
// reinsert tokens with formatted versions of the important words and phrases
|
|
output = replaceTokens(output, tokens);
|
|
|
|
return output;
|
|
}
|
|
|
|
export function sanitizeHtml(text) {
|
|
let output = text;
|
|
|
|
// normal string.replace only does a single occurrance so use a regex instead
|
|
output = output.replace(/&/g, '&');
|
|
output = output.replace(/</g, '<');
|
|
output = output.replace(/>/g, '>');
|
|
output = output.replace(/'/g, ''');
|
|
output = output.replace(/"/g, '"');
|
|
|
|
return output;
|
|
}
|
|
|
|
// Convert emails into tokens
|
|
function autolinkEmails(text, tokens) {
|
|
function replaceEmailWithToken(autolinker, match) {
|
|
const linkText = match.getMatchedText();
|
|
let url = linkText;
|
|
|
|
if (match.getType() === 'email') {
|
|
url = `mailto:${url}`;
|
|
}
|
|
|
|
const index = tokens.size;
|
|
const alias = `MM_EMAIL${index}`;
|
|
|
|
tokens.set(alias, {
|
|
value: `<a class="theme" href="${url}">${linkText}</a>`,
|
|
originalText: linkText
|
|
});
|
|
|
|
return alias;
|
|
}
|
|
|
|
// we can't just use a static autolinker because we need to set replaceFn
|
|
const autolinker = new Autolinker({
|
|
urls: false,
|
|
email: true,
|
|
phone: false,
|
|
twitter: false,
|
|
hashtag: false,
|
|
replaceFn: replaceEmailWithToken
|
|
});
|
|
|
|
return autolinker.link(text);
|
|
}
|
|
|
|
function autolinkAtMentions(text, tokens) {
|
|
// Return true if provided character is punctuation
|
|
function isPunctuation(character) {
|
|
const re = /[\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&()*+,\-.\/:;<=>?@\[\]^_`{|}~]/g;
|
|
return re.test(character);
|
|
}
|
|
|
|
// Test if provided text needs to be highlighted, special mention or current user
|
|
function mentionExists(u) {
|
|
return (Constants.SPECIAL_MENTIONS.indexOf(u) !== -1 || UserStore.getProfileByUsername(u));
|
|
}
|
|
|
|
function addToken(username, mention) {
|
|
const index = tokens.size;
|
|
const alias = `MM_ATMENTION${index}`;
|
|
|
|
tokens.set(alias, {
|
|
value: `<a class='mention-link' href='#' data-mention='${username}'>${mention}</a>`,
|
|
originalText: mention
|
|
});
|
|
return alias;
|
|
}
|
|
|
|
function replaceAtMentionWithToken(fullMatch, mention, username) {
|
|
let usernameLower = username.toLowerCase();
|
|
|
|
if (mentionExists(usernameLower)) {
|
|
// Exact match
|
|
const alias = addToken(usernameLower, mention, '');
|
|
return alias;
|
|
}
|
|
|
|
// Not an exact match, attempt to truncate any punctuation to see if we can find a user
|
|
const originalUsername = usernameLower;
|
|
|
|
for (let c = usernameLower.length; c > 0; c--) {
|
|
if (isPunctuation(usernameLower[c - 1])) {
|
|
usernameLower = usernameLower.substring(0, c - 1);
|
|
|
|
if (mentionExists(usernameLower)) {
|
|
const suffix = originalUsername.substr(c - 1);
|
|
const alias = addToken(usernameLower, '@' + usernameLower);
|
|
return alias + suffix;
|
|
}
|
|
} else {
|
|
// If the last character is not punctuation, no point in going any further
|
|
break;
|
|
}
|
|
}
|
|
|
|
return fullMatch;
|
|
}
|
|
|
|
let output = text;
|
|
output = output.replace(/(@([a-z0-9.\-_]*))/gi, replaceAtMentionWithToken);
|
|
|
|
return output;
|
|
}
|
|
|
|
function escapeRegex(text) {
|
|
return text.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
|
|
}
|
|
|
|
function highlightCurrentMentions(text, tokens) {
|
|
let output = text;
|
|
|
|
const mentionKeys = UserStore.getCurrentMentionKeys();
|
|
|
|
// look for any existing tokens which are self mentions and should be highlighted
|
|
var newTokens = new Map();
|
|
for (const [alias, token] of tokens) {
|
|
if (mentionKeys.indexOf(token.originalText) !== -1) {
|
|
const index = tokens.size + newTokens.size;
|
|
const newAlias = `MM_SELFMENTION${index}`;
|
|
|
|
newTokens.set(newAlias, {
|
|
value: `<span class='mention--highlight'>${alias}</span>`,
|
|
originalText: token.originalText
|
|
});
|
|
output = output.replace(alias, newAlias);
|
|
}
|
|
}
|
|
|
|
// the new tokens are stashed in a separate map since we can't add objects to a map during iteration
|
|
for (const newToken of newTokens) {
|
|
tokens.set(newToken[0], newToken[1]);
|
|
}
|
|
|
|
// look for self mentions in the text
|
|
function replaceCurrentMentionWithToken(fullMatch, prefix, mention) {
|
|
const index = tokens.size;
|
|
const alias = `MM_SELFMENTION${index}`;
|
|
|
|
tokens.set(alias, {
|
|
value: `<span class='mention--highlight'>${mention}</span>`,
|
|
originalText: mention
|
|
});
|
|
|
|
return prefix + alias;
|
|
}
|
|
|
|
for (const mention of UserStore.getCurrentMentionKeys()) {
|
|
if (!mention) {
|
|
continue;
|
|
}
|
|
|
|
output = output.replace(new RegExp(`(^|\\W)(${escapeRegex(mention)})\\b`, 'gi'), replaceCurrentMentionWithToken);
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
function autolinkHashtags(text, tokens) {
|
|
let output = text;
|
|
|
|
var newTokens = new Map();
|
|
for (const [alias, token] of tokens) {
|
|
if (token.originalText.lastIndexOf('#', 0) === 0) {
|
|
const index = tokens.size + newTokens.size;
|
|
const newAlias = `MM_HASHTAG${index}`;
|
|
|
|
newTokens.set(newAlias, {
|
|
value: `<a class='mention-link' href='#' data-hashtag='${token.originalText}'>${token.originalText}</a>`,
|
|
originalText: token.originalText
|
|
});
|
|
|
|
output = output.replace(alias, newAlias);
|
|
}
|
|
}
|
|
|
|
// the new tokens are stashed in a separate map since we can't add objects to a map during iteration
|
|
for (const newToken of newTokens) {
|
|
tokens.set(newToken[0], newToken[1]);
|
|
}
|
|
|
|
// look for hashtags in the text
|
|
function replaceHashtagWithToken(fullMatch, prefix, hashtag) {
|
|
const index = tokens.size;
|
|
const alias = `MM_HASHTAG${index}`;
|
|
|
|
let value = hashtag;
|
|
|
|
if (hashtag.length > Constants.MIN_HASHTAG_LINK_LENGTH) {
|
|
value = `<a class='mention-link' href='#' data-hashtag='${hashtag}'>${hashtag}</a>`;
|
|
}
|
|
|
|
tokens.set(alias, {
|
|
value,
|
|
originalText: hashtag
|
|
});
|
|
|
|
return prefix + alias;
|
|
}
|
|
|
|
return output.replace(/(^|\W)(#[a-zA-ZäöüÄÖÜß][a-zA-Z0-9äöüÄÖÜß.\-_]*)\b/g, replaceHashtagWithToken);
|
|
}
|
|
|
|
const puncStart = /^[.,()&$!\[\]{}':;\\]+/;
|
|
const puncEnd = /[.,()&$#!\[\]{}':;\\]+$/;
|
|
|
|
function parseSearchTerms(searchTerm) {
|
|
let terms = [];
|
|
|
|
let termString = searchTerm;
|
|
|
|
while (termString) {
|
|
let captured;
|
|
|
|
// check for a quoted string
|
|
captured = (/^"(.*?)"/).exec(termString);
|
|
if (captured) {
|
|
termString = termString.substring(captured[0].length);
|
|
terms.push(captured[1]);
|
|
continue;
|
|
}
|
|
|
|
// check for a search flag (and don't add it to terms)
|
|
captured = (/^(?:in|from|channel): ?\S+/).exec(termString);
|
|
if (captured) {
|
|
termString = termString.substring(captured[0].length);
|
|
continue;
|
|
}
|
|
|
|
// capture at mentions differently from the server so we can highlight them with the preceeding at sign
|
|
captured = (/^@\w+\b/).exec(termString);
|
|
if (captured) {
|
|
termString = termString.substring(captured[0].length);
|
|
|
|
terms.push(captured[0]);
|
|
continue;
|
|
}
|
|
|
|
// capture any plain text up until the next quote or search flag
|
|
captured = (/^.+?(?=\bin|\bfrom|\bchannel|"|$)/).exec(termString);
|
|
if (captured) {
|
|
termString = termString.substring(captured[0].length);
|
|
|
|
// break the text up into words based on how the server splits them in SqlPostStore.SearchPosts and then discard empty terms
|
|
terms.push(...captured[0].split(/[ <>+\(\)~@]/).filter((term) => !!term));
|
|
continue;
|
|
}
|
|
|
|
// we should never reach this point since at least one of the regexes should match something in the remaining text
|
|
throw new Error('Infinite loop in search term parsing: "' + termString + '"');
|
|
}
|
|
|
|
// remove punctuation from each term
|
|
terms = terms.map((term) => term.replace(puncStart, '').replace(puncEnd, ''));
|
|
|
|
return terms;
|
|
}
|
|
|
|
function convertSearchTermToRegex(term) {
|
|
let pattern;
|
|
|
|
if (cjkPattern.test(term)) {
|
|
// term contains Chinese, Japanese, or Korean characters so don't mark word boundaries
|
|
pattern = '()(' + escapeRegex(term.replace(/\*/g, '')) + ')';
|
|
} else if (term.endsWith('*')) {
|
|
pattern = '\\b()(' + escapeRegex(term.substring(0, term.length - 1)) + ')';
|
|
} else if (term.startsWith('@')) {
|
|
// needs special handling of the first boundary because a word boundary doesn't work before an @ sign
|
|
pattern = '(\\W|^)(' + escapeRegex(term) + ')\\b';
|
|
} else {
|
|
pattern = '\\b()(' + escapeRegex(term) + ')\\b';
|
|
}
|
|
|
|
return new RegExp(pattern, 'gi');
|
|
}
|
|
|
|
export function highlightSearchTerms(text, tokens, searchTerm) {
|
|
const terms = parseSearchTerms(searchTerm);
|
|
|
|
if (terms.length === 0) {
|
|
return text;
|
|
}
|
|
|
|
let output = text;
|
|
|
|
function replaceSearchTermWithToken(match, prefix, word) {
|
|
const index = tokens.size;
|
|
const alias = `MM_SEARCHTERM${index}`;
|
|
|
|
tokens.set(alias, {
|
|
value: `<span class='search-highlight'>${word}</span>`,
|
|
originalText: word
|
|
});
|
|
|
|
return prefix + alias;
|
|
}
|
|
|
|
for (const term of terms) {
|
|
// highlight existing tokens matching search terms
|
|
var newTokens = new Map();
|
|
for (const [alias, token] of tokens) {
|
|
if (token.originalText.toLowerCase() === term.replace(/\*$/, '').toLowerCase()) {
|
|
const index = tokens.size + newTokens.size;
|
|
const newAlias = `MM_SEARCHTERM${index}`;
|
|
|
|
newTokens.set(newAlias, {
|
|
value: `<span class='search-highlight'>${alias}</span>`,
|
|
originalText: token.originalText
|
|
});
|
|
|
|
output = output.replace(alias, newAlias);
|
|
}
|
|
}
|
|
|
|
// the new tokens are stashed in a separate map since we can't add objects to a map during iteration
|
|
for (const newToken of newTokens) {
|
|
tokens.set(newToken[0], newToken[1]);
|
|
}
|
|
|
|
output = output.replace(convertSearchTermToRegex(term), replaceSearchTermWithToken);
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
export function replaceTokens(text, tokens) {
|
|
let output = text;
|
|
|
|
// iterate backwards through the map so that we do replacement in the opposite order that we added tokens
|
|
const aliases = [...tokens.keys()];
|
|
for (let i = aliases.length - 1; i >= 0; i--) {
|
|
const alias = aliases[i];
|
|
const token = tokens.get(alias);
|
|
output = output.replace(alias, token.value);
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
function replaceNewlines(text) {
|
|
return text.replace(/\n/g, ' ');
|
|
}
|
|
|
|
// A click handler that can be used with the results of TextFormatting.formatText to add default functionality
|
|
// to clicked hashtags and @mentions.
|
|
export function handleClick(e) {
|
|
const mentionAttribute = e.target.getAttributeNode('data-mention');
|
|
const hashtagAttribute = e.target.getAttributeNode('data-hashtag');
|
|
const linkAttribute = e.target.getAttributeNode('data-link');
|
|
|
|
if (mentionAttribute) {
|
|
Utils.searchForTerm(mentionAttribute.value);
|
|
} else if (hashtagAttribute) {
|
|
Utils.searchForTerm(hashtagAttribute.value);
|
|
} else if (linkAttribute) {
|
|
browserHistory.push(linkAttribute.value);
|
|
}
|
|
}
|
|
|
|
//replace all "/" inside <a> tags to "/<wbr />"
|
|
function insertLongLinkWbr(test) {
|
|
return test.replace(/\//g, (match, position, string) => {
|
|
return match + ((/a[^>]*>[^<]*$/).test(string.substr(0, position)) ? '<wbr />' : '');
|
|
});
|
|
} |