|
// ==UserScript== |
|
// @name Show HN vote color identification |
|
// @namespace gist.github.com/Alber70g |
|
// @version 0.7 |
|
// @description HN votes colors (logarithmic) |
|
// @author Alber70g |
|
// @match https://news.ycombinator.com/* |
|
// @require https://unpkg.com/[email protected]/chroma.js |
|
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js |
|
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js |
|
// @grant none |
|
// @updateURL https://gist.github.com/alber70g/e0bdad727189fd7ad66f61b609377686/raw/HNPopularityColors.user.js |
|
// ==/UserScript== |
|
(function(){ |
|
|
|
function colorPopularity(href) { |
|
switch(true) { |
|
case !!href.match(/news\.ycombinator\.com\.*/): |
|
return hackerNews(); |
|
} |
|
} |
|
|
|
function hackerNews() { |
|
waitForKeyElements('.itemlist', () => { |
|
const elements = Array.from(document.querySelector('.itemlist').querySelectorAll('.score')).map(x => x.parentElement.parentElement); |
|
const scoreFn = (el) => +el.querySelector('.score').innerText.split(' ')[0] |
|
const styleFn = (el, color) => { |
|
el.children[0].style = "background: linear-gradient(0deg, #f6f6ef 50%, " + color + " 50%);"; |
|
} |
|
colorVoting(elements, scoreFn, styleFn) |
|
}) |
|
} |
|
|
|
function colorVoting(elements, scoreFn, styleFn) { |
|
const arrayElements = Array.from(elements) |
|
|
|
const allScores = arrayElements.map(x => { |
|
return scoreFn(x); |
|
}); |
|
|
|
const [high, low] = getHighLow(allScores); |
|
|
|
/** |
|
* Color pallet being used |
|
* http://gka.github.io/palettes/#diverging|c0=lightgrey,lime,yellow|c1=yellow,Red|steps=12|bez0=0|bez1=0|coL0=1|coL1=1 |
|
*/ |
|
const getColor = chroma.scale(['lightgrey','lime','orange','Red']).domain([low, high], 5); // allColors.length/10); |
|
|
|
arrayElements.forEach(el => { |
|
styleFn(el, getColor(scoreFn(el))); |
|
}); |
|
} |
|
|
|
function getHighLow(allVotes) { |
|
var sortedVotes = allVotes.sort((a,b) => a-b); |
|
var skipCount = allVotes.length / 100 * 5; |
|
var high = sortedVotes[Math.round(allVotes.length-skipCount)]; |
|
var low = sortedVotes[Math.round(skipCount)]; |
|
return [high, low]; |
|
} |
|
|
|
colorPopularity(window.location.href); |
|
})() |