Emoticons now supported for single-user chat.
This commit is contained in:
parent
546204bed6
commit
a5daeb017e
@ -6,7 +6,7 @@ Changelog
|
|||||||
|
|
||||||
* Add a toolbar for single user chat [jcbrand]
|
* Add a toolbar for single user chat [jcbrand]
|
||||||
* Add support for OTR (off-the-record) encryption [jcbrand]
|
* Add support for OTR (off-the-record) encryption [jcbrand]
|
||||||
* Add smileys [jcbrand]
|
* Add support for smileys [jcbrand]
|
||||||
* Simplified initial boilerplate markup [jcbrand]
|
* Simplified initial boilerplate markup [jcbrand]
|
||||||
|
|
||||||
0.6.6 (2013-10-16)
|
0.6.6 (2013-10-16)
|
||||||
|
@ -21,6 +21,11 @@
|
|||||||
color: rgb(79, 79, 79);
|
color: rgb(79, 79, 79);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#chatpanel .emoticon {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
.hidden {
|
.hidden {
|
||||||
display: none
|
display: none
|
||||||
}
|
}
|
||||||
|
36
converse.js
36
converse.js
@ -70,6 +70,7 @@
|
|||||||
this.prebind = false;
|
this.prebind = false;
|
||||||
this.show_controlbox_by_default = false;
|
this.show_controlbox_by_default = false;
|
||||||
this.show_only_online_users = false;
|
this.show_only_online_users = false;
|
||||||
|
this.show_emoticons = true;
|
||||||
this.show_toolbar = true;
|
this.show_toolbar = true;
|
||||||
this.testing = false; // Exposes sensitive data for testing. Never set to true in production systems!
|
this.testing = false; // Exposes sensitive data for testing. Never set to true in production systems!
|
||||||
this.xhr_custom_status = false;
|
this.xhr_custom_status = false;
|
||||||
@ -93,6 +94,7 @@
|
|||||||
'prebind',
|
'prebind',
|
||||||
'rid',
|
'rid',
|
||||||
'show_controlbox_by_default',
|
'show_controlbox_by_default',
|
||||||
|
'show_emoticons',
|
||||||
'show_only_online_users',
|
'show_only_online_users',
|
||||||
'show_toolbar',
|
'show_toolbar',
|
||||||
'sid',
|
'sid',
|
||||||
@ -679,6 +681,7 @@
|
|||||||
),
|
),
|
||||||
|
|
||||||
toolbar_template: _.template(
|
toolbar_template: _.template(
|
||||||
|
'{[ if (show_emoticons) { ]}' +
|
||||||
'<li class="toggle-smiley icon-happy" title="Insert a smilery">' +
|
'<li class="toggle-smiley icon-happy" title="Insert a smilery">' +
|
||||||
'<ul>' +
|
'<ul>' +
|
||||||
'<li><a class="icon-smiley" href="#" data-emoticon=":)"></a></li>'+
|
'<li><a class="icon-smiley" href="#" data-emoticon=":)"></a></li>'+
|
||||||
@ -696,7 +699,7 @@
|
|||||||
'<li><a class="icon-heart" href="#" data-emoticon="<3"></a></li>'+
|
'<li><a class="icon-heart" href="#" data-emoticon="<3"></a></li>'+
|
||||||
'</ul>' +
|
'</ul>' +
|
||||||
'</li>' +
|
'</li>' +
|
||||||
|
'{[ } ]}' +
|
||||||
'{[ if (allow_otr) { ]}' +
|
'{[ if (allow_otr) { ]}' +
|
||||||
'<li class="toggle-otr {{otr_status_class}}" title="{{otr_tooltip}}">'+
|
'<li class="toggle-otr {{otr_status_class}}" title="{{otr_tooltip}}">'+
|
||||||
'<span class="chat-toolbar-text">{{otr_translated_status}}</span>'+
|
'<span class="chat-toolbar-text">{{otr_translated_status}}</span>'+
|
||||||
@ -783,6 +786,34 @@
|
|||||||
this.scrollDown();
|
this.scrollDown();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
insertEmoticons: function (text) {
|
||||||
|
if (converse.show_emoticons) {
|
||||||
|
text = text.replace(/:\)/g, '<span class="emoticon icon-smiley"></span>');
|
||||||
|
text = text.replace(/:\-\)/g, '<span class="emoticon icon-smiley"></span>');
|
||||||
|
text = text.replace(/;\)/g, '<span class="emoticon icon-wink"></span>');
|
||||||
|
text = text.replace(/;\-\)/g, '<span class="emoticon icon-wink"></span>');
|
||||||
|
text = text.replace(/:D/g, '<span class="emoticon icon-grin"></span>');
|
||||||
|
text = text.replace(/:\-D/g, '<span class="emoticon icon-grin"></span>');
|
||||||
|
text = text.replace(/:P/g, '<span class="emoticon icon-tongue"></span>');
|
||||||
|
text = text.replace(/:\-P/g, '<span class="emoticon icon-tongue"></span>');
|
||||||
|
text = text.replace(/:p/g, '<span class="emoticon icon-tongue"></span>');
|
||||||
|
text = text.replace(/:\-p/g, '<span class="emoticon icon-tongue"></span>');
|
||||||
|
text = text.replace(/8\)/g, '<span class="emoticon icon-cool"></span>');
|
||||||
|
text = text.replace(/>:\)/g, '<span class="emoticon icon-evil"></span>');
|
||||||
|
text = text.replace(/:S/g, '<span class="emoticon icon-confused"></span>');
|
||||||
|
text = text.replace(/:\\/g, '<span class="emoticon icon-wondering"></span>');
|
||||||
|
text = text.replace(/>:\(/g, '<span class="emoticon icon-angry"></span>');
|
||||||
|
text = text.replace(/:\(/g, '<span class="emoticon icon-sad"></span>');
|
||||||
|
text = text.replace(/:\-\(/g, '<span class="emoticon icon-sad"></span>');
|
||||||
|
text = text.replace(/:O/g, '<span class="emoticon icon-shocked"></span>');
|
||||||
|
text = text.replace(/:\-O/g, '<span class="emoticon icon-shocked"></span>');
|
||||||
|
text = text.replace(/\=\-O/g, '<span class="emoticon icon-shocked"></span>');
|
||||||
|
text = text.replace(/\(\^.\^\)b/g, '<span class="emoticon icon-thumbs-up"></span>');
|
||||||
|
text = text.replace(/<3/g, '<span class="emoticon icon-heart"></span>');
|
||||||
|
}
|
||||||
|
return text;
|
||||||
|
},
|
||||||
|
|
||||||
showMessage: function ($el, msg_dict) {
|
showMessage: function ($el, msg_dict) {
|
||||||
var this_date = converse.parseISO8601(msg_dict.time),
|
var this_date = converse.parseISO8601(msg_dict.time),
|
||||||
text = msg_dict.message,
|
text = msg_dict.message,
|
||||||
@ -803,7 +834,7 @@
|
|||||||
template({
|
template({
|
||||||
'sender': sender,
|
'sender': sender,
|
||||||
'time': this_date.toTimeString().substring(0,5),
|
'time': this_date.toTimeString().substring(0,5),
|
||||||
'message': text,
|
'message': this.insertEmoticons(text),
|
||||||
'username': username,
|
'username': username,
|
||||||
'extra_classes': msg_dict.delayed && 'delayed' || ''
|
'extra_classes': msg_dict.delayed && 'delayed' || ''
|
||||||
}));
|
}));
|
||||||
@ -1143,6 +1174,7 @@
|
|||||||
data.otr_tooltip = __('Your buddy has closed their end of the private session, you should do the same');
|
data.otr_tooltip = __('Your buddy has closed their end of the private session, you should do the same');
|
||||||
}
|
}
|
||||||
data.allow_otr = converse.allow_otr;
|
data.allow_otr = converse.allow_otr;
|
||||||
|
data.show_emoticons = converse.show_emoticons;
|
||||||
data.otr_translated_status = OTR_TRANSLATED_MAPPING[data.otr_status];
|
data.otr_translated_status = OTR_TRANSLATED_MAPPING[data.otr_status];
|
||||||
data.otr_status_class = OTR_CLASS_MAPPING[data.otr_status];
|
data.otr_status_class = OTR_CLASS_MAPPING[data.otr_status];
|
||||||
this.$el.find('.chat-toolbar').html(this.toolbar_template(data));
|
this.$el.find('.chat-toolbar').html(this.toolbar_template(data));
|
||||||
|
@ -208,7 +208,10 @@
|
|||||||
<div class="chat-error">This is an error message</div>
|
<div class="chat-error">This is an error message</div>
|
||||||
<div class="chat-message">
|
<div class="chat-message">
|
||||||
<span class="chat-message-me">09:35 me: </span>
|
<span class="chat-message-me">09:35 me: </span>
|
||||||
<span class="chat-message-content">Hello world</span>
|
<span class="chat-message-content">
|
||||||
|
Hello world
|
||||||
|
<span class="icon-smiley"></span>
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="chat-message ">
|
<div class="chat-message ">
|
||||||
<span class="chat-message-them">19:25 Benedict-John: </span>
|
<span class="chat-message-them">19:25 Benedict-John: </span>
|
||||||
|
Loading…
Reference in New Issue
Block a user