From 062f35109df236a06a00d403d006b90760f9cfac Mon Sep 17 00:00:00 2001 From: silverwind Date: Sun, 23 Feb 2020 22:34:28 +0100 Subject: move vue and vue-calendar-heatmap to webpack (#10188) - unvendor vue and vue-calendar-heatmap - remove unused moment.js leftover from previous heatmap version - ensure webpack loads the full version of vue - fix vue devmode warning related to 'searchLimit' type I wanted to name the chunk heatmap.js but adblockers don't like that filename [1]. [1] https://github.com/easylist/easylist/blob/3899d5dff33216c0bc64f09ff15d376f346d3e33/easyprivacy/easyprivacy_general.txt#L2095 --- web_src/js/features/userHeatmap.js | 98 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 web_src/js/features/userHeatmap.js (limited to 'web_src/js/features') diff --git a/web_src/js/features/userHeatmap.js b/web_src/js/features/userHeatmap.js new file mode 100644 index 0000000000..4862bc436c --- /dev/null +++ b/web_src/js/features/userHeatmap.js @@ -0,0 +1,98 @@ +import Vue from 'vue'; + +const { AppSubUrl, heatmapUser } = window.config; + +export default async function initHeatmap() { + const el = document.getElementById('user-heatmap'); + if (!el) return; + + const { CalendarHeatmap } = await import(/* webpackChunkName: "userheatmap" */'vue-calendar-heatmap'); + Vue.component('calendarHeatmap', CalendarHeatmap); + + const vueDelimeters = ['${', '}']; + + Vue.component('activity-heatmap', { + delimiters: vueDelimeters, + + props: { + user: { + type: String, + required: true + }, + suburl: { + type: String, + required: true + }, + locale: { + type: Object, + required: true + } + }, + + data() { + return { + isLoading: true, + colorRange: [], + endDate: null, + values: [], + totalContributions: 0, + }; + }, + + mounted() { + this.colorRange = [ + this.getColor(0), + this.getColor(1), + this.getColor(2), + this.getColor(3), + this.getColor(4), + this.getColor(5) + ]; + this.endDate = new Date(); + this.loadHeatmap(this.user); + }, + + methods: { + loadHeatmap(userName) { + const self = this; + $.get(`${this.suburl}/api/v1/users/${userName}/heatmap`, (chartRawData) => { + const chartData = []; + for (let i = 0; i < chartRawData.length; i++) { + self.totalContributions += chartRawData[i].contributions; + chartData[i] = { date: new Date(chartRawData[i].timestamp * 1000), count: chartRawData[i].contributions }; + } + self.values = chartData; + self.isLoading = false; + }); + }, + + getColor(idx) { + const el = document.createElement('div'); + el.className = `heatmap-color-${idx}`; + document.body.appendChild(el); + + const color = getComputedStyle(el).backgroundColor; + + document.body.removeChild(el); + + return color; + } + }, + + template: '

total contributions in the last 12 months

' + }); + + new Vue({ + delimiters: vueDelimeters, + el, + + data: { + suburl: AppSubUrl, + heatmapUser, + locale: { + contributions: 'contributions', + no_contributions: 'No contributions', + }, + }, + }); +} -- cgit v1.2.3