From 23a331f933af834ed1a26806f087e61ca6ddd93a Mon Sep 17 00:00:00 2001 From: Reed Garmsen Date: Mon, 10 Aug 2015 16:44:54 -0700 Subject: Cosmetic refactoring of textToJsx function --- web/react/utils/utils.jsx | 213 ++++++++++++++++++++++++++++------------------ 1 file changed, 131 insertions(+), 82 deletions(-) diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx index d4654d7d5..bbe5003bc 100644 --- a/web/react/utils/utils.jsx +++ b/web/react/utils/utils.jsx @@ -403,49 +403,49 @@ module.exports.customMarkedRenderer = function(options) { customTextRenderer.codespan = function(code) { return code; }; - customTextRenderer.link = function(href, title, text) { + customTextRenderer.link = function(href) { return href; }; - customTextRenderer.image = function(href, title, text) { + customTextRenderer.image = function(href) { return href; }; } else { - customTextRenderer.link = function(href, title, text) { + customTextRenderer.link = function(href) { return href; }; - customTextRenderer.image = function(href, title, text) { + customTextRenderer.image = function(href) { return href; }; } return customTextRenderer; }; -var oldExplicitMentionRegex = /(?:)([\s\S]*?)(?:<\/mention>)/g; var puncStartRegex = /^((?![@#])[^A-Za-z0-9_<>])+/g; var puncEndRegex = /([^A-Za-z0-9_<>])+$/g; var startTagRegex = /(<\s*\w.*?>)+/g; var endTagRegex = /(<\s*\/\s*\w\s*.*?>|<\s*br\s*>)+/g; -module.exports.textToJsx = function(text, options) { +module.exports.textToJsx = function(textToChange, options) { var useTextFormatting = config.AllowTextFormatting && (!options || !options.noTextFormatting); + var text = textToChange; if (useTextFormatting) { text = formatText(text, {sanitize: true, mangle: false, gfm: true, breaks: true, tables: false, smartypants: true, renderer: module.exports.customMarkedRenderer()}); } - if (options && options['singleline']) { - var repRegex = new RegExp("\n", "g"); - text = text.replace(repRegex, " "); + if (options && options.singleline) { + var repRegex = new RegExp('\n', 'g'); + text = text.replace(repRegex, ' '); } - var searchTerm = "" - if (options && options['searchTerm']) { - searchTerm = options['searchTerm'].toLowerCase(); + var searchTerm = ''; + if (options && options.searchTerm) { + searchTerm = options.searchTerm.toLowerCase(); } - var mentionClass = "mention-highlight"; - if (options && options['noMentionHighlight']) { - mentionClass = ""; + var mentionClass = 'mention-highlight'; + if (options && options.noMentionHighlight) { + mentionClass = ''; } var inner = []; @@ -457,11 +457,11 @@ module.exports.textToJsx = function(text, options) { var implicitKeywords = UserStore.getCurrentMentionKeys(); - var lines = text.split("\n"); + var lines = text.split('\n'); for (var i = 0; i < lines.length; i++) { var line = lines[i]; - var words = line.split(" "); - var highlightSearchClass = ""; + var words = line.split(' '); + var highlightSearchClass = ''; for (var z = 0; z < words.length; z++) { var word = words[z]; var trimWord; @@ -472,25 +472,46 @@ module.exports.textToJsx = function(text, options) { } var mentionRegex = /^(?:@)([a-z0-9_]+)$/gi; // looks loop invariant but a weird JS bug needs it to be redefined here var explicitMention = mentionRegex.exec(trimWord); + var mClass; - var prefix; - var suffix; - var prefixSpan; - var suffixSpan; + var prefix = ''; + var suffix = ''; + var prefixSpan = null; + var suffixSpan = ; if (useTextFormatting) { - prefix = (word.match(startTagRegex) ? word.match(startTagRegex) : "") + (word.replace(startTagRegex, '').match(puncStartRegex) ? word.replace(startTagRegex, '').match(puncStartRegex) : ""); - suffix = (word.match(endTagRegex) ? word.match(endTagRegex) : "") + (word.replace(endTagRegex, '').match(puncEndRegex) ? word.replace(endTagRegex, '').match(puncEndRegex) : ""); - prefixSpan = prefix ? () : null; - suffixSpan = suffix ? ( ) : ( ); + if (word.match(startTagRegex)) { + prefix += word.match(startTagRegex); + } + if (word.replace(startTagRegex, '').match(puncStartRegex)) { + prefix += word.replace(startTagRegex, '').match(puncStartRegex); + } + + if (word.match(endTagRegex)) { + suffix += word.match(endTagRegex); + } + if (word.replace(endTagRegex, '').match(puncEndRegex)) { + suffix += word.replace(endTagRegex, '').match(puncEndRegex); + } + + if (prefix) { + prefixSpan = ; + } + if (suffix) { + suffixSpan = ; + } } else { prefix = word.match(puncStartRegex); suffix = word.match(puncEndRegex); - prefixSpan = prefix ? ({prefix}) : null; - suffixSpan = suffix ? ({suffix} ) : ( ); + if (prefix) { + prefixSpan = {prefix}; + } + if (suffix) { + suffixSpan = {suffix} ; + } } - if ((trimWord.toLowerCase().indexOf(searchTerm) > -1 || word.toLowerCase().indexOf(searchTerm) > -1) && searchTerm != "") { - highlightSearchClass = " search-highlight"; + if ((trimWord.toLowerCase().indexOf(searchTerm) > -1 || word.toLowerCase().indexOf(searchTerm) > -1) && searchTerm !== '') { + highlightSearchClass = ' search-highlight'; } if (useTextFormatting && (codeFlag || word.indexOf('') !== -1)) { @@ -498,94 +519,122 @@ module.exports.textToJsx = function(text, options) { codeFlag = true; if (word.indexOf('') !== -1) { - inner.push(); + inner.push(); codeString = ''; codeFlag = false; } } else if (explicitMention && - (UserStore.getProfileByUsername(explicitMention[1]) || - Constants.SPECIAL_MENTIONS.indexOf(explicitMention[1]) !== -1)) - { + (UserStore.getProfileByUsername(explicitMention[1]) || + Constants.SPECIAL_MENTIONS.indexOf(explicitMention[1]) !== -1)) { var name = explicitMention[1]; + // do both a non-case sensitive and case senstive check - var mClass = implicitKeywords.indexOf('@'+name.toLowerCase()) !== -1 || implicitKeywords.indexOf('@'+name) !== -1 ? mentionClass : ""; + mClass = ''; + if (implicitKeywords.indexOf('@' + name.toLowerCase()) !== -1 || implicitKeywords.indexOf('@' + name) !== -1) { + mClass = mentionClass; + } if (searchTerm === name) { - highlightSearchClass = " search-highlight"; + highlightSearchClass = ' search-highlight'; } if (useTextFormatting) { - prefixSpan ? inner.push(prefixSpan) : null; - inner.push({"@" + name}); - suffixSpan ? inner.push(suffixSpan) : null; + if (prefixSpan) { + inner.push(prefixSpan); + } + inner.push({'@' + name}); + if (suffixSpan) { + inner.push(suffixSpan); + } + } else { + inner.push({prefix}@{name}{suffix} ); } - else - inner.push({prefix}@{name}{suffix} ); } else if (testUrlMatch(word).length) { var match = testUrlMatch(word)[0]; var link = match.link; - prefix = word.substring(0,word.indexOf(match.text)); - suffix = word.substring(word.indexOf(match.text)+match.text.length); - prefixSpan = prefix ? () : null; - suffixSpan = suffix ? ( ) : ; + prefix = word.substring(0, word.indexOf(match.text)); + suffix = word.substring(word.indexOf(match.text) + match.text.length); + if (prefix) { + prefixSpan = ; + } + if (suffix) { + suffixSpan = ; + } else { + suffixSpan = ; + } if (useTextFormatting) { - prefixSpan ? inner.push(prefixSpan) : null; - inner.push({match.text}); - suffixSpan ? inner.push(suffixSpan) : null; + if (prefixSpan) { + inner.push(prefixSpan); + } + inner.push({match.text}); + if (suffixSpan) { + inner.push(suffixSpan); + } + } else { + inner.push({prefix}{match.text}{suffix} ); } - else - inner.push({prefix}{match.text}{suffix} ); } else if (trimWord.match(hashRegex)) { - var mClass = implicitKeywords.indexOf(trimWord) !== -1 || implicitKeywords.indexOf(trimWord.toLowerCase()) !== -1 ? mentionClass : ""; + mClass = ''; + if (implicitKeywords.indexOf(trimWord) !== -1 || implicitKeywords.indexOf(trimWord.toLowerCase()) !== -1) { + mClass = mentionClass; + } if (searchTerm === trimWord.substring(1).toLowerCase() || searchTerm === trimWord.toLowerCase()) { - highlightSearchClass = " search-highlight"; + highlightSearchClass = ' search-highlight'; } if (useTextFormatting) { - prefixSpan ? inner.push(prefixSpan) : null; - inner.push({trimWord}); - suffixSpan ? inner.push(suffixSpan) : null; + if (prefixSpan) { + inner.push(prefixSpan); + } + inner.push({trimWord}); + if (suffixSpan) { + inner.push(suffixSpan); + } + } else { + inner.push({prefix}{trimWord}{suffix} ); } - else - inner.push({prefix}{trimWord}{suffix} ); - } else if (implicitKeywords.indexOf(trimWord) !== -1 || implicitKeywords.indexOf(trimWord.toLowerCase()) !== -1) { if (trimWord.charAt(0) === '@') { if (searchTerm === trimWord.substring(1).toLowerCase()) { - highlightSearchClass = " search-highlight"; + highlightSearchClass = ' search-highlight'; } if (useTextFormatting) { - prefixSpan ? inner.push(prefixSpan) : null; - inner.push({trimWord}); - suffixSpan ? inner.push(suffixSpan) : null; + if (prefixSpan) { + inner.push(prefixSpan); + } + inner.push({trimWord}); + if (suffixSpan) { + inner.push(suffixSpan); + } + } else { + inner.push({prefix}{trimWord}{suffix} ); } - else - inner.push({prefix}{trimWord}{suffix} ); - } else { - if (useTextFormatting) { - prefixSpan ? inner.push(prefixSpan) : null; - inner.push({trimWord}); - suffixSpan ? inner.push(suffixSpan) : null; + } else if (useTextFormatting) { + if (prefixSpan) { + inner.push(prefixSpan); + } + inner.push({trimWord}); + if (suffixSpan) { + inner.push(suffixSpan); } - else - inner.push({prefix}{module.exports.replaceHtmlEntities(trimWord)}{suffix} ); + } else { + inner.push({prefix}{module.exports.replaceHtmlEntities(trimWord)}{suffix} ); + } + } else if (word !== '') { + if (useTextFormatting) { + inner.push(); + } else { + inner.push({module.exports.replaceHtmlEntities(word)} ); } - - } else if (word === "") { - // if word is empty dont include a span - } else { - if (useTextFormatting) - inner.push(); - else - inner.push({module.exports.replaceHtmlEntities(word)} ); } - highlightSearchClass = ""; + highlightSearchClass = ''; + } + if (!useTextFormatting && i !== lines.length - 1) { + inner.push(
); } - if (!useTextFormatting && i != lines.length-1) - inner.push(
); } return inner; -- cgit v1.2.3-1-g7c22