2019-03-20 19:37:46 +01:00
|
|
|
const { platform } = require('../utils');
|
|
|
|
const assets = require('../../common/assets');
|
|
|
|
|
2019-03-21 19:11:47 +01:00
|
|
|
const size = 32;
|
2019-03-21 19:07:11 +01:00
|
|
|
const loaderWidth = 5;
|
|
|
|
const loaderColor = '#0090ed';
|
|
|
|
|
|
|
|
function drawCircle(canvas, context, color, lineWidth, outerWidth, percent) {
|
|
|
|
canvas.width = canvas.height = outerWidth;
|
|
|
|
context.translate(outerWidth * 0.5, outerWidth * 0.5);
|
|
|
|
context.rotate(-Math.PI * 0.5);
|
|
|
|
const radius = (outerWidth - lineWidth) * 0.5;
|
|
|
|
context.beginPath();
|
|
|
|
context.arc(0, 0, radius, 0, Math.PI * 2 * percent, false);
|
|
|
|
context.strokeStyle = color;
|
|
|
|
context.lineCap = 'square';
|
|
|
|
context.lineWidth = lineWidth;
|
|
|
|
context.stroke();
|
|
|
|
}
|
|
|
|
|
|
|
|
function drawNewFavicon(progressRatio) {
|
|
|
|
const canvas = document.createElement('canvas');
|
|
|
|
const context = canvas.getContext('2d');
|
|
|
|
drawCircle(canvas, context, '#efefef', loaderWidth, size, 1);
|
|
|
|
drawCircle(canvas, context, loaderColor, loaderWidth, size, progressRatio);
|
|
|
|
return canvas.toDataURL();
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports.updateFavicon = function(progressRatio) {
|
2019-03-20 19:37:46 +01:00
|
|
|
if (platform() === 'web') {
|
2019-03-21 23:22:16 +01:00
|
|
|
const link = document.querySelector("link[rel='icon'][sizes='32x32']");
|
2019-03-21 19:07:11 +01:00
|
|
|
const progress = progressRatio * 100;
|
2019-03-20 20:38:11 +01:00
|
|
|
if (progress === 0 || progress === 100) {
|
2019-03-20 19:37:46 +01:00
|
|
|
link.type = 'image/png';
|
|
|
|
link.href = assets.get('favicon-32x32.png');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-21 19:07:11 +01:00
|
|
|
link.href = drawNewFavicon(progressRatio);
|
2019-03-20 19:37:46 +01:00
|
|
|
}
|
|
|
|
};
|