2020-04-06 01:31:11 +00:00
|
|
|
<script>
|
2022-10-01 14:26:38 +00:00
|
|
|
import {CalendarHeatmap} from 'vue3-calendar-heatmap';
|
2020-04-06 01:31:11 +00:00
|
|
|
|
|
|
|
export default {
|
2020-11-07 15:11:09 +00:00
|
|
|
components: {CalendarHeatmap},
|
2020-11-18 22:00:16 +00:00
|
|
|
props: {
|
|
|
|
values: {
|
|
|
|
type: Array,
|
|
|
|
default: () => [],
|
|
|
|
},
|
2022-10-28 13:48:24 +00:00
|
|
|
locale: {
|
|
|
|
type: Object,
|
|
|
|
default: () => {},
|
2024-03-22 14:06:53 +00:00
|
|
|
},
|
2020-11-18 22:00:16 +00:00
|
|
|
},
|
2020-11-07 15:11:09 +00:00
|
|
|
data: () => ({
|
2020-11-07 21:04:40 +00:00
|
|
|
colorRange: [
|
2023-05-17 10:55:34 +00:00
|
|
|
'var(--color-secondary-alpha-60)',
|
|
|
|
'var(--color-secondary-alpha-60)',
|
2020-11-13 19:49:46 +00:00
|
|
|
'var(--color-primary-light-4)',
|
|
|
|
'var(--color-primary-light-2)',
|
2020-11-07 21:04:40 +00:00
|
|
|
'var(--color-primary)',
|
2020-11-13 19:49:46 +00:00
|
|
|
'var(--color-primary-dark-2)',
|
|
|
|
'var(--color-primary-dark-4)',
|
2020-11-07 21:04:40 +00:00
|
|
|
],
|
|
|
|
endDate: new Date(),
|
2020-11-07 15:11:09 +00:00
|
|
|
}),
|
2022-12-19 21:14:49 +00: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 22:08:58 +00: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 21:15:10 +00:00
|
|
|
params.delete('page');
|
|
|
|
|
2021-02-20 22:08:58 +00:00
|
|
|
const newSearch = params.toString();
|
|
|
|
window.location.search = newSearch.length ? `?${newSearch}` : '';
|
2024-03-22 14:06:53 +00:00
|
|
|
},
|
2021-02-20 22:08:58 +00:00
|
|
|
},
|
2020-11-07 15:11:09 +00:00
|
|
|
};
|
2020-04-06 01:31:11 +00:00
|
|
|
</script>
|
2023-09-02 14:59:07 +00:00
|
|
|
<template>
|
|
|
|
<div class="total-contributions">
|
|
|
|
{{ locale.contributions_in_the_last_12_months }}
|
|
|
|
</div>
|
|
|
|
<calendar-heatmap
|
|
|
|
:locale="locale"
|
2024-03-19 09:37:03 +00:00
|
|
|
:no-data-text="locale.contributions_zero"
|
|
|
|
:tooltip-formatter="
|
|
|
|
(v) =>
|
|
|
|
locale.contributions_format
|
|
|
|
.replace(
|
|
|
|
'{contributions}',
|
|
|
|
`<b>${v.count} ${
|
|
|
|
v.count === 1
|
|
|
|
? locale.contributions_one
|
|
|
|
: locale.contributions_few
|
|
|
|
}</b>`
|
|
|
|
)
|
|
|
|
.replace('{month}', locale.months[v.date.getMonth()])
|
|
|
|
.replace('{day}', v.date.getDate())
|
|
|
|
.replace('{year}', v.date.getFullYear())
|
|
|
|
"
|
2023-09-02 14:59:07 +00:00
|
|
|
:end-date="endDate"
|
|
|
|
:values="values"
|
|
|
|
:range-color="colorRange"
|
|
|
|
@day-click="handleDayClick($event)"
|
|
|
|
/>
|
|
|
|
</template>
|