mirror of
https://codeberg.org/forgejo/forgejo
synced 2025-10-19 15:00:54 +02:00
Some Vue components were already lazy-loaded, but not all. There are three main changes: 1. Move init scripts outside Vue code. 2. Make the init scripts lazy-load the Vue components. 3. Deal with vue linters, because apparently if you do `export default` then some Vue linters will notice that's vue sfc. The rationale for this pull requests is that this reduces the size of the `index.js` file. - Uncompressed: 1.24 MB -> 954.40 kB - Compressed (gzip, via `reverse_proxy` of Caddy): 400.45 kB -> 298.95 kB - Compressed (zstd, via `bindata` tag): 363.75 kB -> 274.22 kB Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/9444 Reviewed-by: Otto <otto@codeberg.org> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
40 lines
1.7 KiB
JavaScript
40 lines
1.7 KiB
JavaScript
import {createApp} from 'vue';
|
|
import {translateMonth, translateDay} from '../utils.js';
|
|
|
|
export async function initHeatmap() {
|
|
const el = document.getElementById('user-heatmap');
|
|
if (!el) return;
|
|
|
|
const {default: ActivityHeatmap} = await import(/* webpackChunkName: "activity-heatmap" */'../components/ActivityHeatmap.vue');
|
|
try {
|
|
const heatmap = {};
|
|
for (const {contributions, timestamp} of JSON.parse(el.getAttribute('data-heatmap-data'))) {
|
|
// 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]};
|
|
});
|
|
|
|
const locale = {
|
|
months: new Array(12).fill().map((_, idx) => translateMonth(idx)),
|
|
days: new Array(7).fill().map((_, idx) => translateDay(idx)),
|
|
contributions_in_the_last_12_months: el.getAttribute('data-locale-total-contributions'),
|
|
contributions_zero: el.getAttribute('data-locale-contributions-zero'),
|
|
contributions_format: el.getAttribute('data-locale-contributions-format'),
|
|
contributions_one: el.getAttribute('data-locale-contributions-one'),
|
|
contributions_few: el.getAttribute('data-locale-contributions-few'),
|
|
more: el.getAttribute('data-locale-more'),
|
|
less: el.getAttribute('data-locale-less'),
|
|
};
|
|
|
|
const View = createApp(ActivityHeatmap, {values, locale});
|
|
View.mount(el);
|
|
el.classList.remove('is-loading');
|
|
} catch (err) {
|
|
console.error('Heatmap failed to load', err);
|
|
el.textContent = 'Heatmap failed to load';
|
|
}
|
|
}
|