Skip to content
This repository was archived by the owner on May 22, 2021. It is now read-only.

Favicon now shows visual progress #1269

Closed
wants to merge 13 commits into from
Closed

Favicon now shows visual progress #1269

wants to merge 13 commits into from

Conversation

ghost
Copy link

@ghost ghost commented Mar 20, 2019

Fixes #803 for the web.
Please review.

@johngruen
Copy link
Contributor

Gonna check this out now

const size = 32;

const lineWidth = 5;
const color = '#339BFF';
Copy link
Contributor

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

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sure

};

const drawNewFavicon = function() {
drawCircle('#efefef', lineWidth, 100 / 100);
Copy link
Contributor

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

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

changed

const canvas = document.createElement('canvas');
const size = 32;

const lineWidth = 5;
Copy link
Contributor

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

const size = 32;

const lineWidth = 5;
const color = '#0090ed';
Copy link
Contributor

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


module.exports.updateFavicon = function(percentageString) {
if (platform() === 'web') {
const percentage = parseInt(percentageString.replace('%', ''));
Copy link
Contributor

@johngruen johngruen Mar 20, 2019

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)


context.translate(size / 2, size / 2);

const radius = (size - loaderWidth) / 2;
Copy link
Contributor

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;
...
}

Copy link
Contributor

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

@johngruen
Copy link
Contributor

@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.

@ghost
Copy link
Author

ghost commented Mar 20, 2019

thanks @johngruen


const drawCircle = function(color, lineWidth, percent) {
const drawCircle = function(color, lineWidth, outerWidth, percent) {
const radius = (outerWidth - loaderWidth) * 0.5;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

outerWidth - lineWidth

@ghost
Copy link
Author

ghost commented Mar 20, 2019

@johngruen integration_tests failed, how to rerun it?

@johngruen
Copy link
Contributor

looks like it's good now!

Copy link
Contributor

@dannycoates dannycoates left a 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?

const { platform } = require('../utils');
const assets = require('../../common/assets');

module.exports.updateFavicon = function(percentageString) {
Copy link
Contributor

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.

Copy link
Author

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?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes


context.translate(size * 0.5, size * 0.5);

const drawCircle = function(color, lineWidth, outerWidth, percent) {
Copy link
Contributor

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');
Copy link
Contributor

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%');
Copy link
Contributor

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).

Copy link
Author

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?

Copy link
Contributor

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

return;
}
progress = progress * 0.01;
const link = document.querySelector("link[rel*='icon']");
Copy link
Contributor

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

context.stroke();
};

const drawNewFavicon = function() {
Copy link
Contributor

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);

@ghost
Copy link
Author

ghost commented Mar 21, 2019

progress bar starts from top instead of right

Copy link
Contributor

@dannycoates dannycoates left a 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.

@ghost
Copy link
Author

ghost commented Mar 21, 2019

@dannycoates @johngruen thanks for the review, got to learn a lot.

@ghost
Copy link
Author

ghost commented Apr 20, 2019

when will we merge this PR?

@Thynix
Copy link

Thynix commented Jun 8, 2019

Looks like the codebase changed underneath this and there are merge conflicts now.

@Thynix
Copy link

Thynix commented Jun 14, 2019

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 controller.js is already addressed.

This pull request was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Hack the favicon to show visual progress
5 participants