mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	* Make heatmap colors more distinct Fixes: https://github.com/go-gitea/gitea/issues/13529 * use opaque colors * make first color less opaque Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="heatmap-container">
 | |
|     <div v-show="isLoading">
 | |
|       <slot name="loading"/>
 | |
|     </div>
 | |
|     <div v-if="!isLoading" class="total-contributions">
 | |
|       {{ values.length }} contributions in the last 12 months
 | |
|     </div>
 | |
|     <calendar-heatmap
 | |
|       v-show="!isLoading"
 | |
|       :locale="locale"
 | |
|       :no-data-text="locale.no_contributions"
 | |
|       :tooltip-unit="locale.contributions"
 | |
|       :end-date="endDate"
 | |
|       :values="values"
 | |
|       :range-color="colorRange"
 | |
|     />
 | |
|   </div>
 | |
| </template>
 | |
| <script>
 | |
| import {CalendarHeatmap} from 'vue-calendar-heatmap';
 | |
| const {AppSubUrl, heatmapUser} = window.config;
 | |
| 
 | |
| export default {
 | |
|   name: 'ActivityHeatmap',
 | |
|   components: {CalendarHeatmap},
 | |
|   data: () => ({
 | |
|     isLoading: true,
 | |
|     colorRange: [
 | |
|       'var(--color-secondary-alpha-70)',
 | |
|       'var(--color-primary-light-4)',
 | |
|       'var(--color-primary-light-2)',
 | |
|       'var(--color-primary)',
 | |
|       'var(--color-primary-dark-2)',
 | |
|       'var(--color-primary-dark-4)',
 | |
|     ],
 | |
|     endDate: new Date(),
 | |
|     values: [],
 | |
|     locale: {
 | |
|       contributions: 'contributions',
 | |
|       no_contributions: 'No contributions',
 | |
|     },
 | |
|   }),
 | |
|   async mounted() {
 | |
|     const res = await fetch(`${AppSubUrl}/api/v1/users/${heatmapUser}/heatmap`);
 | |
|     const data = await res.json();
 | |
|     this.values = data.map(({contributions, timestamp}) => {
 | |
|       return {date: new Date(timestamp * 1000), count: contributions};
 | |
|     });
 | |
|     this.isLoading = false;
 | |
|   },
 | |
| };
 | |
| </script>
 | |
| <style scoped/>
 |