Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

checkErrorResponse documented in the tutorial #1675

Merged
merged 8 commits into from
May 9, 2018
Merged

checkErrorResponse documented in the tutorial #1675

merged 8 commits into from
May 9, 2018

Conversation

platan
Copy link
Member

@platan platan commented May 6, 2018

This is a follow-up to #1670

This change contains:

@shields-ci
Copy link

shields-ci commented May 6, 2018

Messages
📖

✨ Thanks for your contribution to Shields, @platan!

📖

Thanks for contributing to our documentation. We ❤️ our documentarians!

Generated by 🚫 dangerJS

Copy link
Member

@chris48s chris48s left a comment

Choose a reason for hiding this comment

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

Hopefully we'll be updating the docs to reflect the new service design soon but these are useful improvements in the meantime 👍

Copy link
Member

@PyvesB PyvesB left a comment

Choose a reason for hiding this comment

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

Looks overall good to me, I've left a few comments inline. 😉

if (is_automated) {
badgeData.text[1] = 'automated'; // (9)
badgeData.colorscheme = 'blue'; // (9)
} else {
badgeData.text[1] = 'manual'; // (9)
badgeData.colorscheme = 'yellow'; // (9)
}
badgeData.colorB = '#008bb8'; // (9)
badgeData.colorB = data.colorB || '#008bb8'; // (9)
Copy link
Member

Choose a reason for hiding this comment

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

Should makeColorB be used here?

Copy link
Member

Choose a reason for hiding this comment

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

Probably a good idea, didn't even realise this was an option, it's currently only used in 5 places.

Copy link
Member Author

Choose a reason for hiding this comment

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

This is actually a bug in my opinion. I wanted to update an example with code from server.js and fix this bug in a separate PR.
colorB query param can be used to override badge value color.
This is how it works (000000 is black, it works out of the box):
https://img.shields.io/github/downloads/atom/atom/total.svg?colorB=000000
But it does not work for docker automated badge:
https://img.shields.io/docker/automated/jrottenberg/ffmpeg.svg?colorB=000000
https://img.shields.io/docker/automated/_/ubuntu.svg?colorB=000000
Actually this line:

badgeData.colorB = data.colorB || '#008bb8';

overrides colorscheme defined few lines above.
Overriding is implemented here:

colorB = colorB || pickedColorscheme.colorB;

And docker badge always has color #008bb8
https://img.shields.io/docker/automated/jrottenberg/ffmpeg.svg
https://img.shields.io/docker/automated/_/ubuntu.svg

Copy link
Member

Choose a reason for hiding this comment

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

Hmmm. Okay, let's deal with this separately.

doc/TUTORIAL.md Outdated
In some cases the API may return an error or a HTTP status code indicating
a client error or a server error e.g. if the query was invalid. The error response
is handled by the [checkErrorResponse](https://github.com/badges/shields/blob/8fcc13d5bced23f53c9f075e51b419060f6cc124/lib/error-helper.js#L8)
function and a badge with a appropriate status is returned: "inaccessible"
Copy link
Member

Choose a reason for hiding this comment

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

Minor typo, "an appropriate". ^^

Copy link
Member Author

Choose a reason for hiding this comment

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

Thanks, fixed.

sendBadge(format, badgeData); // (7)
return; // (7)
}
try {
var data = JSON.parse(buffer); // (8)
var is_automated = data.is_automated; // (8)
var parsedData = JSON.parse(buffer); // (8)
Copy link
Member

Choose a reason for hiding this comment

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

Should we use let and const instead of var in this tutorial?

Copy link
Member Author

Choose a reason for hiding this comment

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

It's good idea to have let and const instead of var in this tutorial and in other (like https://github.com/badges/shields/blob/master/doc/service-tests.md) places. I just wanted to update a code example in this tutorial to show checkErrorResponse. Let's change var -> let and const in reference services and documentation in a separate changes. Is it OK for you?

Copy link
Member

Choose a reason for hiding this comment

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

Sure! 👍

@platan platan merged commit 6dab822 into badges:master May 9, 2018
@platan platan deleted the checkErrorResponse-in-tutorial branch May 14, 2018 18:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants