mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-10 01:19:45 +08:00
8ce321456e
* Add time filter [SCI-6217] * Add datetime filter for inventory [SCI-6220] * Refactor components structure Co-authored-by: Anton <anton@scinote.net>
64 lines
No EOL
1.6 KiB
Vue
64 lines
No EOL
1.6 KiB
Vue
<template>
|
|
<div class="date-time-picker">
|
|
<DatePicker v-if="!timeOnly" @change="updateDate" :selectorId="`${this.selectorId}_Date`" />
|
|
<TimePicker v-if="!dateOnly" @change="updateTime" :selectorId="`${this.selectorId}_Time`" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TimePicker from 'vue/shared/time_picker.vue'
|
|
import DatePicker from 'vue/shared/date_picker.vue'
|
|
|
|
export default {
|
|
name: 'DateTimePicker',
|
|
props: {
|
|
dateOnly: { type: Boolean, default: false },
|
|
timeOnly: { type: Boolean, default: false },
|
|
selectorId: { type: String, required: true }
|
|
},
|
|
data() {
|
|
return {
|
|
date: '',
|
|
time: '',
|
|
datetime: ''
|
|
}
|
|
},
|
|
components: {
|
|
TimePicker,
|
|
DatePicker
|
|
},
|
|
methods: {
|
|
updateDate(value) {
|
|
this.date = value;
|
|
this.updateDateTime();
|
|
},
|
|
updateTime(value) {
|
|
this.time = value;
|
|
this.updateDateTime();
|
|
},
|
|
updateDateTime() {
|
|
this.recalcTimestamp();
|
|
this.$emit('change', this.datetime);
|
|
},
|
|
|
|
isValidTime() {
|
|
return /^([0-9]|0[0-9]|1[0-9]|2[0-3]):[0-5][0-9]$/.test(this.time);
|
|
},
|
|
isValidDate() {
|
|
return (this.date instanceof Date) && !isNaN(this.date.getTime());
|
|
},
|
|
recalcTimestamp() {
|
|
let date = this.timeOnly ? new Date() : this.date;
|
|
if (!this.isValidTime()) {
|
|
date.setHours(0);
|
|
date.setMinutes(0);
|
|
} else {
|
|
date.setHours(this.time.split(':')[0]);
|
|
date.setMinutes(this.time.split(':')[1]);
|
|
}
|
|
|
|
this.datetime = date
|
|
}
|
|
}
|
|
}
|
|
</script> |