mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 16:45:43 +00:00
2867a05c92
* use new httpkit runner * refactor out last httpkit changes * fix timeout defaults * fix wrong time input - closes #819
91 lines
2.2 KiB
Vue
91 lines
2.2 KiB
Vue
<template>
|
|
<div v-if="!inline" class="form-control w-full">
|
|
<label class="label">
|
|
<span class="label-text"> {{ label }}</span>
|
|
</label>
|
|
<VueDatePicker v-model="selected" :enable-time-picker="false" clearable :dark="isDark" />
|
|
</div>
|
|
<div v-else class="sm:grid sm:grid-cols-4 sm:items-start sm:gap-4">
|
|
<label class="label">
|
|
<span class="label-text"> {{ label }} </span>
|
|
</label>
|
|
<VueDatePicker v-model="selected" :enable-time-picker="false" clearable :dark="isDark" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// @ts-ignore
|
|
import VueDatePicker from "@vuepic/vue-datepicker";
|
|
import "@vuepic/vue-datepicker/dist/main.css";
|
|
import * as datelib from "~/lib/datelib/datelib";
|
|
const emit = defineEmits(["update:modelValue", "update:text"]);
|
|
|
|
const props = defineProps({
|
|
modelValue: {
|
|
type: Date as () => Date | string | null,
|
|
required: false,
|
|
default: null,
|
|
},
|
|
inline: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
label: {
|
|
type: String,
|
|
default: "Date",
|
|
},
|
|
});
|
|
|
|
const isDark = useIsDark();
|
|
|
|
const selected = computed<Date | null>({
|
|
get() {
|
|
// String
|
|
if (typeof props.modelValue === "string") {
|
|
// Empty string
|
|
if (props.modelValue === "") {
|
|
return null;
|
|
}
|
|
|
|
// Invalid Date string
|
|
if (props.modelValue === "Invalid Date") {
|
|
return null;
|
|
}
|
|
|
|
return datelib.parse(props.modelValue);
|
|
}
|
|
|
|
// Date
|
|
if (props.modelValue instanceof Date) {
|
|
if (props.modelValue.getFullYear() < 1000) {
|
|
return null;
|
|
}
|
|
|
|
if (isNaN(props.modelValue.getTime())) {
|
|
return null;
|
|
}
|
|
|
|
// Valid Date
|
|
return props.modelValue;
|
|
}
|
|
|
|
return null;
|
|
},
|
|
set(value: Date | null) {
|
|
console.debug("DatePicker: SET", value);
|
|
if (value instanceof Date) {
|
|
value = datelib.zeroTime(value);
|
|
emit("update:modelValue", value);
|
|
} else {
|
|
value = value ? datelib.zeroTime(new Date(value)) : null;
|
|
emit("update:modelValue", value);
|
|
}
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style class="scoped">
|
|
::-webkit-calendar-picker-indicator {
|
|
filter: invert(1);
|
|
}
|
|
</style>
|