opnform-host-nginx/client/components/forms/DateInput.vue

277 lines
7.4 KiB
Vue

<template>
<InputWrapper v-bind="props">
<template #label>
<slot name="label" />
</template>
<UPopover
v-model:open="pickerOpen"
:disabled="props.disabled"
:popper="{ placement: 'bottom-start' }"
>
<button
ref="datepicker"
class="cursor-pointer overflow-hidden"
:class="inputClasses"
:disabled="props.disabled"
>
<div class="flex items-stretch min-w-0">
<div
class="flex-grow min-w-0 flex items-center gap-x-2"
:class="[
props.theme.DateInput.spacing.horizontal,
props.theme.DateInput.spacing.vertical,
props.theme.DateInput.fontSize,
]"
>
<Icon
name="heroicons:calendar-20-solid"
class="w-4 h-4 flex-shrink-0"
dynamic
/>
<div class="flex-grow truncate overflow-hidden flex items-center">
<p
v-if="formattedDatePreview"
class="flex-grow truncate"
>
{{ formattedDatePreview }}
</p>
<p
v-else
class="text-transparent"
>
-
</p>
</div>
</div>
<button
v-if="fromDate && !props.disabled"
class="hover:bg-gray-50 dark:hover:bg-gray-900 ltr:border-l rtl:border-r px-2 flex items-center"
@click.prevent="clear()"
>
<Icon
name="heroicons:x-mark-20-solid"
class="w-5 h-5 text-gray-500"
width="2em"
dynamic
/>
</button>
</div>
</button>
<template #panel="{ close }">
<DatePicker
v-if="props.dateRange"
v-model.range="modeledValue"
:mode="props.withTime ? 'dateTime' : 'date'"
:is24hr="props.timeFormat == '24'"
is-required
borderless
:min-date="minDate"
:max-date="maxDate"
:is-dark="props.isDark"
color="form-color"
:locale="props.locale"
@update:model-value="updateModelValue"
/>
<DatePicker
v-else
v-model="modeledValue"
:mode="props.withTime ? 'dateTime' : 'date'"
:is24hr="props.timeFormat == '24'"
is-required
borderless
:min-date="minDate"
:max-date="maxDate"
:is-dark="props.isDark"
color="form-color"
:locale="props.locale"
@update:model-value="updateModelValue"
/>
</template>
</UPopover>
<template #help>
<slot name="help" />
</template>
<template #error>
<slot name="error" />
</template>
</InputWrapper>
</template>
<script setup>
import { inputProps, useFormInput } from './useFormInput.js'
import InputWrapper from './components/InputWrapper.vue'
import { getCurrentInstance } from 'vue'
import { DatePicker } from 'v-calendar'
import 'v-calendar/dist/style.css'
import { format, startOfDay, endOfDay } from 'date-fns'
import { tailwindcssPaletteGenerator } from '~/lib/colors.js'
const props = defineProps({
...inputProps,
withTime: { type: Boolean, default: false },
dateRange: { type: Boolean, default: false },
disablePastDates: { type: Boolean, default: false },
disableFutureDates: { type: Boolean, default: false },
dateFormat: { type: String, default: 'dd/MM/yyyy' },
timeFormat: { type: String, default: '24' },
outputDateFormat: { type: String, default: 'yyyy-MM-dd\'T\'HH:mm:ssXXX' },
isDark: { type: Boolean, default: false }
})
const input = useFormInput(props, getCurrentInstance())
const fromDate = ref(null)
const toDate = ref(null)
const datepicker = ref(null)
const pickerOpen = ref(false)
const twColors = computed(() => {
return tailwindcssPaletteGenerator(props.color).primary
})
const modeledValue = computed({
get () {
return props.dateRange ? { start: fromDate.value, end: toDate.value } : fromDate.value
},
set (value) {
if (props.dateRange) {
fromDate.value = format(value.start, props.outputDateFormat)
toDate.value = format(value.end, props.outputDateFormat)
} else {
fromDate.value = format(value, props.outputDateFormat)
}
}
})
const updateModelValue = () => {
if (!props.withTime && !props.dateRange) {
pickerOpen.value = false
}
}
const inputClasses = computed(() => {
const classes = [props.theme.DateInput.input, props.theme.DateInput.borderRadius]
if (props.disabled) {
classes.push('!cursor-not-allowed !bg-gray-200 dark:!bg-gray-800')
}
if (input.hasError.value) {
classes.push('!ring-red-500 !ring-2 !border-transparent')
}
return classes.join(' ')
})
const minDate = computed(() => {
if (props.disablePastDates) {
return startOfDay(new Date())
}
return undefined
})
const maxDate = computed(() => {
if (props.disableFutureDates) {
return endOfDay(new Date())
}
return undefined
})
const handleCompValChange = () => {
if (input.compVal.value) {
if (Array.isArray(input.compVal.value)) {
fromDate.value = input.compVal.value[0] ?? null
toDate.value = input.compVal.value[1] ?? null
} else {
fromDate.value = input.compVal.value
}
}
}
const setInputColor = () => {
if (datepicker.value) {
datepicker.value.style.setProperty('--tw-ring-color', props.color)
}
}
const clear = () => {
fromDate.value = null
toDate.value = null
pickerOpen.value = false
}
const formattedDate = (value) => {
if (props.withTime) {
try {
return format(new Date(value), props.dateFormat + (props.timeFormat == 12 ? ' p':' HH:mm'))
} catch (e) {
console.error('Error formatting date', e)
return ''
}
}
try {
return format(new Date(value), props.dateFormat)
} catch (e) {
return ''
}
}
const formattedDatePreview = computed(() => {
if (!fromDate.value) return ''
if (props.dateRange) {
if (!toDate.value) return formattedDate(fromDate.value)
return `${formattedDate(fromDate.value)} - ${formattedDate(toDate.value)}`
}
return formattedDate(fromDate.value)
})
watch(() => props.color, () => {
setInputColor()
}, { immediate: true })
watch(() => props.dateRange, () => {
fromDate.value = null
toDate.value = null
}, { immediate: true })
watch(() => fromDate.value, (val) => {
if (props.dateRange) {
if (!Array.isArray(input.compVal.value)) input.compVal.value = []
input.compVal.value[0] = val
} else {
input.compVal.value = val
}
}, { immediate: false })
watch(() => toDate.value, (val) => {
if (props.dateRange) {
if (!Array.isArray(input.compVal.value)) input.compVal.value = [null]
input.compVal.value[1] = val
} else {
input.compVal.value = null
}
}, { immediate: false })
watch(() => input.compVal.value, (val, oldVal) => {
if (!oldVal) handleCompValChange()
}, { immediate: false })
onMounted(() => {
handleCompValChange()
setInputColor()
})
</script>
<style>
.vc-form-color {
--vc-accent-50: v-bind('twColors[50]');
--vc-accent-100: v-bind('twColors[100]');
--vc-accent-200: v-bind('twColors[200]');
--vc-accent-300: v-bind('twColors[300]');
--vc-accent-400: v-bind('twColors[400]');
--vc-accent-500: v-bind('twColors[500]');
--vc-accent-600: v-bind('twColors[600]');
--vc-accent-700: v-bind('twColors[700]');
--vc-accent-800: v-bind('twColors[800]');
--vc-accent-900: v-bind('twColors[900]');
}
</style>