Skip to content

Instantly share code, notes, and snippets.

@wesbos
Created September 16, 2020 15:26
Show Gist options
  • Star 36 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save wesbos/bb38d9311dd742eb8082cf138ec469da to your computer and use it in GitHub Desktop.
Save wesbos/bb38d9311dd742eb8082cf138ec469da to your computer and use it in GitHub Desktop.
fake-your-git-history.js
let currentColor = '#ebedf0';
let clicking = false;
const boxes = document.querySelectorAll('.js-calendar-graph-svg rect');
const graph = document.querySelector('.js-calendar-graph-svg');
// code for switching the current color
function handleColorChange(e) {
const el = e.currentTarget;
currentColor = el.style['background-color'];
console.log(currentColor)
}
function handlePointerEnter(e) {
const rect = e.currentTarget;
if(clicking) {
rect.setAttribute('fill', currentColor)
}
}
boxes.forEach(box => box.addEventListener('pointermove', handlePointerEnter))
boxes.forEach(box => box.addEventListener('pointerup', handlePointerEnter))
document.querySelectorAll('.legend li').forEach(li => li.addEventListener('click', handleColorChange))
graph.addEventListener('pointerup', () => {clicking = false});
graph.addEventListener('pointerdown', () => {clicking = true});
graph.addEventListener('pointerleave', () => {clicking = false});
@mybundletv
Copy link

hey forked and added 1 line so that when you click on a date it doesnt "shade" the rest of the boxes (undoing some of your hard work! )

https://gist.github.com/mybundletv/69446faff894802d198c560f98bea728

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment