2021-12-29 15:44:13 +01:00
|
|
|
<template>
|
2021-12-29 20:36:53 +01:00
|
|
|
<div class="datepicker-with-range-container">
|
2021-12-29 20:54:01 +01:00
|
|
|
<popup>
|
|
|
|
<template #trigger="{toggle}">
|
2022-02-05 20:29:57 +01:00
|
|
|
<slot name="trigger" :toggle="toggle">
|
|
|
|
<x-button @click.prevent.stop="toggle()" type="secondary" :shadow="false" class="mb-2">
|
|
|
|
{{ $t('task.show.select') }}
|
|
|
|
</x-button>
|
|
|
|
</slot>
|
2021-12-29 20:54:01 +01:00
|
|
|
</template>
|
|
|
|
<template #content="{isOpen}">
|
|
|
|
<div class="datepicker-with-range" :class="{'is-open': isOpen}">
|
|
|
|
<div class="selections">
|
2022-01-09 12:03:35 +01:00
|
|
|
<button
|
|
|
|
v-for="(value, text) in dateRanges"
|
|
|
|
:key="text"
|
2022-01-09 12:50:50 +01:00
|
|
|
@click="setDateRange(value)"
|
2022-01-09 12:03:35 +01:00
|
|
|
:class="{'is-active': dateRange === value}">
|
|
|
|
{{ $t(text) }}
|
2021-12-29 20:54:01 +01:00
|
|
|
</button>
|
|
|
|
<button @click="setDateRange('')" :class="{'is-active': customRangeActive}">
|
|
|
|
{{ $t('misc.custom') }}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="flatpickr-container">
|
|
|
|
<flat-pickr
|
|
|
|
:config="flatPickerConfig"
|
|
|
|
v-model="dateRange"
|
|
|
|
/>
|
|
|
|
</div>
|
2021-12-29 20:36:53 +01:00
|
|
|
</div>
|
2021-12-29 20:54:01 +01:00
|
|
|
</template>
|
|
|
|
</popup>
|
2021-12-29 15:44:13 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2021-12-29 16:00:06 +01:00
|
|
|
<script lang="ts" setup>
|
2021-12-29 15:44:13 +01:00
|
|
|
import flatPickr from 'vue-flatpickr-component'
|
|
|
|
import 'flatpickr/dist/flatpickr.css'
|
2022-01-09 12:03:35 +01:00
|
|
|
import {computed, Ref, ref, watch} from 'vue'
|
2021-12-29 15:44:13 +01:00
|
|
|
import {useI18n} from 'vue-i18n'
|
|
|
|
import {store} from '@/store'
|
|
|
|
import {format} from 'date-fns'
|
2021-12-29 20:54:01 +01:00
|
|
|
import Popup from '@/components/misc/popup'
|
2021-12-29 15:44:13 +01:00
|
|
|
|
|
|
|
const {t} = useI18n()
|
|
|
|
|
|
|
|
const emit = defineEmits(['dateChanged'])
|
|
|
|
|
2021-12-29 16:51:21 +01:00
|
|
|
// FIXME: This seems to always contain the default value - that breaks the picker
|
|
|
|
const weekStart = computed<number>(() => store.state.auth.settings.weekStart ?? 0)
|
2021-12-29 15:44:13 +01:00
|
|
|
const flatPickerConfig = computed(() => ({
|
|
|
|
altFormat: t('date.altFormatLong'),
|
|
|
|
altInput: true,
|
|
|
|
dateFormat: 'Y-m-d H:i',
|
2021-12-29 16:03:29 +01:00
|
|
|
enableTime: false,
|
2021-12-29 15:44:13 +01:00
|
|
|
inline: true,
|
|
|
|
mode: 'range',
|
2021-12-29 16:51:21 +01:00
|
|
|
locale: {
|
2021-12-29 17:08:33 +01:00
|
|
|
firstDayOf7Days: weekStart.value,
|
2021-12-29 16:51:21 +01:00
|
|
|
},
|
2021-12-29 15:44:13 +01:00
|
|
|
}))
|
|
|
|
|
2022-02-05 20:03:16 +01:00
|
|
|
const dateRange = ref('')
|
2021-12-29 15:44:13 +01:00
|
|
|
|
|
|
|
watch(
|
|
|
|
() => dateRange.value,
|
2021-12-29 16:00:06 +01:00
|
|
|
(newVal: string | null) => {
|
2021-12-29 15:56:50 +01:00
|
|
|
if (newVal === null) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-29 15:44:13 +01:00
|
|
|
const [fromDate, toDate] = newVal.split(' to ')
|
2021-12-29 15:56:50 +01:00
|
|
|
|
2021-12-29 15:44:13 +01:00
|
|
|
if (typeof fromDate === 'undefined' || typeof toDate === 'undefined') {
|
|
|
|
return
|
|
|
|
}
|
2021-12-29 15:56:50 +01:00
|
|
|
|
2021-12-29 15:44:13 +01:00
|
|
|
emit('dateChanged', {
|
2022-01-09 12:50:50 +01:00
|
|
|
dateFrom: fromDate,
|
|
|
|
dateTo: toDate,
|
2021-12-29 15:44:13 +01:00
|
|
|
})
|
2021-12-29 21:33:55 +01:00
|
|
|
},
|
2021-12-29 15:44:13 +01:00
|
|
|
)
|
|
|
|
|
2022-01-09 12:50:50 +01:00
|
|
|
function setDateRange(range: string) {
|
|
|
|
dateRange.value = range
|
2021-12-29 15:44:13 +01:00
|
|
|
}
|
|
|
|
|
2022-01-09 12:50:50 +01:00
|
|
|
const dateRanges = {
|
|
|
|
// Still using strings for the range instead of an array or object to keep it compatible with the dates from flatpickr
|
|
|
|
'task.show.today': 'now/d to now/d+1d',
|
|
|
|
'task.show.thisWeek': 'now/w to now/w+1w',
|
|
|
|
'task.show.nextWeek': 'now/w+1w to now/w+2w',
|
|
|
|
'task.show.next7Days': 'now to now+7d',
|
|
|
|
'task.show.thisMonth': 'now/M to now/M+1M',
|
|
|
|
'task.show.nextMonth': 'now/M+1M to now/M+2M',
|
|
|
|
'task.show.next30Days': 'now to now+30d',
|
2021-12-29 15:44:13 +01:00
|
|
|
}
|
2021-12-29 15:56:50 +01:00
|
|
|
|
2021-12-29 16:00:06 +01:00
|
|
|
const customRangeActive = computed<Boolean>(() => {
|
2022-01-09 12:50:50 +01:00
|
|
|
return !Object.values(dateRanges).includes(dateRange.value)
|
2021-12-29 15:56:50 +01:00
|
|
|
})
|
2021-12-29 15:44:13 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-12-29 20:36:53 +01:00
|
|
|
.datepicker-with-range-container {
|
|
|
|
position: relative;
|
2021-12-29 20:54:01 +01:00
|
|
|
|
|
|
|
:deep(.popup) {
|
2021-12-29 21:12:43 +01:00
|
|
|
z-index: 10;
|
2021-12-29 20:54:01 +01:00
|
|
|
margin-top: 1rem;
|
|
|
|
border-radius: $radius;
|
|
|
|
border: 1px solid var(--grey-200);
|
|
|
|
background-color: var(--white);
|
|
|
|
box-shadow: $shadow;
|
|
|
|
|
|
|
|
&.is-open {
|
|
|
|
width: 500px;
|
|
|
|
height: 320px;
|
|
|
|
}
|
|
|
|
}
|
2021-12-29 20:36:53 +01:00
|
|
|
}
|
|
|
|
|
2021-12-29 15:44:13 +01:00
|
|
|
.datepicker-with-range {
|
|
|
|
display: flex;
|
2021-12-29 20:54:01 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2021-12-29 20:36:53 +01:00
|
|
|
position: absolute;
|
2021-12-29 15:44:13 +01:00
|
|
|
|
|
|
|
:deep(.flatpickr-calendar) {
|
|
|
|
margin: 0 auto 8px;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.flatpickr-container {
|
|
|
|
width: 70%;
|
|
|
|
border-left: 1px solid var(--grey-200);
|
|
|
|
|
|
|
|
:deep(input.input) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.selections {
|
|
|
|
width: 30%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-12-29 20:36:53 +01:00
|
|
|
padding-top: .5rem;
|
2021-12-29 15:44:13 +01:00
|
|
|
|
2021-12-29 15:56:50 +01:00
|
|
|
button {
|
2021-12-29 15:44:13 +01:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
padding: .5rem 1rem;
|
|
|
|
transition: $transition;
|
|
|
|
font-size: .9rem;
|
|
|
|
color: var(--text);
|
2021-12-29 15:56:50 +01:00
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
cursor: pointer;
|
2021-12-29 15:44:13 +01:00
|
|
|
|
2021-12-29 15:56:50 +01:00
|
|
|
&.is-active {
|
2021-12-29 15:44:13 +01:00
|
|
|
color: var(--primary);
|
|
|
|
}
|
|
|
|
|
2021-12-29 15:56:50 +01:00
|
|
|
&:hover, &.is-active {
|
2021-12-29 15:44:13 +01:00
|
|
|
background-color: var(--grey-100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|