-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Favicon now shows visual progress #1269
Changes from 6 commits
60a6387
6f472ff
85116c4
d433fee
e56aa55
2624b1f
f5334b0
6092e4b
029b0e1
38efe9c
98b20e7
c15a322
46153ca
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
const { platform } = require('../utils'); | ||
const assets = require('../../common/assets'); | ||
|
||
module.exports.updateFavicon = function(percentageString) { | ||
if (platform() === 'web') { | ||
const percentage = parseInt(percentageString.replace('%', '')); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. seems like you could clean this up a bit if you used
then on line 41 you can do |
||
if (percentage === 0 || percentage === 100) { | ||
const link = document.querySelector("link[rel*='icon']"); | ||
link.type = 'image/png'; | ||
link.href = assets.get('favicon-32x32.png'); | ||
document.getElementsByTagName('head')[0].appendChild(link); | ||
return; | ||
} | ||
const link = document.querySelector("link[rel*='icon']"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you can bump this up higher and remove the other |
||
const canvas = document.createElement('canvas'); | ||
const size = 32; | ||
|
||
const lineWidth = 5; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't like that you're using lineWidth here and in the function as a parmeter. This variable name should be more specific...consider |
||
const color = '#0090ed'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. similarly |
||
|
||
const span = document.createElement('span'); | ||
span.textContent = percentageString; | ||
const context = canvas.getContext('2d'); | ||
canvas.width = canvas.height = size; | ||
|
||
context.translate(size / 2, size / 2); | ||
|
||
const radius = (size - lineWidth) / 2; | ||
|
||
const drawCircle = function(color, lineWidth, percent) { | ||
context.beginPath(); | ||
context.arc(0, 0, radius, 0, Math.PI * 2 * percent, false); | ||
context.strokeStyle = color; | ||
context.lineCap = 'square'; | ||
context.lineWidth = lineWidth; | ||
context.stroke(); | ||
}; | ||
|
||
const drawNewFavicon = function() { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Try to encapsulate the canvas and other drawing code in this function and return the dataURL. Then you can lift the definition out of const link = document.querySelector("link[rel*='icon']");
link.href = drawNewFavicon(progress); |
||
drawCircle('#efefef', lineWidth, 1); | ||
drawCircle(color, lineWidth, percentage / 100); | ||
}; | ||
|
||
drawNewFavicon(link); | ||
link.href = canvas.toDataURL(); | ||
document.getElementsByTagName('head')[0].appendChild(link); | ||
} | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,17 +3,21 @@ const { list } = require('../utils'); | |
const archiveTile = require('./archiveTile'); | ||
const modal = require('./modal'); | ||
const intro = require('./intro'); | ||
const faviconProgressbar = require('./faviconProgressbar'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this should live in |
||
|
||
module.exports = function(state, emit) { | ||
const archives = state.storage.files | ||
.filter(archive => !archive.expired) | ||
.map(archive => archiveTile(state, emit, archive)); | ||
let left = ''; | ||
|
||
if (state.uploading) { | ||
left = archiveTile.uploading(state, emit); | ||
} else if (state.archive.numFiles > 0) { | ||
faviconProgressbar.updateFavicon('0%'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The only calls to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. focus event not triggering. could you help? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok, don't worry about the focus event |
||
left = archiveTile.wip(state, emit); | ||
} else { | ||
faviconProgressbar.updateFavicon('0%'); | ||
left = archiveTile.empty(state, emit); | ||
} | ||
archives.reverse(); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this function should take the raw
progressRatio
number instead of the string. The string is localized and won't always have the '%' character in it. Instead use thepercent
function fromutils.js
to set the text content.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i see
percent
function may or may not return string with %so i am using
state.transfer.progressRatio
is it ok?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes