mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-30 10:58:27 +00:00 
			
		
		
		
	- Replace all default exports with named exports, except for Vue SFCs - Remove names from Vue SFCs, they are automatically inferred from the filename - Misc whitespace-related tweaks
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import {createApp} from 'vue';
 | |
| import ActivityHeatmap from '../components/ActivityHeatmap.vue';
 | |
| import {translateMonth, translateDay} from '../utils.js';
 | |
| 
 | |
| export function initHeatmap() {
 | |
|   const el = document.getElementById('user-heatmap');
 | |
|   if (!el) return;
 | |
| 
 | |
|   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: 'contributions',
 | |
|       no_contributions: 'No contributions',
 | |
|     };
 | |
| 
 | |
|     const View = createApp(ActivityHeatmap, {values, locale});
 | |
| 
 | |
|     View.mount(el);
 | |
|   } catch (err) {
 | |
|     console.error('Heatmap failed to load', err);
 | |
|     el.textContent = 'Heatmap failed to load';
 | |
|   }
 | |
| }
 |