discourse/vendor/assets/javascripts/favcount.js

99 lines
2.5 KiB
JavaScript
Raw Normal View History

/*
2013-08-19 11:55:38 -04:00
* favcount.js v1.1.0
* http://chrishunt.co/favcount
* Dynamically updates the favicon with a number.
*
* Copyright 2013, Chris Hunt
* Released under the MIT license
*/
(function(){
function Favcount(icon) {
this.icon = icon;
this.canvas = document.createElement('canvas');
}
Favcount.prototype.set = function(count) {
var self = this,
img = document.createElement('img');
if (self.canvas.getContext) {
img.onload = function() {
drawCanvas(self.canvas, img, normalize(count));
};
img.src = this.icon;
}
}
function normalize(count) {
count = Math.round(count);
if (isNaN(count) || count < 1) {
return '';
} else if (count < 10) {
return ' ' + count;
} else if (count > 99) {
return '99';
} else {
return count;
}
}
function drawCanvas(canvas, img, count) {
var head = document.getElementsByTagName('head')[0],
favicon = document.createElement('link'),
2013-08-19 11:55:38 -04:00
multiplier, fontSize, context, xOffset, yOffset, border, shadow;
favicon.rel = 'icon';
2013-08-19 11:55:38 -04:00
// Scale canvas elements based on favicon size
multiplier = img.width / 16;
fontSize = multiplier * 11;
xOffset = multiplier;
yOffset = multiplier * 11;
2013-08-19 11:55:38 -04:00
border = multiplier;
shadow = multiplier * 2;
canvas.height = canvas.width = img.width;
context = canvas.getContext('2d');
context.font = 'bold ' + fontSize + 'px "helvetica", sans-serif';
2013-08-19 11:55:38 -04:00
// Draw faded favicon background
if (count) { context.globalAlpha = 0.4; }
context.drawImage(img, 0, 0);
context.globalAlpha = 1.0;
// Draw white drop shadow
context.shadowColor = '#FFF';
context.shadowBlur = shadow;
context.shadowOffsetX = 0;
context.shadowOffsetY = 0;
// Draw white border
context.fillStyle = '#FFF';
context.fillText(count, xOffset, yOffset);
2013-08-19 11:55:38 -04:00
context.fillText(count, xOffset + border, yOffset);
context.fillText(count, xOffset, yOffset + border);
context.fillText(count, xOffset + border, yOffset + border);
2013-08-19 11:55:38 -04:00
// Draw black count
context.fillStyle = '#000';
2013-08-19 11:55:38 -04:00
context.fillText(count,
xOffset + (border / 2.0),
yOffset + (border / 2.0)
);
2013-08-19 11:55:38 -04:00
// Replace favicon with new favicon
favicon.href = canvas.toDataURL('image/png');
head.removeChild(document.querySelector('link[rel=icon]'));
head.appendChild(favicon);
}
this.Favcount = Favcount;
}).call(this);
(function(){
2013-08-19 11:55:38 -04:00
Favcount.VERSION = '1.1.0';
}).call(this);