-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Conversation
Gonna check this out now |
app/ui/faviconProgressbar.js
Outdated
const size = 32; | ||
|
||
const lineWidth = 5; | ||
const color = '#339BFF'; |
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.
could we make this #0090ed
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.
sure
app/ui/faviconProgressbar.js
Outdated
}; | ||
|
||
const drawNewFavicon = function() { | ||
drawCircle('#efefef', lineWidth, 100 / 100); |
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.
last param could just be 1 here
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.
changed
app/ui/faviconProgressbar.js
Outdated
const canvas = document.createElement('canvas'); | ||
const size = 32; | ||
|
||
const lineWidth = 5; |
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 don't like that you're using lineWidth here and in the function as a parmeter. This variable name should be more specific...consider loaderWidth
app/ui/faviconProgressbar.js
Outdated
const size = 32; | ||
|
||
const lineWidth = 5; | ||
const color = '#0090ed'; |
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.
similarly loaderColor
would be better here
app/ui/faviconProgressbar.js
Outdated
|
||
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 comment
The reason will be displayed to describe this comment to others. Learn more.
seems like you could clean this up a bit if you used let
on this line and then maybe made the variable name a bit more clear by calling it progress
instead of percentage
since you're already using percent
elsewhere
let progress = parseInt(percentageString.replace('%', ''));
progress = progress * .01;
then on line 41 you can do drawCircle(color, lineWidth, progress)
app/ui/faviconProgressbar.js
Outdated
|
||
context.translate(size / 2, size / 2); | ||
|
||
const radius = (size - loaderWidth) / 2; |
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.
last thing from me...recommend you calculate radius inside your function since it's dependent on another property of the circle....this means you'll need to pass size into the function as well...
const drawCircle = function(color, lineWidth,OuterWidth,percent) {
const radius = (outerWidth - loaderWidth) / 2;
...
}
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.
yeah i messed that up...should be outerwidth - lineWidth
@avidyut1 this looks good to me...only change i might make is replacing all division with multiplication (just a preference)...Otherwise the patch works great! I'll defer to @dannycoates for a final review, but from a UX standpoint I'm happy. |
thanks @johngruen |
app/ui/faviconProgressbar.js
Outdated
|
||
const drawCircle = function(color, lineWidth, percent) { | ||
const drawCircle = function(color, lineWidth, outerWidth, percent) { | ||
const radius = (outerWidth - loaderWidth) * 0.5; |
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.
outerWidth - lineWidth
@johngruen integration_tests failed, how to rerun it? |
looks like it's good now! |
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 looks nice! Can you also make the progress line start at the top instead of the right?
app/ui/faviconProgressbar.js
Outdated
const { platform } = require('../utils'); | ||
const assets = require('../../common/assets'); | ||
|
||
module.exports.updateFavicon = function(percentageString) { |
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 the percent
function from utils.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
app/ui/faviconProgressbar.js
Outdated
|
||
context.translate(size * 0.5, size * 0.5); | ||
|
||
const drawCircle = function(color, lineWidth, outerWidth, percent) { |
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.
style nit: please use the form function drawCircle(
instead of const drawCircle = function(
app/ui/home.js
Outdated
@@ -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 comment
The reason will be displayed to describe this comment to others. Learn more.
this should live in app/controller.js
app/ui/home.js
Outdated
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 comment
The reason will be displayed to describe this comment to others. Learn more.
The only calls to updateFavicon
should be in controller.js
inside updateProgress and the focus event handler (to reset the icon to default).
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.
focus event not triggering. could you help?
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.
ok, don't worry about the focus event
app/ui/faviconProgressbar.js
Outdated
return; | ||
} | ||
progress = progress * 0.01; | ||
const link = document.querySelector("link[rel*='icon']"); |
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.
you can bump this up higher and remove the other const link
app/ui/faviconProgressbar.js
Outdated
context.stroke(); | ||
}; | ||
|
||
const drawNewFavicon = function() { |
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.
Try to encapsulate the canvas and other drawing code in this function and return the dataURL. Then you can lift the definition out of updateFavicon
and call something like:
const link = document.querySelector("link[rel*='icon']");
link.href = drawNewFavicon(progress);
progress bar starts from top instead of right |
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.
Almost done. We need to reset the favicon when the upload/download completes or is cancelled. controller.js
is probably the right place to put it.
@dannycoates @johngruen thanks for the review, got to learn a lot. |
when will we merge this PR? |
Looks like the codebase changed underneath this and there are merge conflicts now. |
Looks like the test failure is linting failing on a file not modified in this PR, so that seems fine? @dannycoates Does this need any more changes before it can be merged? The open change request to reset the favicon in |
Fixes #803 for the web.
Please review.