const _days = { 'fr': ['Lun.', 'Mar.', 'Mer.', 'Jeu.', 'Ven.', 'Sam.', 'Dim.'], 'en': ['Mon.', 'Tue.', 'Wed.', 'Thu.', 'Fri.', 'Sat.', 'Sun.'], } const _months = { 'fr': ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'], 'en': ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], } function zero(value) { return value < 10 ? `0${value}` : `${value}`; } function datesEqual(date1, date2) { return (date1.getFullYear() == date2.getFullYear()) && (date1.getMonth() == date2.getMonth()) && (date1.getDate() == date2.getDate()); } function setDefaults(obj, objDefaults) { const keys = Object.keys(objDefaults); for (let i = 0; i < keys.length; i++) { if (!Object.prototype.hasOwnProperty.call(obj, keys[i])) { obj[keys[i]] = objDefaults[keys[i]]; } } return obj; } class DateTimePicker { constructor(selector, config) { if (!selector) { throw TypeError('Selector required to construct a DateTimePicker'); } this.target = document.querySelector(selector); if (!this.target) { throw Error(`The selector '{selector}' doesn't give any results`); } this.target.addEventListener('click', () => { document.documentElement.classList.add('is-clipped'); this.modal.classList.add('is-active'); this.target.blur(); }); if (!['fr', 'en'].includes(config.lang)) { delete config.lang; } if (!['days', 'months'].includes(config.view)) { delete config.view; } this.config = setDefaults(config || {}, DateTimePicker.defaultConfig); this.date = DateTimePicker.parseDate(this.target.value) || new Date(); this._selected = undefined; this._view = this.config.view; // Création du modal this.modal = document.createElement('div'); this.modal.classList.add('modal'); this.modal.innerHTML = `
`; let _controls = this.modal.querySelectorAll('header a.button'); this._leftArrow = _controls[0]; this._menu = _controls[1]; this._rightArrow = _controls[2]; this._rightArrow.addEventListener('click', () => { switch (this._view) { case 'days': if (this._beginning.getMonth() == 11) { this._beginning.setFullYear(this._beginning.getFullYear() + 1, 0, 1); } else { this._beginning.setMonth(this._beginning.getMonth() + 1, 1); } break; case 'months': this._beginning.setFullYear(this._beginning.getFullYear() + 1); break; } this.refreshView(); }); this._leftArrow.addEventListener('click', () => { switch (this._view) { case 'days': if (this._beginning.getMonth() == 0) { this._beginning.setFullYear(this._beginning.getFullYear() - 1, 11, 1); } else { this._beginning.setMonth(this._beginning.getMonth() - 1, 1); } break; case 'months': this._beginning.setFullYear(this._beginning.getFullYear() - 1); break; } this.refreshView(); }); this._menu.addEventListener('click', () => { if (this._view == 'days') { this._view = 'months'; this.refreshView(); } }); let _selects = this.modal.querySelectorAll('footer select'); this._hour = _selects[0]; this._minutes = _selects[1]; this._hour.addEventListener('change', () => { this.date.setHours(this._hour.value); this.updateTarget(); }); this._minutes.addEventListener('change', () => { this.date.setMinutes(this._minutes.value); this.updateTarget(); }); document.body.appendChild(this.modal); this._beginning = new Date(this.date.getFullYear(), this.date.getMonth(), 1); this.initTime(); this.updateTarget(); this.refreshView(); } refreshView() { switch (this._view) { case 'days': this.showCalendarDays(this._beginning); break; case 'months': this.showCalendarMonths(this._beginning); break; default: throw Error('Invalid value for \'this._view\''); } } showCalendarDays(_beginning) { const days = _days[this.config.lang]; const months = _months[this.config.lang]; this._menu.innerHTML = `${months[_beginning.getMonth()]} ${_beginning.getFullYear()}`; const _body = this.modal.querySelector('.modal-card section .column'); _body.innerHTML = `${days[0]} | ${days[1]} | ${days[2]} | ${days[3]} | ${days[4]} | ${days[5]} | ${days[6]} |
---|