2020-04-05 21:31:11 -04:00
|
|
|
<template>
|
2020-11-18 17:00:16 -05:00
|
|
|
<div id="user-heatmap">
|
|
|
|
<div class="total-contributions">
|
2023-04-17 14:26:01 -04:00
|
|
|
{{ locale.contributions_in_the_last_12_months }}
|
2020-11-07 16:04:40 -05:00
|
|
|
</div>
|
2020-11-07 10:11:09 -05:00
|
|
|
<calendar-heatmap
|
|
|
|
:locale="locale"
|
|
|
|
:no-data-text="locale.no_contributions"
|
|
|
|
:tooltip-unit="locale.contributions"
|
|
|
|
:end-date="endDate"
|
|
|
|
:values="values"
|
|
|
|
:range-color="colorRange"
|
2021-02-20 17:08:58 -05:00
|
|
|
@day-click="handleDayClick($event)"
|
2020-11-07 10:11:09 -05:00
|
|
|
/>
|
|
|
|
</div>
|
2020-04-05 21:31:11 -04:00
|
|
|
</template>
|
|
|
|
<script>
|
2022-10-01 10:26:38 -04:00
|
|
|
import {CalendarHeatmap} from 'vue3-calendar-heatmap';
|
2020-04-05 21:31:11 -04:00
|
|
|
|
|
|
|
export default {
|
2020-11-07 10:11:09 -05:00
|
|
|
components: {CalendarHeatmap},
|
2020-11-18 17:00:16 -05:00
|
|
|
props: {
|
|
|
|
values: {
|
|
|
|
type: Array,
|
|
|
|
default: () => [],
|
|
|
|
},
|
2022-10-28 09:48:24 -04:00
|
|
|
locale: {
|
|
|
|
type: Object,
|
|
|
|
default: () => {},
|
|
|
|
}
|
2020-11-18 17:00:16 -05:00
|
|
|
},
|
2020-11-07 10:11:09 -05:00
|
|
|
data: () => ({
|
2020-11-07 16:04:40 -05:00
|
|
|
colorRange: [
|
2023-05-17 06:55:34 -04:00
|
|
|
'var(--color-secondary-alpha-60)',
|
|
|
|
'var(--color-secondary-alpha-60)',
|
2020-11-13 14:49:46 -05:00
|
|
|
'var(--color-primary-light-4)',
|
|
|
|
'var(--color-primary-light-2)',
|
2020-11-07 16:04:40 -05:00
|
|
|
'var(--color-primary)',
|
2020-11-13 14:49:46 -05:00
|
|
|
'var(--color-primary-dark-2)',
|
|
|
|
'var(--color-primary-dark-4)',
|
2020-11-07 16:04:40 -05:00
|
|
|
],
|
|
|
|
endDate: new Date(),
|
2020-11-07 10:11:09 -05:00
|
|
|
}),
|
2022-12-19 16:14:49 -05:00
|
|
|
mounted() {
|
|
|
|
// work around issue with first legend color being rendered twice and legend cut off
|
|
|
|
const legend = document.querySelector('.vch__external-legend-wrapper');
|
|
|
|
legend.setAttribute('viewBox', '12 0 80 10');
|
|
|
|
legend.style.marginRight = '-12px';
|
|
|
|
},
|
2021-02-20 17:08:58 -05:00
|
|
|
methods: {
|
|
|
|
handleDayClick(e) {
|
|
|
|
// Reset filter if same date is clicked
|
|
|
|
const params = new URLSearchParams(document.location.search);
|
|
|
|
const queryDate = params.get('date');
|
|
|
|
// Timezone has to be stripped because toISOString() converts to UTC
|
|
|
|
const clickedDate = new Date(e.date - (e.date.getTimezoneOffset() * 60000)).toISOString().substring(0, 10);
|
|
|
|
|
|
|
|
if (queryDate && queryDate === clickedDate) {
|
|
|
|
params.delete('date');
|
|
|
|
} else {
|
|
|
|
params.set('date', clickedDate);
|
|
|
|
}
|
|
|
|
|
2023-02-24 16:15:10 -05:00
|
|
|
params.delete('page');
|
|
|
|
|
2021-02-20 17:08:58 -05:00
|
|
|
const newSearch = params.toString();
|
|
|
|
window.location.search = newSearch.length ? `?${newSearch}` : '';
|
|
|
|
}
|
|
|
|
},
|
2020-11-07 10:11:09 -05:00
|
|
|
};
|
2020-04-05 21:31:11 -04:00
|
|
|
</script>
|