refactor(ts/color): improve code style and change name of some variables for more clarity

This commit is contained in:
Jimmy Cai
2020-08-29 11:43:00 +02:00
parent 746537a801
commit 6b1e660327
4 changed files with 24 additions and 13 deletions
+5 -5
View File
@@ -26,10 +26,10 @@ let Stack = {
*/
document.querySelectorAll('.color-tag').forEach(async (tag: HTMLLinkElement) => {
const imageURL = tag.getAttribute('data-image'),
id = tag.getAttribute('data-id'),
key = tag.getAttribute('data-key');
key = tag.getAttribute('data-key'),
hash = tag.getAttribute('data-hash');
const colors = await getColor(id, key, imageURL);
const colors = await getColor(key, hash, imageURL);
tag.style.color = colors.Vibrant.bodyTextColor;
tag.style.background = colors.Vibrant.hex;
@@ -49,11 +49,11 @@ let Stack = {
articles.forEach(async articles => {
const image = articles.querySelector('img'),
imageURL = image.src,
id = image.getAttribute('data-id'),
key = image.getAttribute('data-key'),
hash = image.getAttribute('data-hash'),
articleDetails: HTMLDivElement = articles.querySelector('.article-details');
const colors = await getColor(id, key, imageURL);
const colors = await getColor(key, hash, imageURL);
articleDetails.style.background = `
linear-gradient(0deg,