|
| 1 | +class Kandan.Plugins.Emoticons |
| 2 | + |
| 3 | + @options: |
| 4 | + regex: /\([a-zA-Z]+\)/g |
| 5 | + template: _.template ''' |
| 6 | + <img class="emoticon-embed" src="/assets/emoticons/<%= emoticon %>" height="30" width="30" /> |
| 7 | + ''' |
| 8 | + |
| 9 | + |
| 10 | + @emoticons: { |
| 11 | + "(alone)" : "alone.jpg", |
| 12 | + "(awwyea)" : "awwyea.jpg", |
| 13 | + "(badass)" : "badass.png", |
| 14 | + "(bitchplease)" : "bitchplease.jpg", |
| 15 | + "(cereal)" : "cereal.jpg", |
| 16 | + "(challenge)" : "challenge.jpg", |
| 17 | + "(fuckyeah)" : "fuckyeah.jpg", |
| 18 | + "(ilied)" : "ilied.jpg", |
| 19 | + "(megusta)" : "megusta.jpg", |
| 20 | + "(notbad)" : "notbad.jpg", |
| 21 | + "(okay)" : "okay.jpg", |
| 22 | + "(omgface)" : "omgface.jpg", |
| 23 | + "(pokerface)" : "pokerface.jpg", |
| 24 | + "(rageguy)" : "rageguy.jpg", |
| 25 | + "(seriously)" : "seriously.jpg", |
| 26 | + "(sweetjesus)" : "sweetjesus.jpg", |
| 27 | + "(truestory)" : "truestory.png", |
| 28 | + "(youdontsay)" : "youdontsay.png", |
| 29 | + "(yuno)" : "yuno.jpg" |
| 30 | + } |
| 31 | + |
| 32 | + @init: ()-> |
| 33 | + Kandan.Modifiers.register @options.regex, (message, state) => |
| 34 | + matches = message.content.match(@options.regex) |
| 35 | + for match in _.unique(matches) |
| 36 | + emoticon = @emoticons[match] |
| 37 | + needle = match.replace('(', '\\(').replace(')', '\\)') |
| 38 | + search = new RegExp(needle, 'g') |
| 39 | + console.log(search) |
| 40 | + replacement = @options.template({ emoticon: emoticon }) |
| 41 | + message.content = message.content.replace(search, replacement) if emoticon |
| 42 | + console.log(message.content) |
| 43 | + return Kandan.Helpers.Activities.buildFromBaseTemplate(message) |
| 44 | + |
| 45 | +# Kandan.Plugins.register "Kandan.Plugins.Emoticons" |
0 commit comments