Skip to content

Commit 017af93

Browse files
committedApr 12, 2012
Merge pull request #4 from Bushido/emoticons
Emoticons
2 parents 13520aa + 5e2369d commit 017af93

21 files changed

+46
-0
lines changed
 

‎app/assets/images/emoticons/alone.jpg

3.28 KB
Loading
4.09 KB
Loading
29 KB
Loading
2.64 KB
Loading
3.03 KB
Loading
1.68 KB
Loading
2.87 KB
Loading

‎app/assets/images/emoticons/ilied.jpg

3.19 KB
Loading
7.2 KB
Loading
3.28 KB
Loading

‎app/assets/images/emoticons/okay.jpg

3.05 KB
Loading
4.22 KB
Loading
2.69 KB
Loading
4.52 KB
Loading
3.15 KB
Loading
3.8 KB
Loading
22.7 KB
Loading
21.8 KB
Loading

‎app/assets/images/emoticons/yuno.jpg

13.3 KB
Loading

‎app/assets/javascripts/backbone/kandan.js.coffee.erb

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ window.Kandan =
3434
,"Pastie"
3535
,"Attachments"
3636
,"MeAnnounce"
37+
,"Emoticons"
3738
]
3839

3940
for plugin in plugins
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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

Comments
 (0)
Please sign in to comment.