(function() { var emoji = <%= Dir.glob(File.expand_path("../../../public/images/*.png", __FILE__)).map{|f| File.basename(f).split(".")[0]}.inspect %>; function imageFor(code) { if (emoji.indexOf(code) !== -1) { var url = Discourse.getURL('/plugins/emoji/images/' + code + '.png'); return ['img', {href: url, title: ':' + code + ':', 'class': 'emoji', alt: code}]; } } // Also support default emotions var translations = { ':)' : 'smile', ':-)' : 'smile', ':(' : 'frowning', ':-(' : 'frowning', ';)' : 'wink', ';-)' : 'wink', ':\'(' : 'cry', ':\'-(' : 'cry', ':-\'(' : 'cry', ':p' : 'stuck_out_tongue', ':P' : 'stuck_out_tongue', ':-P' : 'stuck_out_tongue', ':O' : 'open_mouth', ':-O' : 'open_mouth', ':D' : 'smiley', ':-D' : 'smiley', ':|' : 'expressionless', ':-|' : 'expressionless', ";P" : 'stuck_out_tongue_winking_eye', ";-P" : 'stuck_out_tongue_winking_eye', ';)' : 'wink', ';-)' : 'wink', ":$" : 'blush', ":-$" : 'blush' }; function checkPrev(prev) { if (prev && prev.length) { var lastToken = prev[prev.length-1]; if (lastToken && lastToken.charAt) { var lastChar = lastToken.charAt(lastToken.length-1); if (lastChar !== ' ') return false; } } return true; } var translationsWithColon = {}; Object.keys(translations).forEach(function (t) { if (t[0] === ':') { translationsWithColon[t] = translations[t]; } else { var replacement = translations[t]; Discourse.Dialect.inlineReplace(t, function (token, match, prev) { return checkPrev(prev) ? imageFor(replacement) : token; }); } }); function escapeRegExp(s) { return s.replace(/[-/\\^$*+?.()|[\]{}]/g, '\\$&') } var translationColonRegexp = new RegExp(Object.keys(translationsWithColon).map(function (t) { return "(" + escapeRegExp(t) + ")"; }).join("|")); Discourse.Dialect.registerInline(':', function(text, match, prev) { var endPos = text.indexOf(':', 1), firstSpace = text.search(/\s/), contents; if (!checkPrev(prev)) { return; } // If there is no trailing colon, check our translations that begin with colons if (endPos === -1 || (firstSpace !== -1 && endPos > firstSpace)) { translationColonRegexp.lastIndex = 0; var m = translationColonRegexp.exec(text); if (m && m[0] && text.indexOf(m[0]) === 0) { contents = imageFor(translationsWithColon[m[0]]); if (contents) { return [m[0].length, contents]; } } return; } // Simple find and replace from our array var between = text.slice(1, endPos); contents = imageFor(between); if (contents) { return [endPos+1, contents]; } }); if (Discourse && Discourse.ComposerView) { Discourse.ComposerView.on("initWmdEditor", function(event){ var baseUrl = Discourse.getURL("/"); template = Handlebars.compile("