Added colored nicknames (optional)
This commit is contained in:
parent
8b392a9fa0
commit
80b43c4eab
|
@ -190,27 +190,27 @@ button {
|
||||||
}
|
}
|
||||||
#sidebar .chan:before,
|
#sidebar .chan:before,
|
||||||
#chat .title:before {
|
#chat .title:before {
|
||||||
font: 14px FontAwesome;
|
font: 14px FontAwesome;
|
||||||
float: left;
|
float: left;
|
||||||
margin-top: 3px;
|
margin-top: 3px;
|
||||||
margin-right: 12px;
|
margin-right: 12px;
|
||||||
width: 14px;
|
width: 14px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
#chat .title:before {
|
#chat .title:before {
|
||||||
margin-top: 17px;
|
margin-top: 17px;
|
||||||
}
|
}
|
||||||
#sidebar .chan.lobby:before,
|
#sidebar .chan.lobby:before,
|
||||||
#chat .lobby .title:before {
|
#chat .lobby .title:before {
|
||||||
content: "\f0a0";
|
content: "\f0a0";
|
||||||
}
|
}
|
||||||
#sidebar .chan.query:before,
|
#sidebar .chan.query:before,
|
||||||
#chat .query .title:before {
|
#chat .query .title:before {
|
||||||
content: "\f0e6";
|
content: "\f0e6";
|
||||||
}
|
}
|
||||||
#sidebar .chan.channel:before,
|
#sidebar .chan.channel:before,
|
||||||
#chat .channel .title:before {
|
#chat .channel .title:before {
|
||||||
content: "\f0f6";
|
content: "\f0f6";
|
||||||
}
|
}
|
||||||
#sidebar .chan:hover .badge {
|
#sidebar .chan:hover .badge {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
@ -518,8 +518,9 @@ button {
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
#chat .msg .type {
|
#chat .msg .type {
|
||||||
color: #ddd;
|
color: #ccc;
|
||||||
display: none;
|
display: none;
|
||||||
|
font-style: normal;
|
||||||
}
|
}
|
||||||
#chat .time,
|
#chat .time,
|
||||||
#chat .from,
|
#chat .from,
|
||||||
|
@ -542,11 +543,13 @@ button {
|
||||||
width: 134px;
|
width: 134px;
|
||||||
min-width: 134px;
|
min-width: 134px;
|
||||||
}
|
}
|
||||||
#chat a,
|
#chat a {
|
||||||
#chat .from button,
|
|
||||||
#chat .sidebar button {
|
|
||||||
color: #84ce88;
|
color: #84ce88;
|
||||||
}
|
}
|
||||||
|
#chat.no-colors .from button,
|
||||||
|
#chat.no-colors .sidebar button {
|
||||||
|
color: #84ce88 !important;
|
||||||
|
}
|
||||||
#chat .text {
|
#chat .text {
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
padding-right: 6px;
|
padding-right: 6px;
|
||||||
|
@ -592,7 +595,10 @@ button {
|
||||||
color: #f39c12;
|
color: #f39c12;
|
||||||
}
|
}
|
||||||
#chat .action .user:before {
|
#chat .action .user:before {
|
||||||
content: '* ';
|
content: "* ";
|
||||||
|
}
|
||||||
|
#chat .action .user:after {
|
||||||
|
content: "";
|
||||||
}
|
}
|
||||||
#chat .toggle-button {
|
#chat .toggle-button {
|
||||||
background: #f5f5f5;
|
background: #f5f5f5;
|
||||||
|
@ -673,6 +679,9 @@ button {
|
||||||
display: block;
|
display: block;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
}
|
}
|
||||||
|
#chat .names .inner {
|
||||||
|
width: 300px;
|
||||||
|
}
|
||||||
#sign-in label {
|
#sign-in label {
|
||||||
display: block;
|
display: block;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
|
@ -766,7 +775,6 @@ button {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0px;
|
right: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#form .inner {
|
#form .inner {
|
||||||
bottom: 7px;
|
bottom: 7px;
|
||||||
left: 7px;
|
left: 7px;
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
</footer>
|
</footer>
|
||||||
<div id="main">
|
<div id="main">
|
||||||
<div id="windows">
|
<div id="windows">
|
||||||
<div id="chat"></div>
|
<div id="chat" class="no-colors"></div>
|
||||||
<div id="sign-in" class="window">
|
<div id="sign-in" class="window">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<button class="lt"></button>
|
<button class="lt"></button>
|
||||||
|
@ -200,19 +200,28 @@
|
||||||
Show quits
|
Show quits
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-sm-12">
|
||||||
|
<h2>Visual Aids</h2>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm-12">
|
||||||
|
<label class="opt">
|
||||||
|
<input type="checkbox" name="colors">
|
||||||
|
Enable colored nicknames
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
<div class="col-sm-12">
|
<div class="col-sm-12">
|
||||||
<h2>Links and URLs</h2>
|
<h2>Links and URLs</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-6">
|
<div class="col-sm-6">
|
||||||
<label class="opt">
|
<label class="opt">
|
||||||
<input type="checkbox" name="thumbnails">
|
<input type="checkbox" name="thumbnails">
|
||||||
Show thumbnails
|
Auto-expand thumbnails
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-6">
|
<div class="col-sm-6">
|
||||||
<label class="opt">
|
<label class="opt">
|
||||||
<input type="checkbox" name="links">
|
<input type="checkbox" name="links">
|
||||||
Show link descriptions
|
Auto-expand links
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-12">
|
<div class="col-sm-12">
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,5 @@
|
||||||
|
Handlebars.registerHelper(
|
||||||
|
"stringcolor", function(str) {
|
||||||
|
return stringcolor(str);
|
||||||
|
}
|
||||||
|
);
|
|
@ -0,0 +1,87 @@
|
||||||
|
/*!
|
||||||
|
* stringcolor
|
||||||
|
* Generate a consistent color from any string.
|
||||||
|
*
|
||||||
|
* Source:
|
||||||
|
* https://github.com/erming/stringcolor
|
||||||
|
*
|
||||||
|
* Version 0.2.0
|
||||||
|
*/
|
||||||
|
(function($) {
|
||||||
|
/**
|
||||||
|
* Generate hex color code from a string.
|
||||||
|
*
|
||||||
|
* @param {String} string
|
||||||
|
*/
|
||||||
|
$.stringcolor = function(string) {
|
||||||
|
return "#" + stringcolor(string);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set one or more CSS properties for the set of matched elements.
|
||||||
|
*
|
||||||
|
* @param {String|Array} property
|
||||||
|
* @param {String} string
|
||||||
|
*/
|
||||||
|
$.fn.stringcolor = function(property, string) {
|
||||||
|
if (!property || !string) {
|
||||||
|
throw new Error("$(selector).string_to_color() takes 2 arguments");
|
||||||
|
}
|
||||||
|
return this.each(function() {
|
||||||
|
var props = [].concat(property);
|
||||||
|
var $this = $(this);
|
||||||
|
$.map(props, function(p) {
|
||||||
|
$this.css(p, $.stringcolor(string));
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
})(jQuery);
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* Name: string_to_color
|
||||||
|
* Author: Brandon Corbin [code@icorbin.com]
|
||||||
|
* Website: http://icorbin.com
|
||||||
|
*/
|
||||||
|
function string_to_color(str) {
|
||||||
|
// Generate a Hash for the String
|
||||||
|
var hash = function(word) {
|
||||||
|
var h = 0;
|
||||||
|
for (var i = 0; i < word.length; i++) {
|
||||||
|
h = word.charCodeAt(i) + ((h << 5) - h);
|
||||||
|
}
|
||||||
|
return h;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Change the darkness or lightness
|
||||||
|
var shade = function(color, prc) {
|
||||||
|
var num = parseInt(color, 16),
|
||||||
|
amt = Math.round(2.55 * prc),
|
||||||
|
R = (num >> 16) + amt,
|
||||||
|
G = (num >> 8 & 0x00FF) + amt,
|
||||||
|
B = (num & 0x0000FF) + amt;
|
||||||
|
return (0x1000000 + (R < 255 ? R < 1 ? 0 : R : 255) * 0x10000 +
|
||||||
|
(G < 255 ? G < 1 ? 0 : G : 255) * 0x100 +
|
||||||
|
(B < 255 ? B < 1 ? 0 : B : 255))
|
||||||
|
.toString(16)
|
||||||
|
.slice(1);
|
||||||
|
};
|
||||||
|
|
||||||
|
// Convert init to an RGBA
|
||||||
|
var int_to_rgba = function(i) {
|
||||||
|
var color = ((i >> 24) & 0xFF).toString(16) +
|
||||||
|
((i >> 16) & 0xFF).toString(16) +
|
||||||
|
((i >> 8) & 0xFF).toString(16) +
|
||||||
|
(i & 0xFF).toString(16);
|
||||||
|
return color;
|
||||||
|
};
|
||||||
|
|
||||||
|
return shade(
|
||||||
|
int_to_rgba(hash(str)),
|
||||||
|
-10
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
var cache = {};
|
||||||
|
function stringcolor(str) {
|
||||||
|
return cache[str] = cache[str] || string_to_color(str);
|
||||||
|
}
|
|
@ -303,6 +303,7 @@ $(function() {
|
||||||
var settings = $("#settings");
|
var settings = $("#settings");
|
||||||
var options = $.extend({
|
var options = $.extend({
|
||||||
badge: false,
|
badge: false,
|
||||||
|
colors: false,
|
||||||
join: true,
|
join: true,
|
||||||
links: true,
|
links: true,
|
||||||
mode: true,
|
mode: true,
|
||||||
|
@ -340,6 +341,9 @@ $(function() {
|
||||||
].indexOf(name) !== -1) {
|
].indexOf(name) !== -1) {
|
||||||
chat.toggleClass("hide-" + name, !self.prop("checked"));
|
chat.toggleClass("hide-" + name, !self.prop("checked"));
|
||||||
}
|
}
|
||||||
|
if (name == "colors") {
|
||||||
|
chat.toggleClass("no-colors", !self.prop("checked"));
|
||||||
|
}
|
||||||
}).find("input")
|
}).find("input")
|
||||||
.trigger("change");
|
.trigger("change");
|
||||||
|
|
||||||
|
@ -504,7 +508,7 @@ $(function() {
|
||||||
|
|
||||||
var whois = false;
|
var whois = false;
|
||||||
chat.on("click", ".user", function() {
|
chat.on("click", ".user", function() {
|
||||||
var user = $(this).html().trim().replace(/[+%@~]/, "");
|
var user = $(this).text().trim().replace(/[+%@~&]/, "");
|
||||||
if (user.indexOf("#") !== -1) {
|
if (user.indexOf("#") !== -1) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,8 +84,10 @@ templates['msg'] = template({"1":function(depth0,helpers,partials,data) {
|
||||||
},"2":function(depth0,helpers,partials,data) {
|
},"2":function(depth0,helpers,partials,data) {
|
||||||
return "self";
|
return "self";
|
||||||
},"4":function(depth0,helpers,partials,data) {
|
},"4":function(depth0,helpers,partials,data) {
|
||||||
var helper, functionType="function", helperMissing=helpers.helperMissing, escapeExpression=this.escapeExpression;
|
var helper, helperMissing=helpers.helperMissing, escapeExpression=this.escapeExpression, functionType="function";
|
||||||
return " <button class=\"user\">"
|
return " <button class=\"user\" style=\"color: #"
|
||||||
|
+ escapeExpression(((helpers.stringcolor || (depth0 && depth0.stringcolor) || helperMissing).call(depth0, (depth0 != null ? depth0.from : depth0), {"name":"stringcolor","hash":{},"data":data})))
|
||||||
|
+ "\">"
|
||||||
+ escapeExpression(((helper = (helper = helpers.from || (depth0 != null ? depth0.from : depth0)) != null ? helper : helperMissing),(typeof helper === functionType ? helper.call(depth0, {"name":"from","hash":{},"data":data}) : helper)))
|
+ escapeExpression(((helper = (helper = helpers.from || (depth0 != null ? depth0.from : depth0)) != null ? helper : helperMissing),(typeof helper === functionType ? helper.call(depth0, {"name":"from","hash":{},"data":data}) : helper)))
|
||||||
+ "</button>\n";
|
+ "</button>\n";
|
||||||
},"6":function(depth0,helpers,partials,data) {
|
},"6":function(depth0,helpers,partials,data) {
|
||||||
|
@ -162,8 +164,10 @@ templates['user'] = template({"1":function(depth0,helpers,partials,data) {
|
||||||
+ escapeExpression(((helpers.users || (depth0 && depth0.users) || helperMissing).call(depth0, ((stack1 = (depth0 != null ? depth0.users : depth0)) != null ? stack1.length : stack1), {"name":"users","hash":{},"data":data})))
|
+ escapeExpression(((helpers.users || (depth0 && depth0.users) || helperMissing).call(depth0, ((stack1 = (depth0 != null ? depth0.users : depth0)) != null ? stack1.length : stack1), {"name":"users","hash":{},"data":data})))
|
||||||
+ "\">\n</div>\n";
|
+ "\">\n</div>\n";
|
||||||
},"3":function(depth0,helpers,partials,data) {
|
},"3":function(depth0,helpers,partials,data) {
|
||||||
var helper, functionType="function", helperMissing=helpers.helperMissing, escapeExpression=this.escapeExpression;
|
var helper, helperMissing=helpers.helperMissing, escapeExpression=this.escapeExpression, functionType="function";
|
||||||
return " <button class=\"user\">"
|
return " <button class=\"user\" style=\"color: #"
|
||||||
|
+ escapeExpression(((helpers.stringcolor || (depth0 && depth0.stringcolor) || helperMissing).call(depth0, (depth0 != null ? depth0.name : depth0), {"name":"stringcolor","hash":{},"data":data})))
|
||||||
|
+ "\">"
|
||||||
+ escapeExpression(((helper = (helper = helpers.mode || (depth0 != null ? depth0.mode : depth0)) != null ? helper : helperMissing),(typeof helper === functionType ? helper.call(depth0, {"name":"mode","hash":{},"data":data}) : helper)))
|
+ escapeExpression(((helper = (helper = helpers.mode || (depth0 != null ? depth0.mode : depth0)) != null ? helper : helperMissing),(typeof helper === functionType ? helper.call(depth0, {"name":"mode","hash":{},"data":data}) : helper)))
|
||||||
+ escapeExpression(((helper = (helper = helpers.name || (depth0 != null ? depth0.name : depth0)) != null ? helper : helperMissing),(typeof helper === functionType ? helper.call(depth0, {"name":"name","hash":{},"data":data}) : helper)))
|
+ escapeExpression(((helper = (helper = helpers.name || (depth0 != null ? depth0.name : depth0)) != null ? helper : helperMissing),(typeof helper === functionType ? helper.call(depth0, {"name":"name","hash":{},"data":data}) : helper)))
|
||||||
+ "</button>\n";
|
+ "</button>\n";
|
||||||
|
@ -171,9 +175,9 @@ templates['user'] = template({"1":function(depth0,helpers,partials,data) {
|
||||||
var stack1, buffer = "";
|
var stack1, buffer = "";
|
||||||
stack1 = helpers['if'].call(depth0, ((stack1 = (depth0 != null ? depth0.users : depth0)) != null ? stack1.length : stack1), {"name":"if","hash":{},"fn":this.program(1, data),"inverse":this.noop,"data":data});
|
stack1 = helpers['if'].call(depth0, ((stack1 = (depth0 != null ? depth0.users : depth0)) != null ? stack1.length : stack1), {"name":"if","hash":{},"fn":this.program(1, data),"inverse":this.noop,"data":data});
|
||||||
if (stack1 != null) { buffer += stack1; }
|
if (stack1 != null) { buffer += stack1; }
|
||||||
buffer += "<div class=\"names\">\n";
|
buffer += "<div class=\"names\">\n <div class=\"inner\">\n";
|
||||||
stack1 = helpers.each.call(depth0, (depth0 != null ? depth0.users : depth0), {"name":"each","hash":{},"fn":this.program(3, data),"inverse":this.noop,"data":data});
|
stack1 = helpers.each.call(depth0, (depth0 != null ? depth0.users : depth0), {"name":"each","hash":{},"fn":this.program(3, data),"inverse":this.noop,"data":data});
|
||||||
if (stack1 != null) { buffer += stack1; }
|
if (stack1 != null) { buffer += stack1; }
|
||||||
return buffer + "</div>\n";
|
return buffer + " </div>\n</div>\n";
|
||||||
},"useData":true});
|
},"useData":true});
|
||||||
})();
|
})();
|
|
@ -5,7 +5,7 @@
|
||||||
</span>
|
</span>
|
||||||
<span class="from">
|
<span class="from">
|
||||||
{{#if from}}
|
{{#if from}}
|
||||||
<button class="user">{{from}}</button>
|
<button class="user" style="color: #{{stringcolor from}}">{{from}}</button>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</span>
|
</span>
|
||||||
<span class="text">
|
<span class="text">
|
||||||
|
|
|
@ -4,7 +4,9 @@
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<div class="names">
|
<div class="names">
|
||||||
{{#each users}}
|
<div class="inner">
|
||||||
<button class="user">{{mode}}{{name}}</button>
|
{{#each users}}
|
||||||
{{/each}}
|
<button class="user" style="color: #{{stringcolor name}}">{{mode}}{{name}}</button>
|
||||||
|
{{/each}}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue