From e1797c7d55d8bbb23e315d14377640a1b1673802 Mon Sep 17 00:00:00 2001 From: hmhealey Date: Thu, 10 Sep 2015 18:18:23 -0400 Subject: Added autolinking of hashtags to the new text formatting --- web/react/utils/text_formatting.jsx | 54 ++++++++++++++++++++++++++++++++----- 1 file changed, 48 insertions(+), 6 deletions(-) (limited to 'web/react/utils/text_formatting.jsx') diff --git a/web/react/utils/text_formatting.jsx b/web/react/utils/text_formatting.jsx index db1568bab..930a6bbfb 100644 --- a/web/react/utils/text_formatting.jsx +++ b/web/react/utils/text_formatting.jsx @@ -12,6 +12,7 @@ export function formatText(text, options = {}) { output = stripLinks(output, tokens); output = stripAtMentions(output, tokens); output = stripSelfMentions(output, tokens); + output = stripHashtags(output, tokens); output = replaceTokens(output, tokens); @@ -20,7 +21,6 @@ export function formatText(text, options = {}) { return output; // TODO highlight search terms - // TODO autolink hashtags // TODO leave space for markdown } @@ -58,7 +58,7 @@ function stripLinks(text, tokens) { // we can't just use a static autolinker because we need to set replaceFn const autolinker = new Autolinker({ urls: true, - email: false, + email: true, phone: false, twitter: false, hashtag: false, @@ -72,13 +72,14 @@ function stripAtMentions(text, tokens) { let output = text; function stripAtMention(fullMatch, prefix, mention, username) { - if (Constants.SPECIAL_MENTIONS.indexOf(username) !== -1 || UserStore.getProfileByUsername(username)) { + const usernameLower = username.toLowerCase(); + if (Constants.SPECIAL_MENTIONS.indexOf(usernameLower) !== -1 || UserStore.getProfileByUsername(usernameLower)) { const index = tokens.size; const alias = `ATMENTION${index}`; tokens.set(alias, { - value: `${mention}`, - oreplaceLinkriginalText: mention + value: `${mention}`, + originalText: mention }); return prefix + alias; @@ -87,7 +88,7 @@ function stripAtMentions(text, tokens) { } } - output = output.replace(/(^|\s)(@([a-z0-9.\-_]+))/gi, stripAtMention); + output = output.replace(/(^|\s)(@([a-z0-9.\-_]*[a-z0-9]))/gi, stripAtMention); return output; } @@ -139,6 +140,47 @@ function stripSelfMentions(text, tokens) { return output; } +function stripHashtags(text, tokens) { + let output = text; + + var newTokens = new Map(); + for (let [alias, token] of tokens) { + if (token.originalText.startsWith('#')) { + const index = newTokens.size; + const newAlias = `HASHTAG${index}`; + + newTokens.set(newAlias, { + value: `${token.originalText}`, + 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 (let newToken of newTokens) { + tokens.set(newToken[0], newToken[1]); + } + + // look for hashtags in the text + function stripHashtag(fullMatch, prefix, hashtag) { + const index = tokens.size; + const alias = `HASHTAG${index}`; + + tokens.set(alias, { + value: `${hashtag}`, + originalText: hashtag + }); + + return prefix + alias; + } + + output = output.replace(/(^|\W)(#[a-zA-Z0-9.\-_]+)\b/g, stripHashtag); + + return output; +} + function replaceTokens(text, tokens) { let output = text; -- cgit v1.2.3-1-g7c22