primevue-mirror/components/calendar/Calendar.vue

3094 lines
111 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
<span ref="container" :id="id" :class="containerClass">
2022-09-14 11:26:01 +00:00
<input
v-if="!inline"
:ref="inputRef"
:id="inputId"
type="text"
role="combobox"
:class="['p-inputtext p-component', inputClass]"
:style="inputStyle"
:placeholder="placeholder"
2022-12-08 11:04:25 +00:00
autocomplete="off"
2022-09-14 11:26:01 +00:00
aria-autocomplete="none"
aria-haspopup="dialog"
:aria-expanded="overlayVisible"
:aria-controls="panelId"
:aria-labelledby="ariaLabelledby"
:aria-label="ariaLabel"
inputmode="none"
:disabled="disabled"
2022-12-08 11:04:25 +00:00
:readonly="!manualInput || readonly"
2022-09-14 11:26:01 +00:00
:tabindex="0"
@input="onInput"
2022-12-08 11:04:25 +00:00
@click="onInputClick"
2022-09-14 11:26:01 +00:00
@focus="onFocus"
@blur="onBlur"
@keydown="onKeyDown"
v-bind="inputProps"
/>
<CalendarButton
v-if="showIcon"
:icon="icon"
class="p-datepicker-trigger"
:disabled="disabled"
@click="onButtonClick"
type="button"
:aria-label="$primevue.config.locale.chooseDate"
aria-haspopup="dialog"
:aria-expanded="overlayVisible"
:aria-controls="panelId"
/>
2022-09-06 12:03:37 +00:00
<Portal :appendTo="appendTo" :disabled="inline">
<transition name="p-connected-overlay" @enter="onOverlayEnter($event)" @after-enter="onOverlayEnterComplete" @after-leave="onOverlayAfterLeave" @leave="onOverlayLeave">
2022-09-14 11:26:01 +00:00
<div
v-if="inline || overlayVisible"
:ref="overlayRef"
:id="panelId"
:class="panelStyleClass"
:style="panelStyle"
:role="inline ? null : 'dialog'"
:aria-modal="inline ? null : 'true'"
:aria-label="$primevue.config.locale.chooseDate"
@click="onOverlayClick"
@keydown="onOverlayKeyDown"
@mouseup="onOverlayMouseUp"
v-bind="panelProps"
>
2022-09-06 12:03:37 +00:00
<template v-if="!timeOnly">
<div class="p-datepicker-group-container">
2022-09-14 11:26:01 +00:00
<div v-for="(month, groupIndex) of months" :key="month.month + month.year" class="p-datepicker-group">
2022-09-06 12:03:37 +00:00
<div class="p-datepicker-header">
<slot name="header"></slot>
2022-09-14 11:26:01 +00:00
<button
v-show="showOtherMonths ? groupIndex === 0 : false"
v-ripple
class="p-datepicker-prev p-link"
@click="onPrevButtonClick"
type="button"
@keydown="onContainerButtonKeydown"
:disabled="disabled"
:aria-label="currentView === 'year' ? $primevue.config.locale.prevDecade : currentView === 'month' ? $primevue.config.locale.prevYear : $primevue.config.locale.prevMonth"
>
2022-12-08 11:04:25 +00:00
<span :class="['p-datepicker-prev-icon', previousIcon]" />
2022-09-06 12:03:37 +00:00
</button>
<div class="p-datepicker-title">
2022-09-14 11:26:01 +00:00
<button
v-if="currentView === 'date'"
type="button"
@click="switchToMonthView"
@keydown="onContainerButtonKeydown"
class="p-datepicker-month p-link"
:disabled="switchViewButtonDisabled"
:aria-label="$primevue.config.locale.chooseMonth"
>
{{ getMonthName(month.month) }}
2022-09-06 12:03:37 +00:00
</button>
2022-09-14 11:26:01 +00:00
<button
v-if="currentView !== 'year'"
type="button"
@click="switchToYearView"
@keydown="onContainerButtonKeydown"
class="p-datepicker-year p-link"
:disabled="switchViewButtonDisabled"
:aria-label="$primevue.config.locale.chooseYear"
>
{{ getYear(month) }}
2022-09-06 12:03:37 +00:00
</button>
2022-09-14 11:26:01 +00:00
<span v-if="currentView === 'year'" class="p-datepicker-decade">
<slot name="decade" :years="yearPickerValues"> {{ yearPickerValues[0] }} - {{ yearPickerValues[yearPickerValues.length - 1] }} </slot>
2022-09-06 12:03:37 +00:00
</span>
</div>
2022-09-14 11:26:01 +00:00
<button
v-show="showOtherMonths ? (numberOfMonths === 1 ? true : groupIndex === numberOfMonths - 1) : false"
v-ripple
class="p-datepicker-next p-link"
@click="onNextButtonClick"
type="button"
@keydown="onContainerButtonKeydown"
:disabled="disabled"
:aria-label="currentView === 'year' ? $primevue.config.locale.nextDecade : currentView === 'month' ? $primevue.config.locale.nextYear : $primevue.config.locale.nextMonth"
>
2022-12-08 11:04:25 +00:00
<span :class="['p-datepicker-next-icon', nextIcon]" />
2022-09-06 12:03:37 +00:00
</button>
</div>
2022-09-14 11:26:01 +00:00
<div v-if="currentView === 'date'" class="p-datepicker-calendar-container">
2022-09-06 12:03:37 +00:00
<table class="p-datepicker-calendar" role="grid">
<thead>
<tr>
2022-09-14 11:26:01 +00:00
<th v-if="showWeek" scope="col" class="p-datepicker-weekheader p-disabled">
<span>{{ weekHeaderLabel }}</span>
2022-09-06 12:03:37 +00:00
</th>
2022-09-14 11:26:01 +00:00
<th v-for="weekDay of weekDays" :key="weekDay" scope="col" :abbr="weekDay">
<span>{{ weekDay }}</span>
2022-09-06 12:03:37 +00:00
</th>
</tr>
</thead>
<tbody>
2022-09-14 11:26:01 +00:00
<tr v-for="(week, i) of month.dates" :key="week[0].day + '' + week[0].month">
2022-09-06 12:03:37 +00:00
<td v-if="showWeek" class="p-datepicker-weeknumber">
<span class="p-disabled">
2022-09-14 11:26:01 +00:00
<span v-if="month.weekNumbers[i] < 10" style="visibility: hidden">0</span>
{{ month.weekNumbers[i] }}
2022-09-06 12:03:37 +00:00
</span>
</td>
2022-09-14 11:26:01 +00:00
<td v-for="date of week" :key="date.day + '' + date.month" :aria-label="date.day" :class="{ 'p-datepicker-other-month': date.otherMonth, 'p-datepicker-today': date.today }">
<span
v-ripple
:class="{ 'p-highlight': isSelected(date), 'p-disabled': !date.selectable }"
@click="onDateSelect($event, date)"
draggable="false"
@keydown="onDateCellKeydown($event, date, groupIndex)"
:aria-selected="isSelected(date)"
>
<slot name="date" :date="date">{{ date.day }}</slot>
2022-09-06 12:03:37 +00:00
</span>
<div v-if="isSelected(date)" class="p-hidden-accessible" aria-live="polite">
2022-09-14 11:26:01 +00:00
{{ date.day }}
2022-09-06 12:03:37 +00:00
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
2022-09-14 11:26:01 +00:00
<div v-if="currentView === 'month'" class="p-monthpicker">
<span v-for="(m, i) of monthPickerValues" :key="m" v-ripple @click="onMonthSelect($event, i)" @keydown="onMonthCellKeydown($event, i)" class="p-monthpicker-month" :class="{ 'p-highlight': isMonthSelected(i) }">
{{ m }}
2022-09-06 12:03:37 +00:00
<div v-if="isMonthSelected(i)" class="p-hidden-accessible" aria-live="polite">
2022-09-14 11:26:01 +00:00
{{ m }}
2022-09-06 12:03:37 +00:00
</div>
</span>
</div>
2022-09-14 11:26:01 +00:00
<div v-if="currentView === 'year'" class="p-yearpicker">
<span v-for="y of yearPickerValues" :key="y" v-ripple @click="onYearSelect($event, y)" @keydown="onYearCellKeydown($event, y)" class="p-yearpicker-year" :class="{ 'p-highlight': isYearSelected(y) }">
{{ y }}
2022-09-06 12:03:37 +00:00
<div v-if="isYearSelected(y)" class="p-hidden-accessible" aria-live="polite">
2022-09-14 11:26:01 +00:00
{{ y }}
2022-09-06 12:03:37 +00:00
</div>
</span>
</div>
</template>
2022-09-14 11:26:01 +00:00
<div v-if="(showTime || timeOnly) && currentView === 'date'" class="p-timepicker">
2022-09-06 12:03:37 +00:00
<div class="p-hour-picker">
2022-09-14 11:26:01 +00:00
<button
v-ripple
class="p-link"
:aria-label="$primevue.config.locale.nextHour"
@mousedown="onTimePickerElementMouseDown($event, 0, 1)"
@mouseup="onTimePickerElementMouseUp($event)"
@keydown="onContainerButtonKeydown"
@mouseleave="onTimePickerElementMouseLeave()"
@keydown.enter="onTimePickerElementMouseDown($event, 0, 1)"
@keydown.space="onTimePickerElementMouseDown($event, 0, 1)"
@keyup.enter="onTimePickerElementMouseUp($event)"
@keyup.space="onTimePickerElementMouseUp($event)"
type="button"
>
2022-12-08 11:04:25 +00:00
<span :class="incrementIcon" />
2022-09-06 12:03:37 +00:00
</button>
2022-09-14 11:26:01 +00:00
<span>{{ formattedCurrentHour }}</span>
<button
v-ripple
class="p-link"
:aria-label="$primevue.config.locale.prevHour"
@mousedown="onTimePickerElementMouseDown($event, 0, -1)"
@mouseup="onTimePickerElementMouseUp($event)"
@keydown="onContainerButtonKeydown"
@mouseleave="onTimePickerElementMouseLeave()"
@keydown.enter="onTimePickerElementMouseDown($event, 0, -1)"
@keydown.space="onTimePickerElementMouseDown($event, 0, -1)"
@keyup.enter="onTimePickerElementMouseUp($event)"
@keyup.space="onTimePickerElementMouseUp($event)"
type="button"
>
2022-12-08 11:04:25 +00:00
<span :class="decrementIcon" />
2022-09-06 12:03:37 +00:00
</button>
</div>
<div class="p-separator">
2022-09-14 11:26:01 +00:00
<span>{{ timeSeparator }}</span>
2022-09-06 12:03:37 +00:00
</div>
<div class="p-minute-picker">
2022-09-14 11:26:01 +00:00
<button
v-ripple
class="p-link"
:aria-label="$primevue.config.locale.nextMinute"
@mousedown="onTimePickerElementMouseDown($event, 1, 1)"
@mouseup="onTimePickerElementMouseUp($event)"
@keydown="onContainerButtonKeydown"
:disabled="disabled"
@mouseleave="onTimePickerElementMouseLeave()"
@keydown.enter="onTimePickerElementMouseDown($event, 1, 1)"
@keydown.space="onTimePickerElementMouseDown($event, 1, 1)"
@keyup.enter="onTimePickerElementMouseUp($event)"
@keyup.space="onTimePickerElementMouseUp($event)"
type="button"
>
2022-12-08 11:04:25 +00:00
<span :class="incrementIcon" />
2022-09-06 12:03:37 +00:00
</button>
2022-09-14 11:26:01 +00:00
<span>{{ formattedCurrentMinute }}</span>
<button
v-ripple
class="p-link"
:aria-label="$primevue.config.locale.prevMinute"
@mousedown="onTimePickerElementMouseDown($event, 1, -1)"
@mouseup="onTimePickerElementMouseUp($event)"
@keydown="onContainerButtonKeydown"
:disabled="disabled"
@mouseleave="onTimePickerElementMouseLeave()"
@keydown.enter="onTimePickerElementMouseDown($event, 1, -1)"
@keydown.space="onTimePickerElementMouseDown($event, 1, -1)"
@keyup.enter="onTimePickerElementMouseUp($event)"
@keyup.space="onTimePickerElementMouseUp($event)"
type="button"
>
2022-12-08 11:04:25 +00:00
<span :class="decrementIcon" />
2022-09-06 12:03:37 +00:00
</button>
</div>
2022-09-14 11:26:01 +00:00
<div v-if="showSeconds" class="p-separator">
<span>{{ timeSeparator }}</span>
2022-09-06 12:03:37 +00:00
</div>
2022-09-14 11:26:01 +00:00
<div v-if="showSeconds" class="p-second-picker">
<button
v-ripple
class="p-link"
:aria-label="$primevue.config.locale.nextSecond"
@mousedown="onTimePickerElementMouseDown($event, 2, 1)"
@mouseup="onTimePickerElementMouseUp($event)"
@keydown="onContainerButtonKeydown"
:disabled="disabled"
@mouseleave="onTimePickerElementMouseLeave()"
@keydown.enter="onTimePickerElementMouseDown($event, 2, 1)"
@keydown.space="onTimePickerElementMouseDown($event, 2, 1)"
@keyup.enter="onTimePickerElementMouseUp($event)"
@keyup.space="onTimePickerElementMouseUp($event)"
type="button"
>
2022-12-08 11:04:25 +00:00
<span :class="incrementIcon" />
2022-09-06 12:03:37 +00:00
</button>
2022-09-14 11:26:01 +00:00
<span>{{ formattedCurrentSecond }}</span>
<button
v-ripple
class="p-link"
:aria-label="$primevue.config.locale.prevSecond"
@mousedown="onTimePickerElementMouseDown($event, 2, -1)"
@mouseup="onTimePickerElementMouseUp($event)"
@keydown="onContainerButtonKeydown"
:disabled="disabled"
@mouseleave="onTimePickerElementMouseLeave()"
@keydown.enter="onTimePickerElementMouseDown($event, 2, -1)"
@keydown.space="onTimePickerElementMouseDown($event, 2, -1)"
@keyup.enter="onTimePickerElementMouseUp($event)"
@keyup.space="onTimePickerElementMouseUp($event)"
type="button"
>
2022-12-08 11:04:25 +00:00
<span :class="decrementIcon" />
2022-09-06 12:03:37 +00:00
</button>
</div>
2022-09-14 11:26:01 +00:00
<div v-if="hourFormat == '12'" class="p-separator">
<span>{{ timeSeparator }}</span>
2022-09-06 12:03:37 +00:00
</div>
2022-09-14 11:26:01 +00:00
<div v-if="hourFormat == '12'" class="p-ampm-picker">
<button v-ripple class="p-link" :aria-label="$primevue.config.locale.am" @click="toggleAMPM($event)" type="button" :disabled="disabled">
2022-12-08 11:04:25 +00:00
<span :class="incrementIcon" />
2022-09-06 12:03:37 +00:00
</button>
2022-12-08 11:04:25 +00:00
<span>{{ pm ? $primevue.config.locale.pm : $primevue.config.locale.am }}</span>
2022-09-14 11:26:01 +00:00
<button v-ripple class="p-link" :aria-label="$primevue.config.locale.pm" @click="toggleAMPM($event)" type="button" :disabled="disabled">
2022-12-08 11:04:25 +00:00
<span :class="decrementIcon" />
2022-09-06 12:03:37 +00:00
</button>
</div>
</div>
2022-09-14 11:26:01 +00:00
<div v-if="showButtonBar" class="p-datepicker-buttonbar">
<CalendarButton type="button" :label="todayLabel" @click="onTodayButtonClick($event)" class="p-button-text" @keydown="onContainerButtonKeydown" />
<CalendarButton type="button" :label="clearLabel" @click="onClearButtonClick($event)" class="p-button-text" @keydown="onContainerButtonKeydown" />
2022-09-06 12:03:37 +00:00
</div>
<slot name="footer"></slot>
</div>
</transition>
</Portal>
</span>
</template>
<script>
import Button from 'primevue/button';
2022-12-08 11:04:25 +00:00
import OverlayEventBus from 'primevue/overlayeventbus';
2022-09-06 12:03:37 +00:00
import Portal from 'primevue/portal';
2022-12-08 11:04:25 +00:00
import Ripple from 'primevue/ripple';
import { ConnectedOverlayScrollHandler, DomHandler, UniqueComponentId, ZIndexUtils } from 'primevue/utils';
2022-09-06 12:03:37 +00:00
export default {
name: 'Calendar',
emits: ['show', 'hide', 'input', 'month-change', 'year-change', 'date-select', 'update:modelValue', 'today-click', 'clear-click', 'focus', 'blur', 'keydown'],
props: {
modelValue: null,
selectionMode: {
type: String,
default: 'single'
},
dateFormat: {
type: String,
default: null
},
inline: {
type: Boolean,
default: false
},
showOtherMonths: {
type: Boolean,
default: true
},
selectOtherMonths: {
type: Boolean,
default: false
},
showIcon: {
type: Boolean,
default: false
},
icon: {
type: String,
default: 'pi pi-calendar'
},
2022-12-08 11:04:25 +00:00
previousIcon: {
type: String,
default: 'pi pi-chevron-left'
},
nextIcon: {
type: String,
default: 'pi pi-chevron-right'
},
incrementIcon: {
type: String,
default: 'pi pi-chevron-up'
},
decrementIcon: {
type: String,
default: 'pi pi-chevron-down'
},
2022-09-06 12:03:37 +00:00
numberOfMonths: {
type: Number,
default: 1
},
responsiveOptions: Array,
view: {
type: String,
default: 'date'
},
touchUI: {
type: Boolean,
default: false
},
monthNavigator: {
type: Boolean,
default: false
},
yearNavigator: {
type: Boolean,
default: false
},
yearRange: {
type: String,
default: null
},
minDate: {
type: Date,
value: null
},
maxDate: {
type: Date,
value: null
},
disabledDates: {
type: Array,
value: null
},
disabledDays: {
type: Array,
value: null
},
maxDateCount: {
type: Number,
value: null
},
showOnFocus: {
type: Boolean,
default: true
},
autoZIndex: {
type: Boolean,
default: true
},
baseZIndex: {
type: Number,
default: 0
},
showButtonBar: {
type: Boolean,
default: false
},
shortYearCutoff: {
type: String,
default: '+10'
},
showTime: {
type: Boolean,
default: false
},
timeOnly: {
type: Boolean,
default: false
},
hourFormat: {
type: String,
default: '24'
},
stepHour: {
type: Number,
default: 1
},
stepMinute: {
type: Number,
default: 1
},
stepSecond: {
type: Number,
default: 1
},
showSeconds: {
type: Boolean,
default: false
},
hideOnDateTimeSelect: {
type: Boolean,
default: false
},
hideOnRangeSelection: {
type: Boolean,
default: false
},
timeSeparator: {
type: String,
default: ':'
},
showWeek: {
type: Boolean,
default: false
},
manualInput: {
type: Boolean,
default: true
},
appendTo: {
type: String,
default: 'body'
},
disabled: {
type: Boolean,
default: false
},
readonly: {
type: Boolean,
default: false
},
placeholder: {
type: String,
default: null
},
2022-09-14 11:26:01 +00:00
id: {
type: String,
default: null
},
inputId: {
type: String,
default: null
},
inputClass: {
type: String,
default: null
},
inputStyle: {
type: null,
default: null
},
inputProps: {
type: null,
default: null
},
panelClass: {
type: String,
default: null
},
panelStyle: {
type: null,
default: null
},
panelProps: {
type: null,
default: null
},
2022-09-06 12:03:37 +00:00
'aria-labelledby': {
type: String,
2022-09-14 11:26:01 +00:00
default: null
2022-09-06 12:03:37 +00:00
},
'aria-label': {
type: String,
default: null
}
},
navigationState: null,
timePickerChange: false,
scrollHandler: null,
outsideClickListener: null,
maskClickListener: null,
resizeListener: null,
overlay: null,
input: null,
mask: null,
timePickerTimer: null,
preventFocus: false,
typeUpdate: false,
2022-09-14 11:26:01 +00:00
data() {
return {
currentMonth: null,
currentYear: null,
currentHour: null,
currentMinute: null,
currentSecond: null,
pm: null,
focused: false,
overlayVisible: false,
currentView: this.view
};
},
watch: {
modelValue(newValue) {
this.updateCurrentMetaData();
if (!this.typeUpdate && !this.inline && this.input) {
this.input.value = this.formatValue(newValue);
}
this.typeUpdate = false;
},
showTime() {
this.updateCurrentMetaData();
},
months() {
if (this.overlay) {
if (!this.focused) {
if (this.inline) {
this.preventFocus = true;
}
setTimeout(this.updateFocus, 0);
}
}
},
numberOfMonths() {
this.destroyResponsiveStyleElement();
this.createResponsiveStyle();
},
responsiveOptions() {
this.destroyResponsiveStyleElement();
this.createResponsiveStyle();
},
currentView() {
Promise.resolve(null).then(() => this.alignOverlay());
}
},
2022-09-06 12:03:37 +00:00
created() {
this.updateCurrentMetaData();
},
mounted() {
this.createResponsiveStyle();
if (this.inline) {
this.overlay && this.overlay.setAttribute(this.attributeSelector, '');
if (!this.disabled) {
this.preventFocus = true;
this.initFocusableCell();
if (this.numberOfMonths === 1) {
this.overlay.style.width = DomHandler.getOuterWidth(this.$el) + 'px';
}
}
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
this.input.value = this.formatValue(this.modelValue);
}
},
updated() {
if (this.overlay) {
this.preventFocus = true;
this.updateFocus();
}
if (this.input && this.selectionStart != null && this.selectionEnd != null) {
this.input.selectionStart = this.selectionStart;
this.input.selectionEnd = this.selectionEnd;
this.selectionStart = null;
this.selectionEnd = null;
}
},
beforeUnmount() {
if (this.timePickerTimer) {
clearTimeout(this.timePickerTimer);
}
if (this.mask) {
this.destroyMask();
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this.destroyResponsiveStyleElement();
this.unbindOutsideClickListener();
this.unbindResizeListener();
if (this.scrollHandler) {
this.scrollHandler.destroy();
this.scrollHandler = null;
}
if (this.overlay && this.autoZIndex) {
ZIndexUtils.clear(this.overlay);
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this.overlay = null;
},
methods: {
isComparable() {
return this.modelValue != null && typeof this.modelValue !== 'string';
},
isSelected(dateMeta) {
if (!this.isComparable()) {
return false;
}
if (this.modelValue) {
if (this.isSingleSelection()) {
return this.isDateEquals(this.modelValue, dateMeta);
2022-09-14 11:26:01 +00:00
} else if (this.isMultipleSelection()) {
2022-09-06 12:03:37 +00:00
let selected = false;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
for (let date of this.modelValue) {
selected = this.isDateEquals(date, dateMeta);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (selected) {
break;
}
}
return selected;
2022-09-14 11:26:01 +00:00
} else if (this.isRangeSelection()) {
if (this.modelValue[1]) return this.isDateEquals(this.modelValue[0], dateMeta) || this.isDateEquals(this.modelValue[1], dateMeta) || this.isDateBetween(this.modelValue[0], this.modelValue[1], dateMeta);
2022-09-06 12:03:37 +00:00
else {
return this.isDateEquals(this.modelValue[0], dateMeta);
}
}
}
return false;
},
isMonthSelected(month) {
if (this.isComparable()) {
let value = this.isRangeSelection() ? this.modelValue[0] : this.modelValue;
2022-09-14 11:26:01 +00:00
return !this.isMultipleSelection() ? value.getMonth() === month && value.getFullYear() === this.currentYear : false;
2022-09-06 12:03:37 +00:00
}
return false;
},
isYearSelected(year) {
if (this.isComparable()) {
let value = this.isRangeSelection() ? this.modelValue[0] : this.modelValue;
2022-09-14 11:26:01 +00:00
return !this.isMultipleSelection() && this.isComparable() ? value.getFullYear() === year : false;
2022-09-06 12:03:37 +00:00
}
return false;
},
isDateEquals(value, dateMeta) {
2022-09-14 11:26:01 +00:00
if (value) return value.getDate() === dateMeta.day && value.getMonth() === dateMeta.month && value.getFullYear() === dateMeta.year;
else return false;
2022-09-06 12:03:37 +00:00
},
isDateBetween(start, end, dateMeta) {
let between = false;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (start && end) {
let date = new Date(dateMeta.year, dateMeta.month, dateMeta.day);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return start.getTime() <= date.getTime() && end.getTime() >= date.getTime();
}
return between;
},
getFirstDayOfMonthIndex(month, year) {
let day = new Date();
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
day.setDate(1);
day.setMonth(month);
day.setFullYear(year);
let dayIndex = day.getDay() + this.sundayIndex;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return dayIndex >= 7 ? dayIndex - 7 : dayIndex;
},
getDaysCountInMonth(month, year) {
return 32 - this.daylightSavingAdjust(new Date(year, month, 32)).getDate();
},
getDaysCountInPrevMonth(month, year) {
let prev = this.getPreviousMonthAndYear(month, year);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return this.getDaysCountInMonth(prev.month, prev.year);
},
getPreviousMonthAndYear(month, year) {
let m, y;
if (month === 0) {
m = 11;
y = year - 1;
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
m = month - 1;
y = year;
}
2022-09-14 11:26:01 +00:00
return { month: m, year: y };
2022-09-06 12:03:37 +00:00
},
getNextMonthAndYear(month, year) {
let m, y;
if (month === 11) {
m = 0;
y = year + 1;
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
m = month + 1;
y = year;
}
2022-09-14 11:26:01 +00:00
return { month: m, year: y };
2022-09-06 12:03:37 +00:00
},
daylightSavingAdjust(date) {
if (!date) {
return null;
}
date.setHours(date.getHours() > 12 ? date.getHours() + 2 : 0);
return date;
},
isToday(today, day, month, year) {
return today.getDate() === day && today.getMonth() === month && today.getFullYear() === year;
},
isSelectable(day, month, year, otherMonth) {
let validMin = true;
let validMax = true;
let validDate = true;
let validDay = true;
if (otherMonth && !this.selectOtherMonths) {
return false;
}
if (this.minDate) {
if (this.minDate.getFullYear() > year) {
validMin = false;
2022-09-14 11:26:01 +00:00
} else if (this.minDate.getFullYear() === year) {
2022-09-06 12:03:37 +00:00
if (this.minDate.getMonth() > month) {
validMin = false;
2022-09-14 11:26:01 +00:00
} else if (this.minDate.getMonth() === month) {
2022-09-06 12:03:37 +00:00
if (this.minDate.getDate() > day) {
validMin = false;
}
}
}
}
if (this.maxDate) {
if (this.maxDate.getFullYear() < year) {
validMax = false;
2022-09-14 11:26:01 +00:00
} else if (this.maxDate.getFullYear() === year) {
2022-09-06 12:03:37 +00:00
if (this.maxDate.getMonth() < month) {
validMax = false;
2022-09-14 11:26:01 +00:00
} else if (this.maxDate.getMonth() === month) {
2022-09-06 12:03:37 +00:00
if (this.maxDate.getDate() < day) {
validMax = false;
}
}
}
}
if (this.disabledDates) {
2022-09-14 11:26:01 +00:00
validDate = !this.isDateDisabled(day, month, year);
2022-09-06 12:03:37 +00:00
}
if (this.disabledDays) {
2022-09-14 11:26:01 +00:00
validDay = !this.isDayDisabled(day, month, year);
2022-09-06 12:03:37 +00:00
}
return validMin && validMax && validDate && validDay;
},
onOverlayEnter(el) {
el.setAttribute(this.attributeSelector, '');
if (this.autoZIndex) {
2022-09-14 11:26:01 +00:00
if (this.touchUI) ZIndexUtils.set('modal', el, this.baseZIndex || this.$primevue.config.zIndex.modal);
else ZIndexUtils.set('overlay', el, this.baseZIndex || this.$primevue.config.zIndex.overlay);
2022-09-06 12:03:37 +00:00
}
this.alignOverlay();
this.$emit('show');
},
onOverlayEnterComplete() {
this.bindOutsideClickListener();
this.bindScrollListener();
this.bindResizeListener();
},
onOverlayAfterLeave(el) {
if (this.autoZIndex) {
ZIndexUtils.clear(el);
}
},
onOverlayLeave() {
this.currentView = this.view;
this.unbindOutsideClickListener();
this.unbindScrollListener();
this.unbindResizeListener();
this.$emit('hide');
if (this.mask) {
this.disableModality();
}
this.overlay = null;
},
onPrevButtonClick(event) {
2022-09-14 11:26:01 +00:00
if (this.showOtherMonths) {
this.navigationState = { backward: true, button: true };
2022-09-06 12:03:37 +00:00
this.navBackward(event);
}
},
onNextButtonClick(event) {
2022-09-14 11:26:01 +00:00
if (this.showOtherMonths) {
this.navigationState = { backward: false, button: true };
2022-09-06 12:03:37 +00:00
this.navForward(event);
}
},
navBackward(event) {
event.preventDefault();
if (!this.isEnabled()) {
return;
}
if (this.currentView === 'month') {
this.decrementYear();
2022-09-14 11:26:01 +00:00
} else if (this.currentView === 'year') {
2022-09-06 12:03:37 +00:00
this.decrementDecade();
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
if (event.shiftKey) {
this.decrementYear();
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
if (this.currentMonth === 0) {
this.currentMonth = 11;
this.decrementYear();
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
this.currentMonth--;
}
2022-09-14 11:26:01 +00:00
this.$emit('month-change', { month: this.currentMonth + 1, year: this.currentYear });
2022-09-06 12:03:37 +00:00
}
}
},
navForward(event) {
event.preventDefault();
if (!this.isEnabled()) {
return;
}
if (this.currentView === 'month') {
this.incrementYear();
2022-09-14 11:26:01 +00:00
} else if (this.currentView === 'year') {
2022-09-06 12:03:37 +00:00
this.incrementDecade();
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
if (event.shiftKey) {
this.incrementYear();
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
if (this.currentMonth === 11) {
this.currentMonth = 0;
this.incrementYear();
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
this.currentMonth++;
}
2022-09-14 11:26:01 +00:00
this.$emit('month-change', { month: this.currentMonth + 1, year: this.currentYear });
2022-09-06 12:03:37 +00:00
}
}
},
decrementYear() {
this.currentYear--;
},
decrementDecade() {
this.currentYear = this.currentYear - 10;
},
incrementYear() {
this.currentYear++;
},
incrementDecade() {
this.currentYear = this.currentYear + 10;
},
switchToMonthView(event) {
this.currentView = 'month';
setTimeout(this.updateFocus, 0);
event.preventDefault();
},
switchToYearView(event) {
this.currentView = 'year';
setTimeout(this.updateFocus, 0);
event.preventDefault();
},
isEnabled() {
return !this.disabled && !this.readonly;
},
updateCurrentTimeMeta(date) {
let currentHour = date.getHours();
if (this.hourFormat === '12') {
this.pm = currentHour > 11;
2022-09-14 11:26:01 +00:00
if (currentHour >= 12) currentHour = currentHour == 12 ? 12 : currentHour - 12;
else currentHour = currentHour == 0 ? 12 : currentHour;
2022-09-06 12:03:37 +00:00
}
this.currentHour = Math.floor(currentHour / this.stepHour) * this.stepHour;
this.currentMinute = Math.floor(date.getMinutes() / this.stepMinute) * this.stepMinute;
this.currentSecond = Math.floor(date.getSeconds() / this.stepSecond) * this.stepSecond;
},
bindOutsideClickListener() {
if (!this.outsideClickListener) {
this.outsideClickListener = (event) => {
if (this.overlayVisible && this.isOutsideClicked(event)) {
this.overlayVisible = false;
}
};
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
document.addEventListener('mousedown', this.outsideClickListener);
}
},
unbindOutsideClickListener() {
if (this.outsideClickListener) {
document.removeEventListener('mousedown', this.outsideClickListener);
this.outsideClickListener = null;
}
},
bindScrollListener() {
if (!this.scrollHandler) {
this.scrollHandler = new ConnectedOverlayScrollHandler(this.$refs.container, () => {
if (this.overlayVisible) {
this.overlayVisible = false;
}
});
}
this.scrollHandler.bindScrollListener();
},
unbindScrollListener() {
if (this.scrollHandler) {
this.scrollHandler.unbindScrollListener();
}
},
bindResizeListener() {
if (!this.resizeListener) {
this.resizeListener = () => {
if (this.overlayVisible && !DomHandler.isTouchDevice()) {
this.overlayVisible = false;
}
};
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
window.addEventListener('resize', this.resizeListener);
}
},
unbindResizeListener() {
if (this.resizeListener) {
window.removeEventListener('resize', this.resizeListener);
this.resizeListener = null;
}
},
isOutsideClicked(event) {
2022-09-14 11:26:01 +00:00
return !(this.$el.isSameNode(event.target) || this.isNavIconClicked(event) || this.$el.contains(event.target) || (this.overlay && this.overlay.contains(event.target)));
2022-09-06 12:03:37 +00:00
},
isNavIconClicked(event) {
2022-09-14 11:26:01 +00:00
return (
DomHandler.hasClass(event.target, 'p-datepicker-prev') ||
DomHandler.hasClass(event.target, 'p-datepicker-prev-icon') ||
DomHandler.hasClass(event.target, 'p-datepicker-next') ||
DomHandler.hasClass(event.target, 'p-datepicker-next-icon')
);
2022-09-06 12:03:37 +00:00
},
alignOverlay() {
if (this.touchUI) {
this.enableModality();
2022-09-14 11:26:01 +00:00
} else if (this.overlay) {
2022-09-06 12:03:37 +00:00
if (this.appendTo === 'self' || this.inline) {
DomHandler.relativePosition(this.overlay, this.$el);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
if (this.view === 'date') {
this.overlay.style.width = DomHandler.getOuterWidth(this.overlay) + 'px';
this.overlay.style.minWidth = DomHandler.getOuterWidth(this.$el) + 'px';
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
this.overlay.style.width = DomHandler.getOuterWidth(this.$el) + 'px';
}
DomHandler.absolutePosition(this.overlay, this.$el);
}
}
},
onButtonClick() {
if (this.isEnabled()) {
if (!this.overlayVisible) {
this.input.focus();
this.overlayVisible = true;
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
this.overlayVisible = false;
}
}
},
isDateDisabled(day, month, year) {
if (this.disabledDates) {
for (let disabledDate of this.disabledDates) {
if (disabledDate.getFullYear() === year && disabledDate.getMonth() === month && disabledDate.getDate() === day) {
return true;
}
}
}
return false;
},
isDayDisabled(day, month, year) {
if (this.disabledDays) {
let weekday = new Date(year, month, day);
let weekdayNumber = weekday.getDay();
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return this.disabledDays.indexOf(weekdayNumber) !== -1;
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return false;
},
onMonthDropdownChange(value) {
this.currentMonth = parseInt(value);
2022-09-14 11:26:01 +00:00
this.$emit('month-change', { month: this.currentMonth + 1, year: this.currentYear });
2022-09-06 12:03:37 +00:00
},
onYearDropdownChange(value) {
this.currentYear = parseInt(value);
2022-09-14 11:26:01 +00:00
this.$emit('year-change', { month: this.currentMonth + 1, year: this.currentYear });
2022-09-06 12:03:37 +00:00
},
onDateSelect(event, dateMeta) {
if (this.disabled || !dateMeta.selectable) {
return;
}
2022-09-14 11:26:01 +00:00
DomHandler.find(this.overlay, '.p-datepicker-calendar td span:not(.p-disabled)').forEach((cell) => (cell.tabIndex = -1));
2022-09-06 12:03:37 +00:00
if (event) {
event.currentTarget.focus();
}
if (this.isMultipleSelection() && this.isSelected(dateMeta)) {
2022-09-14 11:26:01 +00:00
let newValue = this.modelValue.filter((date) => !this.isDateEquals(date, dateMeta));
2022-09-06 12:03:37 +00:00
this.updateModel(newValue);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
if (this.shouldSelectDate(dateMeta)) {
if (dateMeta.otherMonth) {
this.currentMonth = dateMeta.month;
this.currentYear = dateMeta.year;
this.selectDate(dateMeta);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
this.selectDate(dateMeta);
}
}
}
if (this.isSingleSelection() && (!this.showTime || this.hideOnDateTimeSelect)) {
setTimeout(() => {
2022-12-08 11:04:25 +00:00
if (this.input) {
this.input.focus();
}
2022-09-06 12:03:37 +00:00
this.overlayVisible = false;
}, 150);
}
},
selectDate(dateMeta) {
let date = new Date(dateMeta.year, dateMeta.month, dateMeta.day);
if (this.showTime) {
2022-09-14 11:26:01 +00:00
if (this.hourFormat === '12' && this.pm && this.currentHour != 12) date.setHours(this.currentHour + 12);
else date.setHours(this.currentHour);
2022-09-06 12:03:37 +00:00
date.setMinutes(this.currentMinute);
date.setSeconds(this.currentSecond);
}
if (this.minDate && this.minDate > date) {
date = this.minDate;
this.currentHour = date.getHours();
this.currentMinute = date.getMinutes();
this.currentSecond = date.getSeconds();
}
if (this.maxDate && this.maxDate < date) {
date = this.maxDate;
this.currentHour = date.getHours();
this.currentMinute = date.getMinutes();
this.currentSecond = date.getSeconds();
}
let modelVal = null;
if (this.isSingleSelection()) {
modelVal = date;
2022-09-14 11:26:01 +00:00
} else if (this.isMultipleSelection()) {
2022-09-06 12:03:37 +00:00
modelVal = this.modelValue ? [...this.modelValue, date] : [date];
2022-09-14 11:26:01 +00:00
} else if (this.isRangeSelection()) {
2022-09-06 12:03:37 +00:00
if (this.modelValue && this.modelValue.length) {
let startDate = this.modelValue[0];
let endDate = this.modelValue[1];
if (!endDate && date.getTime() >= startDate.getTime()) {
endDate = date;
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
startDate = date;
endDate = null;
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
modelVal = [startDate, endDate];
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
modelVal = [date, null];
}
}
if (modelVal !== null) {
this.updateModel(modelVal);
}
if (this.isRangeSelection() && this.hideOnRangeSelection && modelVal[1] !== null) {
setTimeout(() => {
this.overlayVisible = false;
}, 150);
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this.$emit('date-select', date);
},
updateModel(value) {
this.$emit('update:modelValue', value);
},
shouldSelectDate() {
2022-09-14 11:26:01 +00:00
if (this.isMultipleSelection()) return this.maxDateCount != null ? this.maxDateCount > (this.modelValue ? this.modelValue.length : 0) : true;
else return true;
2022-09-06 12:03:37 +00:00
},
isSingleSelection() {
return this.selectionMode === 'single';
},
isRangeSelection() {
return this.selectionMode === 'range';
},
isMultipleSelection() {
return this.selectionMode === 'multiple';
},
formatValue(value) {
if (typeof value === 'string') {
return value;
}
let formattedValue = '';
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (value) {
try {
if (this.isSingleSelection()) {
formattedValue = this.formatDateTime(value);
2022-09-14 11:26:01 +00:00
} else if (this.isMultipleSelection()) {
for (let i = 0; i < value.length; i++) {
2022-09-06 12:03:37 +00:00
let dateAsString = this.formatDateTime(value[i]);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
formattedValue += dateAsString;
2022-09-14 11:26:01 +00:00
if (i !== value.length - 1) {
2022-09-06 12:03:37 +00:00
formattedValue += ', ';
}
}
2022-09-14 11:26:01 +00:00
} else if (this.isRangeSelection()) {
2022-09-06 12:03:37 +00:00
if (value && value.length) {
let startDate = value[0];
let endDate = value[1];
formattedValue = this.formatDateTime(startDate);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (endDate) {
formattedValue += ' - ' + this.formatDateTime(endDate);
}
}
}
2022-09-14 11:26:01 +00:00
} catch (err) {
2022-09-06 12:03:37 +00:00
formattedValue = value;
}
}
return formattedValue;
},
formatDateTime(date) {
let formattedValue = null;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (date) {
2022-09-14 11:26:01 +00:00
if (this.timeOnly) {
2022-09-06 12:03:37 +00:00
formattedValue = this.formatTime(date);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
formattedValue = this.formatDate(date, this.datePattern);
2022-09-14 11:26:01 +00:00
if (this.showTime) {
2022-09-06 12:03:37 +00:00
formattedValue += ' ' + this.formatTime(date);
}
}
}
return formattedValue;
},
formatDate(date, format) {
if (!date) {
return '';
}
let iFormat;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
const lookAhead = (match) => {
2022-09-14 11:26:01 +00:00
const matches = iFormat + 1 < format.length && format.charAt(iFormat + 1) === match;
if (matches) {
iFormat++;
}
return matches;
},
2022-09-06 12:03:37 +00:00
formatNumber = (match, value, len) => {
let num = '' + value;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (lookAhead(match)) {
while (num.length < len) {
num = '0' + num;
}
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return num;
},
formatName = (match, value, shortNames, longNames) => {
2022-09-14 11:26:01 +00:00
return lookAhead(match) ? longNames[value] : shortNames[value];
2022-09-06 12:03:37 +00:00
};
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
let output = '';
let literal = false;
if (date) {
for (iFormat = 0; iFormat < format.length; iFormat++) {
if (literal) {
2022-09-14 11:26:01 +00:00
if (format.charAt(iFormat) === "'" && !lookAhead("'")) {
2022-09-06 12:03:37 +00:00
literal = false;
} else {
output += format.charAt(iFormat);
}
} else {
switch (format.charAt(iFormat)) {
case 'd':
output += formatNumber('d', date.getDate(), 2);
break;
case 'D':
output += formatName('D', date.getDay(), this.$primevue.config.locale.dayNamesShort, this.$primevue.config.locale.dayNames);
break;
case 'o':
2022-09-14 11:26:01 +00:00
output += formatNumber('o', Math.round((new Date(date.getFullYear(), date.getMonth(), date.getDate()).getTime() - new Date(date.getFullYear(), 0, 0).getTime()) / 86400000), 3);
2022-09-06 12:03:37 +00:00
break;
case 'm':
output += formatNumber('m', date.getMonth() + 1, 2);
break;
case 'M':
2022-09-14 11:26:01 +00:00
output += formatName('M', date.getMonth(), this.$primevue.config.locale.monthNamesShort, this.$primevue.config.locale.monthNames);
2022-09-06 12:03:37 +00:00
break;
case 'y':
output += lookAhead('y') ? date.getFullYear() : (date.getFullYear() % 100 < 10 ? '0' : '') + (date.getFullYear() % 100);
break;
case '@':
output += date.getTime();
break;
case '!':
output += date.getTime() * 10000 + this.ticksTo1970;
break;
2022-09-14 11:26:01 +00:00
case "'":
if (lookAhead("'")) {
output += "'";
2022-09-06 12:03:37 +00:00
} else {
literal = true;
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
break;
default:
output += format.charAt(iFormat);
}
}
}
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return output;
},
formatTime(date) {
if (!date) {
return '';
}
let output = '';
let hours = date.getHours();
let minutes = date.getMinutes();
let seconds = date.getSeconds();
if (this.hourFormat === '12' && hours > 11 && hours !== 12) {
hours -= 12;
}
if (this.hourFormat === '12') {
2022-09-14 11:26:01 +00:00
output += hours === 0 ? 12 : hours < 10 ? '0' + hours : hours;
} else {
output += hours < 10 ? '0' + hours : hours;
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
output += ':';
2022-09-14 11:26:01 +00:00
output += minutes < 10 ? '0' + minutes : minutes;
2022-09-06 12:03:37 +00:00
if (this.showSeconds) {
output += ':';
2022-09-14 11:26:01 +00:00
output += seconds < 10 ? '0' + seconds : seconds;
2022-09-06 12:03:37 +00:00
}
if (this.hourFormat === '12') {
2022-12-08 11:04:25 +00:00
output += date.getHours() > 11 ? ` ${this.$primevue.config.locale.pm}` : ` ${this.$primevue.config.locale.am}`;
2022-09-06 12:03:37 +00:00
}
return output;
},
onTodayButtonClick(event) {
let date = new Date();
let dateMeta = {
day: date.getDate(),
month: date.getMonth(),
year: date.getFullYear(),
otherMonth: date.getMonth() !== this.currentMonth || date.getFullYear() !== this.currentYear,
today: true,
selectable: true
};
this.onDateSelect(null, dateMeta);
this.$emit('today-click', date);
event.preventDefault();
},
onClearButtonClick(event) {
this.updateModel(null);
this.overlayVisible = false;
this.$emit('clear-click', event);
event.preventDefault();
},
onTimePickerElementMouseDown(event, type, direction) {
if (this.isEnabled()) {
this.repeat(event, null, type, direction);
event.preventDefault();
}
},
onTimePickerElementMouseUp(event) {
if (this.isEnabled()) {
this.clearTimePickerTimer();
this.updateModelTime();
event.preventDefault();
}
},
onTimePickerElementMouseLeave() {
this.clearTimePickerTimer();
},
repeat(event, interval, type, direction) {
2022-09-14 11:26:01 +00:00
let i = interval || 500;
2022-09-06 12:03:37 +00:00
this.clearTimePickerTimer();
this.timePickerTimer = setTimeout(() => {
this.repeat(event, 100, type, direction);
}, i);
2022-09-14 11:26:01 +00:00
switch (type) {
2022-09-06 12:03:37 +00:00
case 0:
2022-09-14 11:26:01 +00:00
if (direction === 1) this.incrementHour(event);
else this.decrementHour(event);
break;
2022-09-06 12:03:37 +00:00
case 1:
2022-09-14 11:26:01 +00:00
if (direction === 1) this.incrementMinute(event);
else this.decrementMinute(event);
break;
2022-09-06 12:03:37 +00:00
case 2:
2022-09-14 11:26:01 +00:00
if (direction === 1) this.incrementSecond(event);
else this.decrementSecond(event);
break;
2022-09-06 12:03:37 +00:00
}
},
convertTo24Hour(hours, pm) {
if (this.hourFormat == '12') {
if (hours === 12) {
2022-09-14 11:26:01 +00:00
return pm ? 12 : 0;
2022-09-06 12:03:37 +00:00
} else {
2022-09-14 11:26:01 +00:00
return pm ? hours + 12 : hours;
2022-09-06 12:03:37 +00:00
}
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return hours;
},
validateTime(hour, minute, second, pm) {
let value = this.isComparable() ? this.modelValue : this.viewDate;
const convertedHour = this.convertTo24Hour(hour, pm);
if (this.isRangeSelection()) {
value = this.modelValue[1] || this.modelValue[0];
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.isMultipleSelection()) {
value = this.modelValue[this.modelValue.length - 1];
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
const valueDateString = value ? value.toDateString() : null;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.minDate && valueDateString && this.minDate.toDateString() === valueDateString) {
if (this.minDate.getHours() > convertedHour) {
return false;
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.minDate.getHours() === convertedHour) {
if (this.minDate.getMinutes() > minute) {
return false;
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.minDate.getMinutes() === minute) {
if (this.minDate.getSeconds() > second) {
return false;
}
}
}
}
if (this.maxDate && valueDateString && this.maxDate.toDateString() === valueDateString) {
if (this.maxDate.getHours() < convertedHour) {
return false;
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.maxDate.getHours() === convertedHour) {
if (this.maxDate.getMinutes() < minute) {
return false;
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.maxDate.getMinutes() === minute) {
if (this.maxDate.getSeconds() < second) {
return false;
}
}
}
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return true;
},
incrementHour(event) {
let prevHour = this.currentHour;
let newHour = this.currentHour + this.stepHour;
let newPM = this.pm;
2022-09-14 11:26:01 +00:00
if (this.hourFormat == '24') newHour = newHour >= 24 ? newHour - 24 : newHour;
2022-09-06 12:03:37 +00:00
else if (this.hourFormat == '12') {
// Before the AM/PM break, now after
if (prevHour < 12 && newHour > 11) {
2022-09-14 11:26:01 +00:00
newPM = !this.pm;
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
newHour = newHour >= 13 ? newHour - 12 : newHour;
2022-09-06 12:03:37 +00:00
}
if (this.validateTime(newHour, this.currentMinute, this.currentSecond, newPM)) {
this.currentHour = newHour;
this.pm = newPM;
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
event.preventDefault();
},
decrementHour(event) {
let newHour = this.currentHour - this.stepHour;
let newPM = this.pm;
2022-09-14 11:26:01 +00:00
if (this.hourFormat == '24') newHour = newHour < 0 ? 24 + newHour : newHour;
2022-09-06 12:03:37 +00:00
else if (this.hourFormat == '12') {
// If we were at noon/midnight, then switch
if (this.currentHour === 12) {
newPM = !this.pm;
}
2022-09-14 11:26:01 +00:00
newHour = newHour <= 0 ? 12 + newHour : newHour;
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.validateTime(newHour, this.currentMinute, this.currentSecond, newPM)) {
this.currentHour = newHour;
this.pm = newPM;
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
event.preventDefault();
},
incrementMinute(event) {
let newMinute = this.currentMinute + this.stepMinute;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.validateTime(this.currentHour, newMinute, this.currentSecond, true)) {
2022-09-14 11:26:01 +00:00
this.currentMinute = newMinute > 59 ? newMinute - 60 : newMinute;
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
event.preventDefault();
},
decrementMinute(event) {
let newMinute = this.currentMinute - this.stepMinute;
2022-09-14 11:26:01 +00:00
newMinute = newMinute < 0 ? 60 + newMinute : newMinute;
2022-09-06 12:03:37 +00:00
if (this.validateTime(this.currentHour, newMinute, this.currentSecond, true)) {
this.currentMinute = newMinute;
}
event.preventDefault();
},
incrementSecond(event) {
let newSecond = this.currentSecond + this.stepSecond;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.validateTime(this.currentHour, this.currentMinute, newSecond, true)) {
2022-09-14 11:26:01 +00:00
this.currentSecond = newSecond > 59 ? newSecond - 60 : newSecond;
2022-09-06 12:03:37 +00:00
}
event.preventDefault();
},
decrementSecond(event) {
let newSecond = this.currentSecond - this.stepSecond;
2022-09-14 11:26:01 +00:00
newSecond = newSecond < 0 ? 60 + newSecond : newSecond;
2022-09-06 12:03:37 +00:00
if (this.validateTime(this.currentHour, this.currentMinute, newSecond, true)) {
this.currentSecond = newSecond;
}
event.preventDefault();
},
updateModelTime() {
this.timePickerChange = true;
let value = this.isComparable() ? this.modelValue : this.viewDate;
if (this.isRangeSelection()) {
value = this.modelValue[1] || this.modelValue[0];
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.isMultipleSelection()) {
value = this.modelValue[this.modelValue.length - 1];
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
value = value ? new Date(value.getTime()) : new Date();
if (this.hourFormat == '12') {
2022-09-14 11:26:01 +00:00
if (this.currentHour === 12) value.setHours(this.pm ? 12 : 0);
else value.setHours(this.pm ? this.currentHour + 12 : this.currentHour);
} else {
2022-09-06 12:03:37 +00:00
value.setHours(this.currentHour);
}
value.setMinutes(this.currentMinute);
value.setSeconds(this.currentSecond);
if (this.isRangeSelection()) {
2022-09-14 11:26:01 +00:00
if (this.modelValue[1]) value = [this.modelValue[0], value];
else value = [value, null];
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
if (this.isMultipleSelection()) {
2022-09-06 12:03:37 +00:00
value = [...this.modelValue.slice(0, -1), value];
}
this.updateModel(value);
this.$emit('date-select', value);
2022-09-14 11:26:01 +00:00
setTimeout(() => (this.timePickerChange = false), 0);
2022-09-06 12:03:37 +00:00
},
toggleAMPM(event) {
2022-12-08 11:04:25 +00:00
const validHour = this.validateTime(this.currentHour, this.currentMinute, this.currentSecond, !this.pm);
if (!validHour && (this.maxDate || this.minDate)) return;
2022-09-06 12:03:37 +00:00
this.pm = !this.pm;
this.updateModelTime();
event.preventDefault();
},
clearTimePickerTimer() {
if (this.timePickerTimer) {
clearInterval(this.timePickerTimer);
}
},
onMonthSelect(event, index) {
if (this.view === 'month') {
2022-09-14 11:26:01 +00:00
this.onDateSelect(event, { year: this.currentYear, month: index, day: 1, selectable: true });
} else {
2022-09-06 12:03:37 +00:00
this.currentMonth = index;
this.currentView = 'date';
2022-09-14 11:26:01 +00:00
this.$emit('month-change', { month: this.currentMonth + 1, year: this.currentYear });
2022-09-06 12:03:37 +00:00
}
setTimeout(this.updateFocus, 0);
},
onYearSelect(event, year) {
if (this.view === 'year') {
2022-09-14 11:26:01 +00:00
this.onDateSelect(event, { year: year, month: 0, day: 1, selectable: true });
} else {
2022-09-06 12:03:37 +00:00
this.currentYear = year;
this.currentView = 'month';
2022-09-14 11:26:01 +00:00
this.$emit('year-change', { month: this.currentMonth + 1, year: this.currentYear });
2022-09-06 12:03:37 +00:00
}
setTimeout(this.updateFocus, 0);
},
enableModality() {
if (!this.mask) {
this.mask = document.createElement('div');
this.mask.style.zIndex = String(parseInt(this.overlay.style.zIndex, 10) - 1);
DomHandler.addMultipleClasses(this.mask, 'p-datepicker-mask p-datepicker-mask-scrollblocker p-component-overlay p-component-overlay-enter');
this.maskClickListener = () => {
this.overlayVisible = false;
};
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this.mask.addEventListener('click', this.maskClickListener);
document.body.appendChild(this.mask);
DomHandler.addClass(document.body, 'p-overflow-hidden');
}
},
disableModality() {
if (this.mask) {
DomHandler.addClass(this.mask, 'p-component-overlay-leave');
this.mask.addEventListener('animationend', () => {
this.destroyMask();
});
}
},
destroyMask() {
this.mask.removeEventListener('click', this.maskClickListener);
this.maskClickListener = null;
document.body.removeChild(this.mask);
this.mask = null;
let bodyChildren = document.body.children;
let hasBlockerMasks;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
for (let i = 0; i < bodyChildren.length; i++) {
let bodyChild = bodyChildren[i];
2022-09-14 11:26:01 +00:00
if (DomHandler.hasClass(bodyChild, 'p-datepicker-mask-scrollblocker')) {
2022-09-06 12:03:37 +00:00
hasBlockerMasks = true;
break;
}
}
if (!hasBlockerMasks) {
DomHandler.removeClass(document.body, 'p-overflow-hidden');
}
},
updateCurrentMetaData() {
const viewDate = this.viewDate;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this.currentMonth = viewDate.getMonth();
this.currentYear = viewDate.getFullYear();
if (this.showTime || this.timeOnly) {
this.updateCurrentTimeMeta(viewDate);
}
},
isValidSelection(value) {
if (value == null) {
return true;
}
let isValid = true;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.isSingleSelection()) {
if (!this.isSelectable(value.getDate(), value.getMonth(), value.getFullYear(), false)) {
isValid = false;
}
2022-09-14 11:26:01 +00:00
} else if (value.every((v) => this.isSelectable(v.getDate(), v.getMonth(), v.getFullYear(), false))) {
2022-09-06 12:03:37 +00:00
if (this.isRangeSelection()) {
isValid = value.length > 1 && value[1] > value[0] ? true : false;
}
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
return isValid;
},
parseValue(text) {
if (!text || text.trim().length === 0) {
return null;
}
let value;
if (this.isSingleSelection()) {
value = this.parseDateTime(text);
2022-09-14 11:26:01 +00:00
} else if (this.isMultipleSelection()) {
2022-09-06 12:03:37 +00:00
let tokens = text.split(',');
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
value = [];
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
for (let token of tokens) {
value.push(this.parseDateTime(token.trim()));
}
2022-09-14 11:26:01 +00:00
} else if (this.isRangeSelection()) {
2022-09-06 12:03:37 +00:00
let tokens = text.split(' - ');
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
value = [];
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
for (let i = 0; i < tokens.length; i++) {
value[i] = this.parseDateTime(tokens[i].trim());
}
}
return value;
},
parseDateTime(text) {
let date;
let parts = text.split(' ');
if (this.timeOnly) {
date = new Date();
this.populateTime(date, parts[0], parts[1]);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
const dateFormat = this.datePattern;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.showTime) {
date = this.parseDate(parts[0], dateFormat);
this.populateTime(date, parts[1], parts[2]);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
date = this.parseDate(text, dateFormat);
}
}
return date;
},
populateTime(value, timeString, ampm) {
if (this.hourFormat == '12' && !ampm) {
throw 'Invalid Time';
}
2022-12-08 11:04:25 +00:00
this.pm = ampm === this.$primevue.config.locale.am || ampm === this.$primevue.config.locale.am.toLowerCase();
2022-09-06 12:03:37 +00:00
let time = this.parseTime(timeString);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
value.setHours(time.hour);
value.setMinutes(time.minute);
value.setSeconds(time.second);
},
parseTime(value) {
let tokens = value.split(':');
let validTokenLength = this.showSeconds ? 3 : 2;
2022-09-14 11:26:01 +00:00
let regex = /^[0-9][0-9]$/;
2022-09-06 12:03:37 +00:00
if (tokens.length !== validTokenLength || !tokens[0].match(regex) || !tokens[1].match(regex) || (this.showSeconds && !tokens[2].match(regex))) {
2022-09-14 11:26:01 +00:00
throw 'Invalid time';
2022-09-06 12:03:37 +00:00
}
let h = parseInt(tokens[0]);
let m = parseInt(tokens[1]);
let s = this.showSeconds ? parseInt(tokens[2]) : null;
if (isNaN(h) || isNaN(m) || h > 23 || m > 59 || (this.hourFormat == '12' && h > 12) || (this.showSeconds && (isNaN(s) || s > 59))) {
2022-09-14 11:26:01 +00:00
throw 'Invalid time';
} else {
2022-09-06 12:03:37 +00:00
if (this.hourFormat == '12' && h !== 12 && this.pm) {
2022-09-14 11:26:01 +00:00
h += 12;
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
return { hour: h, minute: m, second: s };
2022-09-06 12:03:37 +00:00
}
},
parseDate(value, format) {
if (format == null || value == null) {
2022-09-14 11:26:01 +00:00
throw 'Invalid arguments';
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
value = typeof value === 'object' ? value.toString() : value + '';
if (value === '') {
2022-09-06 12:03:37 +00:00
return null;
}
2022-09-14 11:26:01 +00:00
let iFormat,
dim,
extra,
iValue = 0,
shortYearCutoff = typeof this.shortYearCutoff !== 'string' ? this.shortYearCutoff : (new Date().getFullYear() % 100) + parseInt(this.shortYearCutoff, 10),
year = -1,
month = -1,
day = -1,
doy = -1,
literal = false,
date,
lookAhead = (match) => {
let matches = iFormat + 1 < format.length && format.charAt(iFormat + 1) === match;
2022-09-06 12:03:37 +00:00
2022-09-14 11:26:01 +00:00
if (matches) {
iFormat++;
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
return matches;
},
getNumber = (match) => {
let isDoubled = lookAhead(match),
size = match === '@' ? 14 : match === '!' ? 20 : match === 'y' && isDoubled ? 4 : match === 'o' ? 3 : 2,
minSize = match === 'y' ? size : 1,
digits = new RegExp('^\\d{' + minSize + ',' + size + '}'),
num = value.substring(iValue).match(digits);
if (!num) {
throw 'Missing number at position ' + iValue;
}
iValue += num[0].length;
return parseInt(num[0], 10);
},
getName = (match, shortNames, longNames) => {
let index = -1;
let arr = lookAhead(match) ? longNames : shortNames;
let names = [];
for (let i = 0; i < arr.length; i++) {
names.push([i, arr[i]]);
}
names.sort((a, b) => {
return -(a[1].length - b[1].length);
});
for (let i = 0; i < names.length; i++) {
let name = names[i][1];
if (value.substr(iValue, name.length).toLowerCase() === name.toLowerCase()) {
index = names[i][0];
iValue += name.length;
break;
}
}
if (index !== -1) {
return index + 1;
} else {
throw 'Unknown name at position ' + iValue;
}
},
checkLiteral = () => {
if (value.charAt(iValue) !== format.charAt(iFormat)) {
throw 'Unexpected literal at position ' + iValue;
}
iValue++;
};
2022-09-06 12:03:37 +00:00
if (this.currentView === 'month') {
day = 1;
}
for (iFormat = 0; iFormat < format.length; iFormat++) {
if (literal) {
if (format.charAt(iFormat) === "'" && !lookAhead("'")) {
literal = false;
} else {
checkLiteral();
}
} else {
switch (format.charAt(iFormat)) {
2022-09-14 11:26:01 +00:00
case 'd':
day = getNumber('d');
2022-09-06 12:03:37 +00:00
break;
2022-09-14 11:26:01 +00:00
case 'D':
getName('D', this.$primevue.config.locale.dayNamesShort, this.$primevue.config.locale.dayNames);
2022-09-06 12:03:37 +00:00
break;
2022-09-14 11:26:01 +00:00
case 'o':
doy = getNumber('o');
2022-09-06 12:03:37 +00:00
break;
2022-09-14 11:26:01 +00:00
case 'm':
month = getNumber('m');
2022-09-06 12:03:37 +00:00
break;
2022-09-14 11:26:01 +00:00
case 'M':
month = getName('M', this.$primevue.config.locale.monthNamesShort, this.$primevue.config.locale.monthNames);
2022-09-06 12:03:37 +00:00
break;
2022-09-14 11:26:01 +00:00
case 'y':
year = getNumber('y');
2022-09-06 12:03:37 +00:00
break;
2022-09-14 11:26:01 +00:00
case '@':
date = new Date(getNumber('@'));
2022-09-06 12:03:37 +00:00
year = date.getFullYear();
month = date.getMonth() + 1;
day = date.getDate();
break;
2022-09-14 11:26:01 +00:00
case '!':
date = new Date((getNumber('!') - this.ticksTo1970) / 10000);
2022-09-06 12:03:37 +00:00
year = date.getFullYear();
month = date.getMonth() + 1;
day = date.getDate();
break;
case "'":
if (lookAhead("'")) {
checkLiteral();
} else {
literal = true;
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
break;
default:
checkLiteral();
}
}
}
if (iValue < value.length) {
extra = value.substr(iValue);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (!/^\s+/.test(extra)) {
2022-09-14 11:26:01 +00:00
throw 'Extra/unparsed characters found in date: ' + extra;
2022-09-06 12:03:37 +00:00
}
}
if (year === -1) {
year = new Date().getFullYear();
} else if (year < 100) {
2022-09-14 11:26:01 +00:00
year += new Date().getFullYear() - (new Date().getFullYear() % 100) + (year <= shortYearCutoff ? 0 : -100);
2022-09-06 12:03:37 +00:00
}
if (doy > -1) {
month = 1;
day = doy;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
do {
dim = this.getDaysCountInMonth(year, month - 1);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (day <= dim) {
break;
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
month++;
day -= dim;
2022-09-14 11:26:01 +00:00
// eslint-disable-next-line
2022-09-06 12:03:37 +00:00
} while (true);
}
date = this.daylightSavingAdjust(new Date(year, month - 1, day));
if (date.getFullYear() !== year || date.getMonth() + 1 !== month || date.getDate() !== day) {
2022-09-14 11:26:01 +00:00
throw 'Invalid date'; // E.g. 31/02/00
2022-09-06 12:03:37 +00:00
}
return date;
},
getWeekNumber(date) {
let checkDate = new Date(date.getTime());
2022-09-14 11:26:01 +00:00
checkDate.setDate(checkDate.getDate() + 4 - (checkDate.getDay() || 7));
2022-09-06 12:03:37 +00:00
let time = checkDate.getTime();
2022-09-14 11:26:01 +00:00
checkDate.setMonth(0);
checkDate.setDate(1);
return Math.floor(Math.round((time - checkDate.getTime()) / 86400000) / 7) + 1;
2022-09-06 12:03:37 +00:00
},
onDateCellKeydown(event, date, groupIndex) {
const cellContent = event.currentTarget;
const cell = cellContent.parentElement;
2022-12-08 11:04:25 +00:00
const cellIndex = DomHandler.index(cell);
2022-09-06 12:03:37 +00:00
switch (event.code) {
case 'ArrowDown': {
cellContent.tabIndex = '-1';
2022-12-08 11:04:25 +00:00
2022-09-06 12:03:37 +00:00
let nextRow = cell.parentElement.nextElementSibling;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (nextRow) {
2022-12-08 11:04:25 +00:00
let tableRowIndex = DomHandler.index(cell.parentElement);
const tableRows = Array.from(cell.parentElement.parentElement.children);
const nextTableRows = tableRows.slice(tableRowIndex + 1);
let hasNextFocusableDate = nextTableRows.find((el) => {
let focusCell = el.children[cellIndex].children[0];
2022-09-14 11:26:01 +00:00
2022-12-08 11:04:25 +00:00
return !DomHandler.hasClass(focusCell, 'p-disabled');
});
if (hasNextFocusableDate) {
let focusCell = hasNextFocusableDate.children[cellIndex].children[0];
focusCell.tabIndex = '0';
focusCell.focus();
} else {
2022-09-14 11:26:01 +00:00
this.navigationState = { backward: false };
2022-09-06 12:03:37 +00:00
this.navForward(event);
}
2022-09-14 11:26:01 +00:00
} else {
this.navigationState = { backward: false };
2022-09-06 12:03:37 +00:00
this.navForward(event);
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
event.preventDefault();
break;
}
case 'ArrowUp': {
cellContent.tabIndex = '-1';
let prevRow = cell.parentElement.previousElementSibling;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (prevRow) {
2022-12-08 11:04:25 +00:00
let tableRowIndex = DomHandler.index(cell.parentElement);
const tableRows = Array.from(cell.parentElement.parentElement.children);
const prevTableRows = tableRows.slice(0, tableRowIndex).reverse();
let hasNextFocusableDate = prevTableRows.find((el) => {
let focusCell = el.children[cellIndex].children[0];
return !DomHandler.hasClass(focusCell, 'p-disabled');
});
if (hasNextFocusableDate) {
let focusCell = hasNextFocusableDate.children[cellIndex].children[0];
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
focusCell.tabIndex = '0';
focusCell.focus();
2022-12-08 11:04:25 +00:00
} else {
this.navigationState = { backward: true };
this.navBackward(event);
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
} else {
this.navigationState = { backward: true };
2022-09-06 12:03:37 +00:00
this.navBackward(event);
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
event.preventDefault();
break;
}
case 'ArrowLeft': {
cellContent.tabIndex = '-1';
let prevCell = cell.previousElementSibling;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (prevCell) {
2022-12-08 11:04:25 +00:00
const cells = Array.from(cell.parentElement.children);
const prevCells = cells.slice(0, cellIndex).reverse();
let hasNextFocusableDate = prevCells.find((el) => {
let focusCell = el.children[0];
return !DomHandler.hasClass(focusCell, 'p-disabled');
});
if (hasNextFocusableDate) {
let focusCell = hasNextFocusableDate.children[0];
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
focusCell.tabIndex = '0';
focusCell.focus();
2022-12-08 11:04:25 +00:00
} else {
this.navigateToMonth(event, true, groupIndex);
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
this.navigateToMonth(event, true, groupIndex);
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
event.preventDefault();
break;
}
case 'ArrowRight': {
cellContent.tabIndex = '-1';
let nextCell = cell.nextElementSibling;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (nextCell) {
2022-12-08 11:04:25 +00:00
const cells = Array.from(cell.parentElement.children);
const nextCells = cells.slice(cellIndex + 1);
let hasNextFocusableDate = nextCells.find((el) => {
let focusCell = el.children[0];
return !DomHandler.hasClass(focusCell, 'p-disabled');
});
if (hasNextFocusableDate) {
let focusCell = hasNextFocusableDate.children[0];
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
focusCell.tabIndex = '0';
focusCell.focus();
2022-12-08 11:04:25 +00:00
} else {
this.navigateToMonth(event, false, groupIndex);
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
this.navigateToMonth(event, false, groupIndex);
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
event.preventDefault();
break;
}
case 'Enter':
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
case 'Space': {
this.onDateSelect(event, date);
event.preventDefault();
break;
}
case 'Escape': {
this.overlayVisible = false;
event.preventDefault();
break;
}
case 'Tab': {
if (!this.inline) {
this.trapFocus(event);
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
break;
}
case 'Home': {
cellContent.tabIndex = '-1';
let currentRow = cell.parentElement;
let focusCell = currentRow.children[0].children[0];
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (DomHandler.hasClass(focusCell, 'p-disabled')) {
this.navigateToMonth(event, true, groupIndex);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
focusCell.tabIndex = '0';
focusCell.focus();
}
event.preventDefault();
break;
}
case 'End': {
cellContent.tabIndex = '-1';
let currentRow = cell.parentElement;
2022-09-14 11:26:01 +00:00
let focusCell = currentRow.children[currentRow.children.length - 1].children[0];
2022-09-06 12:03:37 +00:00
if (DomHandler.hasClass(focusCell, 'p-disabled')) {
this.navigateToMonth(event, false, groupIndex);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
focusCell.tabIndex = '0';
focusCell.focus();
}
event.preventDefault();
break;
}
case 'PageUp': {
cellContent.tabIndex = '-1';
if (event.shiftKey) {
2022-09-14 11:26:01 +00:00
this.navigationState = { backward: true };
2022-09-06 12:03:37 +00:00
this.navBackward(event);
2022-09-14 11:26:01 +00:00
} else this.navigateToMonth(event, true, groupIndex);
2022-09-06 12:03:37 +00:00
event.preventDefault();
break;
}
case 'PageDown': {
cellContent.tabIndex = '-1';
if (event.shiftKey) {
2022-09-14 11:26:01 +00:00
this.navigationState = { backward: false };
2022-09-06 12:03:37 +00:00
this.navForward(event);
2022-09-14 11:26:01 +00:00
} else this.navigateToMonth(event, false, groupIndex);
2022-09-06 12:03:37 +00:00
event.preventDefault();
break;
}
default:
//no op
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
}
},
navigateToMonth(event, prev, groupIndex) {
if (prev) {
2022-09-14 11:26:01 +00:00
if (this.numberOfMonths === 1 || groupIndex === 0) {
this.navigationState = { backward: true };
2022-09-06 12:03:37 +00:00
this.navBackward(event);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
let prevMonthContainer = this.overlay.children[groupIndex - 1];
let cells = DomHandler.find(prevMonthContainer, '.p-datepicker-calendar td span:not(.p-disabled):not(.p-ink)');
let focusCell = cells[cells.length - 1];
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
focusCell.tabIndex = '0';
focusCell.focus();
}
2022-09-14 11:26:01 +00:00
} else {
if (this.numberOfMonths === 1 || groupIndex === this.numberOfMonths - 1) {
this.navigationState = { backward: false };
2022-09-06 12:03:37 +00:00
this.navForward(event);
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
let nextMonthContainer = this.overlay.children[groupIndex + 1];
let focusCell = DomHandler.findSingle(nextMonthContainer, '.p-datepicker-calendar td span:not(.p-disabled):not(.p-ink)');
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
focusCell.tabIndex = '0';
focusCell.focus();
}
}
},
onMonthCellKeydown(event, index) {
const cell = event.currentTarget;
switch (event.code) {
case 'ArrowUp':
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
case 'ArrowDown': {
cell.tabIndex = '-1';
var cells = cell.parentElement.children;
var cellIndex = DomHandler.index(cell);
2022-09-14 11:26:01 +00:00
let nextCell = cells[event.code === 'ArrowDown' ? cellIndex + 3 : cellIndex - 3];
2022-09-06 12:03:37 +00:00
if (nextCell) {
nextCell.tabIndex = '0';
nextCell.focus();
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
event.preventDefault();
break;
}
case 'ArrowLeft': {
cell.tabIndex = '-1';
let prevCell = cell.previousElementSibling;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (prevCell) {
prevCell.tabIndex = '0';
prevCell.focus();
2022-09-14 11:26:01 +00:00
} else {
this.navigationState = { backward: true };
2022-09-06 12:03:37 +00:00
this.navBackward(event);
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
event.preventDefault();
break;
}
case 'ArrowRight': {
cell.tabIndex = '-1';
let nextCell = cell.nextElementSibling;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (nextCell) {
nextCell.tabIndex = '0';
nextCell.focus();
2022-09-14 11:26:01 +00:00
} else {
this.navigationState = { backward: false };
2022-09-06 12:03:37 +00:00
this.navForward(event);
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
event.preventDefault();
break;
}
case 'PageUp': {
if (event.shiftKey) return;
2022-09-14 11:26:01 +00:00
this.navigationState = { backward: true };
2022-09-06 12:03:37 +00:00
this.navBackward(event);
break;
}
case 'PageDown': {
if (event.shiftKey) return;
2022-09-14 11:26:01 +00:00
this.navigationState = { backward: false };
2022-09-06 12:03:37 +00:00
this.navForward(event);
break;
}
case 'Enter':
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
case 'Space': {
this.onMonthSelect(event, index);
event.preventDefault();
break;
}
case 'Escape': {
this.overlayVisible = false;
event.preventDefault();
break;
}
case 'Tab': {
this.trapFocus(event);
break;
}
default:
//no op
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
}
},
onYearCellKeydown(event, index) {
const cell = event.currentTarget;
switch (event.code) {
case 'ArrowUp':
2022-09-14 11:26:01 +00:00
case 'ArrowDown': {
2022-09-06 12:03:37 +00:00
cell.tabIndex = '-1';
var cells = cell.parentElement.children;
var cellIndex = DomHandler.index(cell);
let nextCell = cells[event.code === 'ArrowDown' ? cellIndex + 2 : cellIndex - 2];
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (nextCell) {
nextCell.tabIndex = '0';
nextCell.focus();
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
event.preventDefault();
break;
}
case 'ArrowLeft': {
cell.tabIndex = '-1';
let prevCell = cell.previousElementSibling;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (prevCell) {
prevCell.tabIndex = '0';
prevCell.focus();
2022-09-14 11:26:01 +00:00
} else {
this.navigationState = { backward: true };
2022-09-06 12:03:37 +00:00
this.navBackward(event);
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
event.preventDefault();
break;
}
case 'ArrowRight': {
cell.tabIndex = '-1';
let nextCell = cell.nextElementSibling;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (nextCell) {
nextCell.tabIndex = '0';
nextCell.focus();
2022-09-14 11:26:01 +00:00
} else {
this.navigationState = { backward: false };
2022-09-06 12:03:37 +00:00
this.navForward(event);
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
event.preventDefault();
break;
}
case 'PageUp': {
if (event.shiftKey) return;
2022-09-14 11:26:01 +00:00
this.navigationState = { backward: true };
2022-09-06 12:03:37 +00:00
this.navBackward(event);
break;
}
case 'PageDown': {
if (event.shiftKey) return;
2022-09-14 11:26:01 +00:00
this.navigationState = { backward: false };
2022-09-06 12:03:37 +00:00
this.navForward(event);
break;
}
case 'Enter':
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
case 'Space': {
this.onYearSelect(event, index);
event.preventDefault();
break;
}
case 'Escape': {
this.overlayVisible = false;
event.preventDefault();
break;
}
case 'Tab': {
this.trapFocus(event);
break;
}
default:
//no op
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
}
},
updateFocus() {
let cell;
if (this.navigationState) {
if (this.navigationState.button) {
this.initFocusableCell();
2022-09-14 11:26:01 +00:00
if (this.navigationState.backward) DomHandler.findSingle(this.overlay, '.p-datepicker-prev').focus();
else DomHandler.findSingle(this.overlay, '.p-datepicker-next').focus();
} else {
2022-09-06 12:03:37 +00:00
if (this.navigationState.backward) {
let cells;
if (this.currentView === 'month') {
cells = DomHandler.find(this.overlay, '.p-monthpicker .p-monthpicker-month:not(.p-disabled)');
2022-09-14 11:26:01 +00:00
} else if (this.currentView === 'year') {
2022-09-06 12:03:37 +00:00
cells = DomHandler.find(this.overlay, '.p-yearpicker .p-yearpicker-year:not(.p-disabled)');
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
cells = DomHandler.find(this.overlay, '.p-datepicker-calendar td span:not(.p-disabled):not(.p-ink)');
}
if (cells && cells.length > 0) {
cell = cells[cells.length - 1];
}
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
if (this.currentView === 'month') {
cell = DomHandler.findSingle(this.overlay, '.p-monthpicker .p-monthpicker-month:not(.p-disabled)');
2022-09-14 11:26:01 +00:00
} else if (this.currentView === 'year') {
2022-09-06 12:03:37 +00:00
cell = DomHandler.findSingle(this.overlay, '.p-yearpicker .p-yearpicker-year:not(.p-disabled)');
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
cell = DomHandler.findSingle(this.overlay, '.p-datepicker-calendar td span:not(.p-disabled):not(.p-ink)');
}
}
if (cell) {
cell.tabIndex = '0';
cell.focus();
}
}
this.navigationState = null;
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
this.initFocusableCell();
}
},
initFocusableCell() {
let cell;
if (this.currentView === 'month') {
let cells = DomHandler.find(this.overlay, '.p-monthpicker .p-monthpicker-month');
2022-09-14 11:26:01 +00:00
let selectedCell = DomHandler.findSingle(this.overlay, '.p-monthpicker .p-monthpicker-month.p-highlight');
cells.forEach((cell) => (cell.tabIndex = -1));
2022-09-06 12:03:37 +00:00
cell = selectedCell || cells[0];
2022-09-14 11:26:01 +00:00
} else if (this.currentView === 'year') {
2022-09-06 12:03:37 +00:00
let cells = DomHandler.find(this.overlay, '.p-yearpicker .p-yearpicker-year');
2022-09-14 11:26:01 +00:00
let selectedCell = DomHandler.findSingle(this.overlay, '.p-yearpicker .p-yearpicker-year.p-highlight');
cells.forEach((cell) => (cell.tabIndex = -1));
2022-09-06 12:03:37 +00:00
cell = selectedCell || cells[0];
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
cell = DomHandler.findSingle(this.overlay, 'span.p-highlight');
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (!cell) {
let todayCell = DomHandler.findSingle(this.overlay, 'td.p-datepicker-today span:not(.p-disabled):not(.p-ink');
2022-09-14 11:26:01 +00:00
if (todayCell) cell = todayCell;
else cell = DomHandler.findSingle(this.overlay, '.p-datepicker-calendar td span:not(.p-disabled):not(.p-ink');
2022-09-06 12:03:37 +00:00
}
}
if (cell) {
cell.tabIndex = '0';
if (!this.preventFocus && (!this.navigationState || !this.navigationState.button) && !this.timePickerChange) {
cell.focus();
}
this.preventFocus = false;
}
},
trapFocus(event) {
event.preventDefault();
let focusableElements = DomHandler.getFocusableElements(this.overlay);
if (focusableElements && focusableElements.length > 0) {
if (!document.activeElement) {
focusableElements[0].focus();
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
let focusedIndex = focusableElements.indexOf(document.activeElement);
if (event.shiftKey) {
2022-09-14 11:26:01 +00:00
if (focusedIndex === -1 || focusedIndex === 0) focusableElements[focusableElements.length - 1].focus();
else focusableElements[focusedIndex - 1].focus();
} else {
2022-09-06 12:03:37 +00:00
if (focusedIndex === -1) {
if (this.timeOnly) {
focusableElements[0].focus();
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
let spanIndex = null;
2022-09-14 11:26:01 +00:00
for (let i = 0; i < focusableElements.length; i++) {
if (focusableElements[i].tagName === 'SPAN') spanIndex = i;
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
focusableElements[spanIndex].focus();
}
2022-09-14 11:26:01 +00:00
} else if (focusedIndex === focusableElements.length - 1) focusableElements[0].focus();
else focusableElements[focusedIndex + 1].focus();
2022-09-06 12:03:37 +00:00
}
}
}
},
onContainerButtonKeydown(event) {
switch (event.code) {
case 'Tab':
this.trapFocus(event);
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
case 'Escape':
this.overlayVisible = false;
event.preventDefault();
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
default:
//Noop
2022-09-14 11:26:01 +00:00
break;
2022-09-06 12:03:37 +00:00
}
this.$emit('keydown', event);
},
onInput(event) {
try {
this.selectionStart = this.input.selectionStart;
this.selectionEnd = this.input.selectionEnd;
let value = this.parseValue(event.target.value);
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.isValidSelection(value)) {
this.typeUpdate = true;
this.updateModel(value);
}
2022-09-14 11:26:01 +00:00
} catch (err) {
2022-09-06 12:03:37 +00:00
/* NoOp */
}
this.$emit('input', event);
},
2022-12-08 11:04:25 +00:00
onInputClick() {
if (this.showOnFocus && this.isEnabled() && !this.overlayVisible) {
this.overlayVisible = true;
}
},
2022-09-06 12:03:37 +00:00
onFocus(event) {
if (this.showOnFocus && this.isEnabled()) {
this.overlayVisible = true;
}
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
this.focused = true;
this.$emit('focus', event);
},
onBlur(event) {
2022-09-14 11:26:01 +00:00
this.$emit('blur', { originalEvent: event, value: event.target.value });
2022-09-06 12:03:37 +00:00
this.focused = false;
event.target.value = this.formatValue(this.modelValue);
},
onKeyDown(event) {
if (event.code === 'ArrowDown' && this.overlay) {
this.trapFocus(event);
2022-09-14 11:26:01 +00:00
} else if (event.code === 'ArrowDown' && !this.overlay) {
2022-09-06 12:03:37 +00:00
this.overlayVisible = true;
2022-09-14 11:26:01 +00:00
} else if (event.code === 'Escape') {
2022-09-06 12:03:37 +00:00
if (this.overlayVisible) {
this.overlayVisible = false;
event.preventDefault();
}
2022-09-14 11:26:01 +00:00
} else if (event.code === 'Tab') {
2022-09-06 12:03:37 +00:00
if (this.overlay) {
2022-09-14 11:26:01 +00:00
DomHandler.getFocusableElements(this.overlay).forEach((el) => (el.tabIndex = '-1'));
2022-09-06 12:03:37 +00:00
}
if (this.overlayVisible) {
this.overlayVisible = false;
}
}
},
overlayRef(el) {
this.overlay = el;
},
inputRef(el) {
this.input = el;
},
getMonthName(index) {
return this.$primevue.config.locale.monthNames[index];
},
getYear(month) {
return this.currentView === 'month' ? this.currentYear : month.year;
},
onOverlayClick(event) {
if (!this.inline) {
OverlayEventBus.emit('overlay-click', {
originalEvent: event,
target: this.$el
});
}
},
onOverlayKeyDown(event) {
switch (event.code) {
case 'Escape':
this.input.focus();
this.overlayVisible = false;
break;
default:
break;
}
},
onOverlayMouseUp(event) {
this.onOverlayClick(event);
},
createResponsiveStyle() {
if (this.numberOfMonths > 1 && this.responsiveOptions) {
if (!this.responsiveStyleElement) {
this.responsiveStyleElement = document.createElement('style');
this.responsiveStyleElement.type = 'text/css';
document.body.appendChild(this.responsiveStyleElement);
}
let innerHTML = '';
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (this.responsiveOptions) {
2022-09-14 11:26:01 +00:00
let responsiveOptions = [...this.responsiveOptions].filter((o) => !!(o.breakpoint && o.numMonths)).sort((o1, o2) => -1 * o1.breakpoint.localeCompare(o2.breakpoint, undefined, { numeric: true }));
2022-09-06 12:03:37 +00:00
for (let i = 0; i < responsiveOptions.length; i++) {
let { breakpoint, numMonths } = responsiveOptions[i];
let styles = `
.p-datepicker[${this.attributeSelector}] .p-datepicker-group:nth-child(${numMonths}) .p-datepicker-next {
display: inline-flex !important;
}
`;
for (let j = numMonths; j < this.numberOfMonths; j++) {
styles += `
.p-datepicker[${this.attributeSelector}] .p-datepicker-group:nth-child(${j + 1}) {
display: none !important;
}
2022-09-14 11:26:01 +00:00
`;
2022-09-06 12:03:37 +00:00
}
innerHTML += `
@media screen and (max-width: ${breakpoint}) {
${styles}
}
2022-09-14 11:26:01 +00:00
`;
2022-09-06 12:03:37 +00:00
}
}
this.responsiveStyleElement.innerHTML = innerHTML;
}
2022-09-14 11:26:01 +00:00
},
2022-09-06 12:03:37 +00:00
destroyResponsiveStyleElement() {
if (this.responsiveStyleElement) {
this.responsiveStyleElement.remove();
this.responsiveStyleElement = null;
}
}
},
computed: {
viewDate() {
let propValue = this.modelValue;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (propValue && Array.isArray(propValue)) {
if (this.isRangeSelection()) {
2022-12-08 11:04:25 +00:00
propValue = this.inline ? propValue[0] : propValue[1] || propValue[0];
2022-09-14 11:26:01 +00:00
} else if (this.isMultipleSelection()) {
2022-09-06 12:03:37 +00:00
propValue = propValue[propValue.length - 1];
}
}
if (propValue && typeof propValue !== 'string') {
return propValue;
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
let today = new Date();
if (this.maxDate && this.maxDate < today) {
return this.maxDate;
}
if (this.minDate && this.minDate > today) {
return this.minDate;
}
return today;
}
},
inputFieldValue() {
return this.formatValue(this.modelValue);
},
containerClass() {
return [
'p-calendar p-component p-inputwrapper',
{
'p-calendar-w-btn': this.showIcon,
'p-calendar-timeonly': this.timeOnly,
'p-calendar-disabled': this.disabled,
'p-inputwrapper-filled': this.modelValue,
'p-inputwrapper-focus': this.focused
}
];
},
panelStyleClass() {
2022-09-14 11:26:01 +00:00
return [
'p-datepicker p-component',
this.panelClass,
{
'p-datepicker-inline': this.inline,
'p-disabled': this.disabled,
'p-datepicker-timeonly': this.timeOnly,
'p-datepicker-multiple-month': this.numberOfMonths > 1,
'p-datepicker-monthpicker': this.currentView === 'month',
'p-datepicker-yearpicker': this.currentView === 'year',
'p-datepicker-touch-ui': this.touchUI,
'p-input-filled': this.$primevue.config.inputStyle === 'filled',
'p-ripple-disabled': this.$primevue.config.ripple === false
}
];
2022-09-06 12:03:37 +00:00
},
months() {
let months = [];
2022-09-14 11:26:01 +00:00
for (let i = 0; i < this.numberOfMonths; i++) {
2022-09-06 12:03:37 +00:00
let month = this.currentMonth + i;
let year = this.currentYear;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
if (month > 11) {
2022-09-14 11:26:01 +00:00
month = (month % 11) - 1;
2022-09-06 12:03:37 +00:00
year = year + 1;
}
let dates = [];
let firstDay = this.getFirstDayOfMonthIndex(month, year);
let daysLength = this.getDaysCountInMonth(month, year);
let prevMonthDaysLength = this.getDaysCountInPrevMonth(month, year);
let dayNo = 1;
let today = new Date();
let weekNumbers = [];
let monthRows = Math.ceil((daysLength + firstDay) / 7);
for (let i = 0; i < monthRows; i++) {
let week = [];
if (i == 0) {
2022-09-14 11:26:01 +00:00
for (let j = prevMonthDaysLength - firstDay + 1; j <= prevMonthDaysLength; j++) {
2022-09-06 12:03:37 +00:00
let prev = this.getPreviousMonthAndYear(month, year);
2022-09-14 11:26:01 +00:00
week.push({ day: j, month: prev.month, year: prev.year, otherMonth: true, today: this.isToday(today, j, prev.month, prev.year), selectable: this.isSelectable(j, prev.month, prev.year, true) });
2022-09-06 12:03:37 +00:00
}
let remainingDaysLength = 7 - week.length;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
for (let j = 0; j < remainingDaysLength; j++) {
2022-09-14 11:26:01 +00:00
week.push({ day: dayNo, month: month, year: year, today: this.isToday(today, dayNo, month, year), selectable: this.isSelectable(dayNo, month, year, false) });
2022-09-06 12:03:37 +00:00
dayNo++;
}
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
for (let j = 0; j < 7; j++) {
if (dayNo > daysLength) {
let next = this.getNextMonthAndYear(month, year);
2022-09-14 11:26:01 +00:00
week.push({
day: dayNo - daysLength,
month: next.month,
year: next.year,
otherMonth: true,
today: this.isToday(today, dayNo - daysLength, next.month, next.year),
selectable: this.isSelectable(dayNo - daysLength, next.month, next.year, true)
});
} else {
week.push({ day: dayNo, month: month, year: year, today: this.isToday(today, dayNo, month, year), selectable: this.isSelectable(dayNo, month, year, false) });
2022-09-06 12:03:37 +00:00
}
dayNo++;
}
}
if (this.showWeek) {
weekNumbers.push(this.getWeekNumber(new Date(week[0].year, week[0].month, week[0].day)));
}
dates.push(week);
}
months.push({
month: month,
year: year,
dates: dates,
weekNumbers: weekNumbers
});
}
return months;
},
weekDays() {
let weekDays = [];
let dayIndex = this.$primevue.config.locale.firstDayOfWeek;
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
for (let i = 0; i < 7; i++) {
weekDays.push(this.$primevue.config.locale.dayNamesMin[dayIndex]);
2022-09-14 11:26:01 +00:00
dayIndex = dayIndex == 6 ? 0 : ++dayIndex;
2022-09-06 12:03:37 +00:00
}
return weekDays;
},
ticksTo1970() {
2022-09-14 11:26:01 +00:00
return ((1970 - 1) * 365 + Math.floor(1970 / 4) - Math.floor(1970 / 100) + Math.floor(1970 / 400)) * 24 * 60 * 60 * 10000000;
2022-09-06 12:03:37 +00:00
},
sundayIndex() {
return this.$primevue.config.locale.firstDayOfWeek > 0 ? 7 - this.$primevue.config.locale.firstDayOfWeek : 0;
},
datePattern() {
return this.dateFormat || this.$primevue.config.locale.dateFormat;
},
yearOptions() {
if (this.yearRange) {
let $vm = this;
const years = this.yearRange.split(':');
let yearStart = parseInt(years[0]);
let yearEnd = parseInt(years[1]);
let yearOptions = [];
if (this.currentYear < yearStart) {
$vm.currentYear = yearEnd;
2022-09-14 11:26:01 +00:00
} else if (this.currentYear > yearEnd) {
2022-09-06 12:03:37 +00:00
$vm.currentYear = yearStart;
}
for (let i = yearStart; i <= yearEnd; i++) {
yearOptions.push(i);
}
return yearOptions;
2022-09-14 11:26:01 +00:00
} else {
2022-09-06 12:03:37 +00:00
return null;
}
},
monthPickerValues() {
let monthPickerValues = [];
2022-09-14 11:26:01 +00:00
2022-09-06 12:03:37 +00:00
for (let i = 0; i <= 11; i++) {
monthPickerValues.push(this.$primevue.config.locale.monthNamesShort[i]);
}
return monthPickerValues;
},
yearPickerValues() {
let yearPickerValues = [];
2022-09-14 11:26:01 +00:00
let base = this.currentYear - (this.currentYear % 10);
2022-09-06 12:03:37 +00:00
for (let i = 0; i < 10; i++) {
yearPickerValues.push(base + i);
}
return yearPickerValues;
},
formattedCurrentHour() {
return this.currentHour < 10 ? '0' + this.currentHour : this.currentHour;
},
formattedCurrentMinute() {
return this.currentMinute < 10 ? '0' + this.currentMinute : this.currentMinute;
},
formattedCurrentSecond() {
return this.currentSecond < 10 ? '0' + this.currentSecond : this.currentSecond;
},
todayLabel() {
return this.$primevue.config.locale.today;
},
clearLabel() {
return this.$primevue.config.locale.clear;
},
weekHeaderLabel() {
return this.$primevue.config.locale.weekHeader;
},
monthNames() {
return this.$primevue.config.locale.monthNames;
},
attributeSelector() {
return UniqueComponentId();
},
switchViewButtonDisabled() {
return this.numberOfMonths > 1 || this.disabled;
},
panelId() {
return UniqueComponentId() + '_panel';
}
},
components: {
2022-09-14 11:26:01 +00:00
CalendarButton: Button,
Portal: Portal
2022-09-06 12:03:37 +00:00
},
directives: {
2022-09-14 11:26:01 +00:00
ripple: Ripple
2022-09-06 12:03:37 +00:00
}
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
</script>
<style>
.p-calendar {
position: relative;
display: inline-flex;
max-width: 100%;
}
.p-calendar .p-inputtext {
flex: 1 1 auto;
width: 1%;
}
.p-calendar-w-btn .p-inputtext {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.p-calendar-w-btn .p-datepicker-trigger {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
/* Fluid */
.p-fluid .p-calendar {
display: flex;
}
.p-fluid .p-calendar .p-inputtext {
width: 1%;
}
/* Datepicker */
.p-calendar .p-datepicker {
min-width: 100%;
}
.p-datepicker {
2022-09-14 11:26:01 +00:00
width: auto;
2022-09-06 12:03:37 +00:00
position: absolute;
top: 0;
left: 0;
}
.p-datepicker-inline {
display: inline-block;
position: static;
overflow-x: auto;
}
/* Header */
.p-datepicker-header {
display: flex;
align-items: center;
justify-content: space-between;
}
.p-datepicker-header .p-datepicker-title {
margin: 0 auto;
}
.p-datepicker-prev,
.p-datepicker-next {
cursor: pointer;
display: inline-flex;
justify-content: center;
align-items: center;
overflow: hidden;
position: relative;
}
/* Multiple Month DatePicker */
.p-datepicker-multiple-month .p-datepicker-group-container {
display: flex;
}
.p-datepicker-multiple-month .p-datepicker-group-container .p-datepicker-group {
flex: 1 1 auto;
}
/* DatePicker Table */
.p-datepicker table {
2022-09-14 11:26:01 +00:00
width: 100%;
border-collapse: collapse;
2022-09-06 12:03:37 +00:00
}
.p-datepicker td > span {
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
margin: 0 auto;
overflow: hidden;
position: relative;
}
/* Month Picker */
.p-monthpicker-month {
width: 33.3%;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
overflow: hidden;
position: relative;
}
/* Year Picker */
.p-yearpicker-year {
width: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
overflow: hidden;
position: relative;
}
/* Button Bar */
.p-datepicker-buttonbar {
display: flex;
justify-content: space-between;
align-items: center;
}
/* Time Picker */
.p-timepicker {
display: flex;
justify-content: center;
align-items: center;
}
.p-timepicker button {
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
overflow: hidden;
position: relative;
}
.p-timepicker > div {
display: flex;
align-items: center;
flex-direction: column;
}
/* Touch UI */
.p-datepicker-touch-ui,
.p-calendar .p-datepicker-touch-ui {
position: fixed;
top: 50%;
left: 50%;
min-width: 80vw;
transform: translate(-50%, -50%);
}
</style>