Files
Atay-Makhzan/web_src/js/components/ActivityHeatmap.vue
T

70 lines
1.9 KiB
Vue
Raw Normal View History

2020-04-06 09:31:11 +08:00
<script>
2022-10-01 16:26:38 +02:00
import {CalendarHeatmap} from 'vue3-calendar-heatmap';
2020-04-06 09:31:11 +08:00
export default {
2020-11-07 16:11:09 +01:00
components: {CalendarHeatmap},
2020-11-18 23:00:16 +01:00
props: {
values: {
type: Array,
default: () => [],
},
locale: {
type: Object,
default: () => {},
}
2020-11-18 23:00:16 +01:00
},
2020-11-07 16:11:09 +01:00
data: () => ({
2020-11-07 22:04:40 +01:00
colorRange: [
'var(--color-secondary-alpha-60)',
'var(--color-secondary-alpha-60)',
2020-11-13 20:49:46 +01:00
'var(--color-primary-light-4)',
'var(--color-primary-light-2)',
2020-11-07 22:04:40 +01:00
'var(--color-primary)',
2020-11-13 20:49:46 +01:00
'var(--color-primary-dark-2)',
'var(--color-primary-dark-4)',
2020-11-07 22:04:40 +01:00
],
endDate: new Date(),
2020-11-07 16:11:09 +01: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 23:08:58 +01: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);
}
params.delete('page');
2021-02-20 23:08:58 +01:00
const newSearch = params.toString();
window.location.search = newSearch.length ? `?${newSearch}` : '';
}
},
2020-11-07 16:11:09 +01:00
};
2020-04-06 09:31:11 +08:00
</script>
2023-09-02 16:59:07 +02:00
<template>
<div class="total-contributions">
{{ locale.contributions_in_the_last_12_months }}
</div>
<calendar-heatmap
:locale="locale"
:no-data-text="locale.no_contributions"
:tooltip-unit="locale.contributions"
:end-date="endDate"
:values="values"
:range-color="colorRange"
@day-click="handleDayClick($event)"
/>
</template>