Files
Atay-Makhzan/web_src/js/features/heatmap.js
T

31 lines
907 B
JavaScript
Raw Normal View History

2020-11-18 23:00:16 +01:00
import Vue from 'vue';
import ActivityHeatmap from '../components/ActivityHeatmap.vue';
export default function initHeatmap() {
2020-11-18 23:00:16 +01:00
const el = document.getElementById('user-heatmap');
if (!el) return;
try {
2021-06-25 12:59:25 -04:00
const heatmap = {};
JSON.parse(el.dataset.heatmapData).forEach(({contributions, timestamp}) => {
// Convert to user timezone and sum contributions by date
const dateStr = new Date(timestamp * 1000).toDateString();
heatmap[dateStr] = (heatmap[dateStr] || 0) + contributions;
});
const values = Object.keys(heatmap).map((v) => {
return {date: new Date(v), count: heatmap[v]};
2020-11-18 23:00:16 +01:00
});
const View = Vue.extend({
render: (createElement) => createElement(ActivityHeatmap, {props: {values}}),
});
new View().$mount(el);
} catch (err) {
console.error('Heatmap failed to load', err);
2020-11-18 23:00:16 +01:00
el.textContent = 'Heatmap failed to load';
}
}