UNPKG

flowbite-datepicker

Version:

A Tailwind CSS powered datepicker built with vanilla JavaScript and Flowbite

1,408 lines (1,277 loc) 95.6 kB
(function () { 'use strict'; function hasProperty(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); } function lastItemOf(arr) { return arr[arr.length - 1]; } // push only the items not included in the array function pushUnique(arr, ...items) { items.forEach((item) => { if (arr.includes(item)) { return; } arr.push(item); }); return arr; } function stringToArray(str, separator) { // convert empty string to an empty array return str ? str.split(separator) : []; } function isInRange(testVal, min, max) { const minOK = min === undefined || testVal >= min; const maxOK = max === undefined || testVal <= max; return minOK && maxOK; } function limitToRange(val, min, max) { if (val < min) { return min; } if (val > max) { return max; } return val; } function createTagRepeat(tagName, repeat, attributes = {}, index = 0, html = '') { const openTagSrc = Object.keys(attributes).reduce((src, attr) => { let val = attributes[attr]; if (typeof val === 'function') { val = val(index); } return `${src} ${attr}="${val}"`; }, tagName); html += `<${openTagSrc}></${tagName}>`; const next = index + 1; return next < repeat ? createTagRepeat(tagName, repeat, attributes, next, html) : html; } // Remove the spacing surrounding tags for HTML parser not to create text nodes // before/after elements function optimizeTemplateHTML(html) { return html.replace(/>\s+/g, '>').replace(/\s+</, '<'); } function stripTime(timeValue) { return new Date(timeValue).setHours(0, 0, 0, 0); } function today() { return new Date().setHours(0, 0, 0, 0); } // Get the time value of the start of given date or year, month and day function dateValue(...args) { switch (args.length) { case 0: return today(); case 1: return stripTime(args[0]); } // use setFullYear() to keep 2-digit year from being mapped to 1900-1999 const newDate = new Date(0); newDate.setFullYear(...args); return newDate.setHours(0, 0, 0, 0); } function addDays(date, amount) { const newDate = new Date(date); return newDate.setDate(newDate.getDate() + amount); } function addWeeks(date, amount) { return addDays(date, amount * 7); } function addMonths(date, amount) { // If the day of the date is not in the new month, the last day of the new // month will be returned. e.g. Jan 31 + 1 month → Feb 28 (not Mar 03) const newDate = new Date(date); const monthsToSet = newDate.getMonth() + amount; let expectedMonth = monthsToSet % 12; if (expectedMonth < 0) { expectedMonth += 12; } const time = newDate.setMonth(monthsToSet); return newDate.getMonth() !== expectedMonth ? newDate.setDate(0) : time; } function addYears(date, amount) { // If the date is Feb 29 and the new year is not a leap year, Feb 28 of the // new year will be returned. const newDate = new Date(date); const expectedMonth = newDate.getMonth(); const time = newDate.setFullYear(newDate.getFullYear() + amount); return expectedMonth === 1 && newDate.getMonth() === 2 ? newDate.setDate(0) : time; } // Calculate the distance bettwen 2 days of the week function dayDiff(day, from) { return (day - from + 7) % 7; } // Get the date of the specified day of the week of given base date function dayOfTheWeekOf(baseDate, dayOfWeek, weekStart = 0) { const baseDay = new Date(baseDate).getDay(); return addDays(baseDate, dayDiff(dayOfWeek, weekStart) - dayDiff(baseDay, weekStart)); } // Get the ISO week of a date function getWeek(date) { // start of ISO week is Monday const thuOfTheWeek = dayOfTheWeekOf(date, 4, 1); // 1st week == the week where the 4th of January is in const firstThu = dayOfTheWeekOf(new Date(thuOfTheWeek).setMonth(0, 4), 4, 1); return Math.round((thuOfTheWeek - firstThu) / 604800000) + 1; } // Get the start year of the period of years that includes given date // years: length of the year period function startOfYearPeriod(date, years) { /* @see https://en.wikipedia.org/wiki/Year_zero#ISO_8601 */ const year = new Date(date).getFullYear(); return Math.floor(year / years) * years; } // pattern for format parts const reFormatTokens = /dd?|DD?|mm?|MM?|yy?(?:yy)?/; // pattern for non date parts const reNonDateParts = /[\s!-/:-@[-`{-~年月日]+/; // cache for persed formats let knownFormats = {}; // parse funtions for date parts const parseFns = { y(date, year) { return new Date(date).setFullYear(parseInt(year, 10)); }, m(date, month, locale) { const newDate = new Date(date); let monthIndex = parseInt(month, 10) - 1; if (isNaN(monthIndex)) { if (!month) { return NaN; } const monthName = month.toLowerCase(); const compareNames = name => name.toLowerCase().startsWith(monthName); // compare with both short and full names because some locales have periods // in the short names (not equal to the first X letters of the full names) monthIndex = locale.monthsShort.findIndex(compareNames); if (monthIndex < 0) { monthIndex = locale.months.findIndex(compareNames); } if (monthIndex < 0) { return NaN; } } newDate.setMonth(monthIndex); return newDate.getMonth() !== normalizeMonth(monthIndex) ? newDate.setDate(0) : newDate.getTime(); }, d(date, day) { return new Date(date).setDate(parseInt(day, 10)); }, }; // format functions for date parts const formatFns = { d(date) { return date.getDate(); }, dd(date) { return padZero(date.getDate(), 2); }, D(date, locale) { return locale.daysShort[date.getDay()]; }, DD(date, locale) { return locale.days[date.getDay()]; }, m(date) { return date.getMonth() + 1; }, mm(date) { return padZero(date.getMonth() + 1, 2); }, M(date, locale) { return locale.monthsShort[date.getMonth()]; }, MM(date, locale) { return locale.months[date.getMonth()]; }, y(date) { return date.getFullYear(); }, yy(date) { return padZero(date.getFullYear(), 2).slice(-2); }, yyyy(date) { return padZero(date.getFullYear(), 4); }, }; // get month index in normal range (0 - 11) from any number function normalizeMonth(monthIndex) { return monthIndex > -1 ? monthIndex % 12 : normalizeMonth(monthIndex + 12); } function padZero(num, length) { return num.toString().padStart(length, '0'); } function parseFormatString(format) { if (typeof format !== 'string') { throw new Error("Invalid date format."); } if (format in knownFormats) { return knownFormats[format]; } // sprit the format string into parts and seprators const separators = format.split(reFormatTokens); const parts = format.match(new RegExp(reFormatTokens, 'g')); if (separators.length === 0 || !parts) { throw new Error("Invalid date format."); } // collect format functions used in the format const partFormatters = parts.map(token => formatFns[token]); // collect parse function keys used in the format // iterate over parseFns' keys in order to keep the order of the keys. const partParserKeys = Object.keys(parseFns).reduce((keys, key) => { const token = parts.find(part => part[0] !== 'D' && part[0].toLowerCase() === key); if (token) { keys.push(key); } return keys; }, []); return knownFormats[format] = { parser(dateStr, locale) { const dateParts = dateStr.split(reNonDateParts).reduce((dtParts, part, index) => { if (part.length > 0 && parts[index]) { const token = parts[index][0]; if (token === 'M') { dtParts.m = part; } else if (token !== 'D') { dtParts[token] = part; } } return dtParts; }, {}); // iterate over partParserkeys so that the parsing is made in the oder // of year, month and day to prevent the day parser from correcting last // day of month wrongly return partParserKeys.reduce((origDate, key) => { const newDate = parseFns[key](origDate, dateParts[key], locale); // ingnore the part failed to parse return isNaN(newDate) ? origDate : newDate; }, today()); }, formatter(date, locale) { let dateStr = partFormatters.reduce((str, fn, index) => { return str += `${separators[index]}${fn(date, locale)}`; }, ''); // separators' length is always parts' length + 1, return dateStr += lastItemOf(separators); }, }; } function parseDate(dateStr, format, locale) { if (dateStr instanceof Date || typeof dateStr === 'number') { const date = stripTime(dateStr); return isNaN(date) ? undefined : date; } if (!dateStr) { return undefined; } if (dateStr === 'today') { return today(); } if (format && format.toValue) { const date = format.toValue(dateStr, format, locale); return isNaN(date) ? undefined : stripTime(date); } return parseFormatString(format).parser(dateStr, locale); } function formatDate(date, format, locale) { if (isNaN(date) || (!date && date !== 0)) { return ''; } const dateObj = typeof date === 'number' ? new Date(date) : date; if (format.toDisplay) { return format.toDisplay(dateObj, format, locale); } return parseFormatString(format).formatter(dateObj, locale); } const listenerRegistry = new WeakMap(); const {addEventListener, removeEventListener} = EventTarget.prototype; // Register event listeners to a key object // listeners: array of listener definitions; // - each definition must be a flat array of event target and the arguments // used to call addEventListener() on the target function registerListeners(keyObj, listeners) { let registered = listenerRegistry.get(keyObj); if (!registered) { registered = []; listenerRegistry.set(keyObj, registered); } listeners.forEach((listener) => { addEventListener.call(...listener); registered.push(listener); }); } function unregisterListeners(keyObj) { let listeners = listenerRegistry.get(keyObj); if (!listeners) { return; } listeners.forEach((listener) => { removeEventListener.call(...listener); }); listenerRegistry.delete(keyObj); } // Event.composedPath() polyfill for Edge // based on https://gist.github.com/kleinfreund/e9787d73776c0e3750dcfcdc89f100ec if (!Event.prototype.composedPath) { const getComposedPath = (node, path = []) => { path.push(node); let parent; if (node.parentNode) { parent = node.parentNode; } else if (node.host) { // ShadowRoot parent = node.host; } else if (node.defaultView) { // Document parent = node.defaultView; } return parent ? getComposedPath(parent, path) : path; }; Event.prototype.composedPath = function () { return getComposedPath(this.target); }; } function findFromPath(path, criteria, currentTarget, index = 0) { const el = path[index]; if (criteria(el)) { return el; } else if (el === currentTarget || !el.parentElement) { // stop when reaching currentTarget or <html> return; } return findFromPath(path, criteria, currentTarget, index + 1); } // Search for the actual target of a delegated event function findElementInEventPath(ev, selector) { const criteria = typeof selector === 'function' ? selector : el => el.matches(selector); return findFromPath(ev.composedPath(), criteria, ev.currentTarget); } // default locales const locales = { en: { days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], today: "Today", clear: "Clear", titleFormat: "MM y" } }; // config options updatable by setOptions() and their default values const defaultOptions = { autohide: false, beforeShowDay: null, beforeShowDecade: null, beforeShowMonth: null, beforeShowYear: null, calendarWeeks: false, clearBtn: false, dateDelimiter: ',', datesDisabled: [], daysOfWeekDisabled: [], daysOfWeekHighlighted: [], defaultViewDate: undefined, // placeholder, defaults to today() by the program disableTouchKeyboard: false, format: 'mm/dd/yyyy', language: 'en', maxDate: null, maxNumberOfDates: 1, maxView: 3, minDate: null, nextArrow: '<svg class="w-4 h-4 rtl:rotate-180 text-gray-800 dark:text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 10"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M1 5h12m0 0L9 1m4 4L9 9"/></svg>', orientation: 'auto', pickLevel: 0, prevArrow: '<svg class="w-4 h-4 rtl:rotate-180 text-gray-800 dark:text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 10"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 5H1m0 0 4 4M1 5l4-4"/></svg>', showDaysOfWeek: true, showOnClick: true, showOnFocus: true, startView: 0, title: '', todayBtn: false, todayBtnMode: 0, todayHighlight: false, updateOnBlur: true, weekStart: 0, }; const range = document.createRange(); function parseHTML(html) { return range.createContextualFragment(html); } function hideElement(el) { if (el.style.display === 'none') { return; } // back up the existing display setting in data-style-display if (el.style.display) { el.dataset.styleDisplay = el.style.display; } el.style.display = 'none'; } function showElement(el) { if (el.style.display !== 'none') { return; } if (el.dataset.styleDisplay) { // restore backed-up dispay property el.style.display = el.dataset.styleDisplay; delete el.dataset.styleDisplay; } else { el.style.display = ''; } } function emptyChildNodes(el) { if (el.firstChild) { el.removeChild(el.firstChild); emptyChildNodes(el); } } function replaceChildNodes(el, newChildNodes) { emptyChildNodes(el); if (newChildNodes instanceof DocumentFragment) { el.appendChild(newChildNodes); } else if (typeof newChildNodes === 'string') { el.appendChild(parseHTML(newChildNodes)); } else if (typeof newChildNodes.forEach === 'function') { newChildNodes.forEach((node) => { el.appendChild(node); }); } } const { language: defaultLang, format: defaultFormat, weekStart: defaultWeekStart, } = defaultOptions; // Reducer function to filter out invalid day-of-week from the input function sanitizeDOW(dow, day) { return dow.length < 6 && day >= 0 && day < 7 ? pushUnique(dow, day) : dow; } function calcEndOfWeek(startOfWeek) { return (startOfWeek + 6) % 7; } // validate input date. if invalid, fallback to the original value function validateDate(value, format, locale, origValue) { const date = parseDate(value, format, locale); return date !== undefined ? date : origValue; } // Validate viewId. if invalid, fallback to the original value function validateViewId(value, origValue, max = 3) { const viewId = parseInt(value, 10); return viewId >= 0 && viewId <= max ? viewId : origValue; } // Create Datepicker configuration to set function processOptions(options, datepicker) { const inOpts = Object.assign({}, options); const config = {}; const locales = datepicker.constructor.locales; let { format, language, locale, maxDate, maxView, minDate, pickLevel, startView, weekStart, } = datepicker.config || {}; if (inOpts.language) { let lang; if (inOpts.language !== language) { if (locales[inOpts.language]) { lang = inOpts.language; } else { // Check if langauge + region tag can fallback to the one without // region (e.g. fr-CA → fr) lang = inOpts.language.split('-')[0]; if (locales[lang] === undefined) { lang = false; } } } delete inOpts.language; if (lang) { language = config.language = lang; // update locale as well when updating language const origLocale = locale || locales[defaultLang]; // use default language's properties for the fallback locale = Object.assign({ format: defaultFormat, weekStart: defaultWeekStart }, locales[defaultLang]); if (language !== defaultLang) { Object.assign(locale, locales[language]); } config.locale = locale; // if format and/or weekStart are the same as old locale's defaults, // update them to new locale's defaults if (format === origLocale.format) { format = config.format = locale.format; } if (weekStart === origLocale.weekStart) { weekStart = config.weekStart = locale.weekStart; config.weekEnd = calcEndOfWeek(locale.weekStart); } } } if (inOpts.format) { const hasToDisplay = typeof inOpts.format.toDisplay === 'function'; const hasToValue = typeof inOpts.format.toValue === 'function'; const validFormatString = reFormatTokens.test(inOpts.format); if ((hasToDisplay && hasToValue) || validFormatString) { format = config.format = inOpts.format; } delete inOpts.format; } //*** dates ***// // while min and maxDate for "no limit" in the options are better to be null // (especially when updating), the ones in the config have to be undefined // because null is treated as 0 (= unix epoch) when comparing with time value let minDt = minDate; let maxDt = maxDate; if (inOpts.minDate !== undefined) { minDt = inOpts.minDate === null ? dateValue(0, 0, 1) // set 0000-01-01 to prevent negative values for year : validateDate(inOpts.minDate, format, locale, minDt); delete inOpts.minDate; } if (inOpts.maxDate !== undefined) { maxDt = inOpts.maxDate === null ? undefined : validateDate(inOpts.maxDate, format, locale, maxDt); delete inOpts.maxDate; } if (maxDt < minDt) { minDate = config.minDate = maxDt; maxDate = config.maxDate = minDt; } else { if (minDate !== minDt) { minDate = config.minDate = minDt; } if (maxDate !== maxDt) { maxDate = config.maxDate = maxDt; } } if (inOpts.datesDisabled) { config.datesDisabled = inOpts.datesDisabled.reduce((dates, dt) => { const date = parseDate(dt, format, locale); return date !== undefined ? pushUnique(dates, date) : dates; }, []); delete inOpts.datesDisabled; } if (inOpts.defaultViewDate !== undefined) { const viewDate = parseDate(inOpts.defaultViewDate, format, locale); if (viewDate !== undefined) { config.defaultViewDate = viewDate; } delete inOpts.defaultViewDate; } //*** days of week ***// if (inOpts.weekStart !== undefined) { const wkStart = Number(inOpts.weekStart) % 7; if (!isNaN(wkStart)) { weekStart = config.weekStart = wkStart; config.weekEnd = calcEndOfWeek(wkStart); } delete inOpts.weekStart; } if (inOpts.daysOfWeekDisabled) { config.daysOfWeekDisabled = inOpts.daysOfWeekDisabled.reduce(sanitizeDOW, []); delete inOpts.daysOfWeekDisabled; } if (inOpts.daysOfWeekHighlighted) { config.daysOfWeekHighlighted = inOpts.daysOfWeekHighlighted.reduce(sanitizeDOW, []); delete inOpts.daysOfWeekHighlighted; } //*** multi date ***// if (inOpts.maxNumberOfDates !== undefined) { const maxNumberOfDates = parseInt(inOpts.maxNumberOfDates, 10); if (maxNumberOfDates >= 0) { config.maxNumberOfDates = maxNumberOfDates; config.multidate = maxNumberOfDates !== 1; } delete inOpts.maxNumberOfDates; } if (inOpts.dateDelimiter) { config.dateDelimiter = String(inOpts.dateDelimiter); delete inOpts.dateDelimiter; } //*** pick level & view ***// let newPickLevel = pickLevel; if (inOpts.pickLevel !== undefined) { newPickLevel = validateViewId(inOpts.pickLevel, 2); delete inOpts.pickLevel; } if (newPickLevel !== pickLevel) { pickLevel = config.pickLevel = newPickLevel; } let newMaxView = maxView; if (inOpts.maxView !== undefined) { newMaxView = validateViewId(inOpts.maxView, maxView); delete inOpts.maxView; } // ensure max view >= pick level newMaxView = pickLevel > newMaxView ? pickLevel : newMaxView; if (newMaxView !== maxView) { maxView = config.maxView = newMaxView; } let newStartView = startView; if (inOpts.startView !== undefined) { newStartView = validateViewId(inOpts.startView, newStartView); delete inOpts.startView; } // ensure pick level <= start view <= max view if (newStartView < pickLevel) { newStartView = pickLevel; } else if (newStartView > maxView) { newStartView = maxView; } if (newStartView !== startView) { config.startView = newStartView; } //*** template ***// if (inOpts.prevArrow) { const prevArrow = parseHTML(inOpts.prevArrow); if (prevArrow.childNodes.length > 0) { config.prevArrow = prevArrow.childNodes; } delete inOpts.prevArrow; } if (inOpts.nextArrow) { const nextArrow = parseHTML(inOpts.nextArrow); if (nextArrow.childNodes.length > 0) { config.nextArrow = nextArrow.childNodes; } delete inOpts.nextArrow; } //*** misc ***// if (inOpts.disableTouchKeyboard !== undefined) { config.disableTouchKeyboard = 'ontouchstart' in document && !!inOpts.disableTouchKeyboard; delete inOpts.disableTouchKeyboard; } if (inOpts.orientation) { const orientation = inOpts.orientation.toLowerCase().split(/\s+/g); config.orientation = { x: orientation.find(x => (x === 'left' || x === 'right')) || 'auto', y: orientation.find(y => (y === 'top' || y === 'bottom')) || 'auto', }; delete inOpts.orientation; } if (inOpts.todayBtnMode !== undefined) { switch(inOpts.todayBtnMode) { case 0: case 1: config.todayBtnMode = inOpts.todayBtnMode; } delete inOpts.todayBtnMode; } //*** copy the rest ***// Object.keys(inOpts).forEach((key) => { if (inOpts[key] !== undefined && hasProperty(defaultOptions, key)) { config[key] = inOpts[key]; } }); return config; } const pickerTemplate = optimizeTemplateHTML(`<div class="datepicker hidden"> <div class="datepicker-picker inline-block rounded-base bg-white dark:bg-gray-700 shadow-lg p-4"> <div class="datepicker-header"> <div class="datepicker-title bg-white dark:bg-gray-700 dark:text-white px-2 py-3 text-center font-medium"></div> <div class="datepicker-controls flex justify-between mb-2"> <button type="button" class="bg-white dark:bg-gray-700 rounded-base text-fg-disabled hover:bg-neutral-tertiary-medium hover:text-body dark:hover:text-white text-lg p-2.5 focus:outline-none focus:ring-2 focus:ring-neutral-tertiary prev-btn"></button> <button type="button" class="text-sm rounded-base text-body bg-white dark:bg-gray-700 font-medium py-2.5 px-5 hover:bg-neutral-tertiary-medium focus:outline-none focus:ring-2 focus:ring-neutral-tertiary view-switch"></button> <button type="button" class="bg-white dark:bg-gray-700 rounded-base text-fg-disabled hover:bg-neutral-tertiary-medium hover:text-body dark:hover:text-white text-lg p-2.5 focus:outline-none focus:ring-2 focus:ring-neutral-tertiary next-btn"></button> </div> </div> <div class="datepicker-main p-1"></div> <div class="datepicker-footer"> <div class="datepicker-controls flex space-x-2 rtl:space-x-reverse mt-2"> <button type="button" class="%buttonClass% today-btn text-white bg-blue-700 !bg-primary-700 dark:bg-blue-600 dark:!bg-primary-600 hover:bg-blue-800 hover:!bg-primary-800 dark:hover:bg-blue-700 dark:hover:!bg-primary-700 focus:ring-4 focus:ring-brand-medium font-medium rounded-base text-sm px-5 py-2 text-center w-1/2"></button> <button type="button" class="%buttonClass% clear-btn text-body bg-white dark:bg-gray-700 border border-gray-300 dark:border-gray-600 hover:bg-neutral-tertiary-medium focus:ring-4 focus:ring-brand-medium font-medium rounded-base text-sm px-5 py-2 text-center w-1/2"></button> </div> </div> </div> </div>`); const daysTemplate = optimizeTemplateHTML(`<div class="days"> <div class="days-of-week grid grid-cols-7 mb-1">${createTagRepeat('span', 7, {class: 'dow block flex-1 leading-9 border-0 rounded-base cursor-default text-center text-body font-medium text-sm'})}</div> <div class="datepicker-grid w-64 grid grid-cols-7">${createTagRepeat('span', 42 , {class: 'block flex-1 leading-9 border-0 rounded-base cursor-default text-center text-body font-medium text-sm h-6 leading-6 text-sm font-medium text-gray-500 dark:text-gray-400'})}</div> </div>`); const calendarWeeksTemplate = optimizeTemplateHTML(`<div class="calendar-weeks"> <div class="days-of-week flex"><span class="dow h-6 leading-6 text-sm font-medium text-gray-500 dark:text-gray-400"></span></div> <div class="weeks">${createTagRepeat('span', 6, {class: 'week block flex-1 leading-9 border-0 rounded-base cursor-default text-center text-body font-medium text-sm'})}</div> </div>`); // Base class of the view classes class View { constructor(picker, config) { Object.assign(this, config, { picker, element: parseHTML(`<div class="datepicker-view flex"></div>`).firstChild, selected: [], }); this.init(this.picker.datepicker.config); } init(options) { if (options.pickLevel !== undefined) { this.isMinView = this.id === options.pickLevel; } this.setOptions(options); this.updateFocus(); this.updateSelection(); } // Execute beforeShow() callback and apply the result to the element // args: // - current - current value on the iteration on view rendering // - timeValue - time value of the date to pass to beforeShow() performBeforeHook(el, current, timeValue) { let result = this.beforeShow(new Date(timeValue)); switch (typeof result) { case 'boolean': result = {enabled: result}; break; case 'string': result = {classes: result}; } if (result) { if (result.enabled === false) { el.classList.add('disabled'); pushUnique(this.disabled, current); } if (result.classes) { const extraClasses = result.classes.split(/\s+/); el.classList.add(...extraClasses); if (extraClasses.includes('disabled')) { pushUnique(this.disabled, current); } } if (result.content) { replaceChildNodes(el, result.content); } } } } class DaysView extends View { constructor(picker) { super(picker, { id: 0, name: 'days', cellClass: 'day', }); } init(options, onConstruction = true) { if (onConstruction) { const inner = parseHTML(daysTemplate).firstChild; this.dow = inner.firstChild; this.grid = inner.lastChild; this.element.appendChild(inner); } super.init(options); } setOptions(options) { let updateDOW; if (hasProperty(options, 'minDate')) { this.minDate = options.minDate; } if (hasProperty(options, 'maxDate')) { this.maxDate = options.maxDate; } if (options.datesDisabled) { this.datesDisabled = options.datesDisabled; } if (options.daysOfWeekDisabled) { this.daysOfWeekDisabled = options.daysOfWeekDisabled; updateDOW = true; } if (options.daysOfWeekHighlighted) { this.daysOfWeekHighlighted = options.daysOfWeekHighlighted; } if (options.todayHighlight !== undefined) { this.todayHighlight = options.todayHighlight; } if (options.weekStart !== undefined) { this.weekStart = options.weekStart; this.weekEnd = options.weekEnd; updateDOW = true; } if (options.locale) { const locale = this.locale = options.locale; this.dayNames = locale.daysMin; this.switchLabelFormat = locale.titleFormat; updateDOW = true; } if (options.beforeShowDay !== undefined) { this.beforeShow = typeof options.beforeShowDay === 'function' ? options.beforeShowDay : undefined; } if (options.calendarWeeks !== undefined) { if (options.calendarWeeks && !this.calendarWeeks) { const weeksElem = parseHTML(calendarWeeksTemplate).firstChild; this.calendarWeeks = { element: weeksElem, dow: weeksElem.firstChild, weeks: weeksElem.lastChild, }; this.element.insertBefore(weeksElem, this.element.firstChild); } else if (this.calendarWeeks && !options.calendarWeeks) { this.element.removeChild(this.calendarWeeks.element); this.calendarWeeks = null; } } if (options.showDaysOfWeek !== undefined) { if (options.showDaysOfWeek) { showElement(this.dow); if (this.calendarWeeks) { showElement(this.calendarWeeks.dow); } } else { hideElement(this.dow); if (this.calendarWeeks) { hideElement(this.calendarWeeks.dow); } } } // update days-of-week when locale, daysOfweekDisabled or weekStart is changed if (updateDOW) { Array.from(this.dow.children).forEach((el, index) => { const dow = (this.weekStart + index) % 7; el.textContent = this.dayNames[dow]; el.className = this.daysOfWeekDisabled.includes(dow) ? 'dow disabled text-center h-6 leading-6 text-sm font-medium text-gray-500 dark:text-gray-400 cursor-not-allowed' : 'dow text-center h-6 leading-6 text-sm font-medium text-gray-500 dark:text-gray-400'; }); } } // Apply update on the focused date to view's settings updateFocus() { const viewDate = new Date(this.picker.viewDate); const viewYear = viewDate.getFullYear(); const viewMonth = viewDate.getMonth(); const firstOfMonth = dateValue(viewYear, viewMonth, 1); const start = dayOfTheWeekOf(firstOfMonth, this.weekStart, this.weekStart); this.first = firstOfMonth; this.last = dateValue(viewYear, viewMonth + 1, 0); this.start = start; this.focused = this.picker.viewDate; } // Apply update on the selected dates to view's settings updateSelection() { const {dates, rangepicker} = this.picker.datepicker; this.selected = dates; if (rangepicker) { this.range = rangepicker.dates; } } // Update the entire view UI render() { // update today marker on ever render this.today = this.todayHighlight ? today() : undefined; // refresh disabled dates on every render in order to clear the ones added // by beforeShow hook at previous render this.disabled = [...this.datesDisabled]; const switchLabel = formatDate(this.focused, this.switchLabelFormat, this.locale); this.picker.setViewSwitchLabel(switchLabel); this.picker.setPrevBtnDisabled(this.first <= this.minDate); this.picker.setNextBtnDisabled(this.last >= this.maxDate); if (this.calendarWeeks) { // start of the UTC week (Monday) of the 1st of the month const startOfWeek = dayOfTheWeekOf(this.first, 1, 1); Array.from(this.calendarWeeks.weeks.children).forEach((el, index) => { el.textContent = getWeek(addWeeks(startOfWeek, index)); }); } Array.from(this.grid.children).forEach((el, index) => { const classList = el.classList; const current = addDays(this.start, index); const date = new Date(current); const day = date.getDay(); el.className = `datepicker-cell hover:bg-neutral-tertiary-medium block flex-1 leading-9 border-0 rounded-base cursor-pointer text-center text-body font-medium text-sm ${this.cellClass}`; el.dataset.date = current; el.textContent = date.getDate(); if (current < this.first) { classList.add('prev', 'text-gray-500', 'dark:text-white'); } else if (current > this.last) { classList.add('next', 'text-gray-500', 'dark:text-white'); } if (this.today === current) { classList.add('today', 'bg-gray-100', 'dark:bg-gray-600'); } if (current < this.minDate || current > this.maxDate || this.disabled.includes(current)) { classList.add('disabled', 'cursor-not-allowed', 'text-gray-400', 'dark:text-gray-500'); classList.remove('hover:bg-neutral-tertiary-medium', 'text-body', 'dark:text-white', 'cursor-pointer'); } if (this.daysOfWeekDisabled.includes(day)) { classList.add('disabled', 'cursor-not-allowed', 'text-gray-400', 'dark:text-gray-500'); classList.remove('hover:bg-neutral-tertiary-medium', 'text-body', 'dark:text-white', 'cursor-pointer'); pushUnique(this.disabled, current); } if (this.daysOfWeekHighlighted.includes(day)) { classList.add('highlighted'); } if (this.range) { const [rangeStart, rangeEnd] = this.range; if (current > rangeStart && current < rangeEnd) { classList.add('range', 'bg-gray-200', 'dark:bg-gray-600'); classList.remove('rounded-base', 'rounded-s-base', 'rounded-e-base'); } if (current === rangeStart) { classList.add('range-start', 'bg-gray-100', 'dark:bg-gray-600', 'rounded-s-base'); classList.remove('rounded-base', 'rounded-e-base'); } if (current === rangeEnd) { classList.add('range-end', 'bg-gray-100', 'dark:bg-gray-600', 'rounded-e-base'); classList.remove('rounded-base', 'rounded-s-base'); } } if (this.selected.includes(current)) { classList.add('selected', 'bg-blue-700', '!bg-primary-700', 'text-white', 'dark:bg-blue-600', 'dark:!bg-primary-600', 'dark:text-white'); classList.remove('text-body', 'text-gray-500', 'hover:bg-neutral-tertiary-medium', 'dark:text-white', 'dark:bg-gray-600', 'bg-gray-100', 'bg-gray-200'); } if (current === this.focused) { classList.add('focused'); } if (this.beforeShow) { this.performBeforeHook(el, current, current); } }); } // Update the view UI by applying the changes of selected and focused items refresh() { const [rangeStart, rangeEnd] = this.range || []; this.grid .querySelectorAll('.range, .range-start, .range-end, .selected, .focused') .forEach((el) => { el.classList.remove('range', 'range-start', 'range-end', 'selected', 'bg-blue-700', '!bg-primary-700', 'text-white', 'dark:bg-blue-600', 'dark:!bg-primary-600', 'dark:text-white', 'focused'); el.classList.add('text-body', 'rounded-base', 'dark:text-white'); }); Array.from(this.grid.children).forEach((el) => { const current = Number(el.dataset.date); const classList = el.classList; classList.remove('bg-gray-200', 'dark:bg-gray-600', 'rounded-s-base', 'rounded-e-base'); if (current > rangeStart && current < rangeEnd) { classList.add('range', 'bg-gray-200', 'dark:bg-gray-600'); classList.remove('rounded-base'); } if (current === rangeStart) { classList.add('range-start', 'bg-gray-200', 'dark:bg-gray-600', 'rounded-s-base'); classList.remove('rounded-base',); } if (current === rangeEnd) { classList.add('range-end', 'bg-gray-200', 'dark:bg-gray-600', 'rounded-e-base'); classList.remove('rounded-base',); } if (this.selected.includes(current)) { classList.add('selected', 'bg-blue-700', '!bg-primary-700', 'text-white', 'dark:bg-blue-600', 'dark:!bg-primary-600', 'dark:text-white'); classList.remove('text-body', 'hover:bg-neutral-tertiary-medium', 'dark:text-white', 'bg-gray-100', 'bg-gray-200', 'dark:bg-gray-600'); } if (current === this.focused) { classList.add('focused'); } }); } // Update the view UI by applying the change of focused item refreshFocus() { const index = Math.round((this.focused - this.start) / 86400000); this.grid.querySelectorAll('.focused').forEach((el) => { el.classList.remove('focused'); }); this.grid.children[index].classList.add('focused'); } } function computeMonthRange(range, thisYear) { if (!range || !range[0] || !range[1]) { return; } const [[startY, startM], [endY, endM]] = range; if (startY > thisYear || endY < thisYear) { return; } return [ startY === thisYear ? startM : -1, endY === thisYear ? endM : 12, ]; } class MonthsView extends View { constructor(picker) { super(picker, { id: 1, name: 'months', cellClass: 'month', }); } init(options, onConstruction = true) { if (onConstruction) { this.grid = this.element; this.element.classList.add('months', 'datepicker-grid', 'w-64', 'grid', 'grid-cols-4'); this.grid.appendChild(parseHTML(createTagRepeat('span', 12, {'data-month': ix => ix}))); } super.init(options); } setOptions(options) { if (options.locale) { this.monthNames = options.locale.monthsShort; } if (hasProperty(options, 'minDate')) { if (options.minDate === undefined) { this.minYear = this.minMonth = this.minDate = undefined; } else { const minDateObj = new Date(options.minDate); this.minYear = minDateObj.getFullYear(); this.minMonth = minDateObj.getMonth(); this.minDate = minDateObj.setDate(1); } } if (hasProperty(options, 'maxDate')) { if (options.maxDate === undefined) { this.maxYear = this.maxMonth = this.maxDate = undefined; } else { const maxDateObj = new Date(options.maxDate); this.maxYear = maxDateObj.getFullYear(); this.maxMonth = maxDateObj.getMonth(); this.maxDate = dateValue(this.maxYear, this.maxMonth + 1, 0); } } if (options.beforeShowMonth !== undefined) { this.beforeShow = typeof options.beforeShowMonth === 'function' ? options.beforeShowMonth : undefined; } } // Update view's settings to reflect the viewDate set on the picker updateFocus() { const viewDate = new Date(this.picker.viewDate); this.year = viewDate.getFullYear(); this.focused = viewDate.getMonth(); } // Update view's settings to reflect the selected dates updateSelection() { const {dates, rangepicker} = this.picker.datepicker; this.selected = dates.reduce((selected, timeValue) => { const date = new Date(timeValue); const year = date.getFullYear(); const month = date.getMonth(); if (selected[year] === undefined) { selected[year] = [month]; } else { pushUnique(selected[year], month); } return selected; }, {}); if (rangepicker && rangepicker.dates) { this.range = rangepicker.dates.map(timeValue => { const date = new Date(timeValue); return isNaN(date) ? undefined : [date.getFullYear(), date.getMonth()]; }); } } // Update the entire view UI render() { // refresh disabled months on every render in order to clear the ones added // by beforeShow hook at previous render this.disabled = []; this.picker.setViewSwitchLabel(this.year); this.picker.setPrevBtnDisabled(this.year <= this.minYear); this.picker.setNextBtnDisabled(this.year >= this.maxYear); const selected = this.selected[this.year] || []; const yrOutOfRange = this.year < this.minYear || this.year > this.maxYear; const isMinYear = this.year === this.minYear; const isMaxYear = this.year === this.maxYear; const range = computeMonthRange(this.range, this.year); Array.from(this.grid.children).forEach((el, index) => { const classList = el.classList; const date = dateValue(this.year, index, 1); el.className = `datepicker-cell hover:bg-neutral-tertiary-medium block flex-1 leading-9 border-0 rounded-base cursor-pointer text-center text-body font-medium text-sm ${this.cellClass}`; if (this.isMinView) { el.dataset.date = date; } // reset text on every render to clear the custom content set // by beforeShow hook at previous render el.textContent = this.monthNames[index]; if ( yrOutOfRange || isMinYear && index < this.minMonth || isMaxYear && index > this.maxMonth ) { classList.add('disabled'); } if (range) { const [rangeStart, rangeEnd] = range; if (index > rangeStart && index < rangeEnd) { classList.add('range'); } if (index === rangeStart) { classList.add('range-start'); } if (index === rangeEnd) { classList.add('range-end'); } } if (selected.includes(index)) { classList.add('selected', 'bg-blue-700', '!bg-primary-700', 'text-white', 'dark:bg-blue-600', 'dark:!bg-primary-600', 'dark:text-white'); classList.remove('text-body', 'hover:bg-neutral-tertiary-medium', 'dark:text-white'); } if (index === this.focused) { classList.add('focused'); } if (this.beforeShow) { this.performBeforeHook(el, index, date); } }); } // Update the view UI by applying the changes of selected and focused items refresh() { const selected = this.selected[this.year] || []; const [rangeStart, rangeEnd] = computeMonthRange(this.range, this.year) || []; this.grid .querySelectorAll('.range, .range-start, .range-end, .selected, .focused') .forEach((el) => { el.classList.remove('range', 'range-start', 'range-end', 'selected', 'bg-blue-700', '!bg-primary-700', 'dark:bg-blue-600', 'dark:!bg-primary-700', 'dark:text-white', 'text-white', 'focused'); el.classList.add('text-body', 'hover:bg-neutral-tertiary-medium', 'dark:text-white'); }); Array.from(this.grid.children).forEach((el, index) => { const classList = el.classList; if (index > rangeStart && index < rangeEnd) { classList.add('range'); } if (index === rangeStart) { classList.add('range-start'); } if (index === rangeEnd) { classList.add('range-end'); } if (selected.includes(index)) { classList.add('selected', 'bg-blue-700', '!bg-primary-700', 'text-white', 'dark:bg-blue-600', 'dark:!bg-primary-600', 'dark:text-white'); classList.remove('text-body', 'hover:bg-neutral-tertiary-medium', 'dark:text-white'); } if (index === this.focused) { classList.add('focused'); } }); } // Update the view UI by applying the change of focused item refreshFocus() { this.grid.querySelectorAll('.focused').forEach((el) => { el.classList.remove('focused'); }); this.grid.children[this.focused].classList.add('focused'); } } function toTitleCase(word) { return [...word].reduce((str, ch, ix) => str += ix ? ch : ch.toUpperCase(), ''); } // Class representing the years and decades view elements class YearsView extends View { constructor(picker, config) { super(picker, config); } init(options, onConstruction = true) { if (onConstruction) { this.navStep = this.step * 10; this.beforeShowOption = `beforeShow${toTitleCase(this.cellClass)}`; this.grid = this.element; this.element.classList.add(this.name, 'datepicker-grid', 'w-64', 'grid', 'grid-cols-4'); this.grid.appendChild(parseHTML(createTagRepeat('span', 12))); } super.init(options); } setOptions(options) { if (hasProperty(options, 'minDate')) { if (options.minDate === undefined) { this.minYear = this.minDate = undefined; } else { this.minYear = startOfYearPeriod(options.minDate, this.step); this.minDate = dateValue(this.minYear, 0, 1); } } if (hasProperty(options, 'maxDate')) { if (options.maxDate === undefined) { this.maxYear = this.maxDate = undefined; } else { this.maxYear = startOfYearPeriod(options.maxDate, this.step); this.maxDate = dateValue(this.maxYear, 11, 31); } } if (options[this.beforeShowOption] !== undefined) { const beforeShow = options[this.beforeShowOption]; this.beforeShow = typeof beforeShow === 'function' ? beforeShow : undefined; } } // Update view's settings to reflect the viewDate set on the picker updateFocus() { const viewDate = new Date(this.picker.viewDate); const first = startOfYearPeriod(viewDate, this.navStep); const last = first + 9 * this.step; this.first = first; this.last = last; this.start = first - this.step; this.focused = startOfYearPeriod(viewDate, this.step); } // Update view's settings to reflect the selected dates updateSelection() { const {dates, rangepicker} = this.picker.datepicker; this.selected = dates.reduce((years, timeValue) => { return pushUnique(years, startOfYearPeriod(timeValue, this.step)); }, []); if (rangepicker && rangepicker.dates) { this.range = rangepicker.dates.map(timeValue => { if (timeValue !== undefined) { return startOfYearPeriod(timeValue, this.step); } }); } } // Update the entire view UI render() { // refresh disabled years on every render in order to clear the ones added // by beforeShow hook at previous render this.disabled = []; this.picker.setViewSwitchLabel(`${this.first}-${this.last}`); this.picker.setPrevBtnDisabled(this.first <= this.minYear); this.picker.setNextBtnDisabled(this.last >= this.maxYear); Array.from(this.grid.children).forEach((el, index) => { const classList = el.classList; const current = this.start + (index * this.step); const date = dateValue(current, 0, 1); el.className = `datepicker-cell hover:bg-neutral-tertiary-medium block flex-1 leading-9 border-0 rounded-base cursor-pointer text-center text-body font-medium text-sm ${this.cellClass}`; if (this.isMinView) { el.dataset.date = date; } el.textContent = el.dataset.year = current; if (index === 0) { classList.add('prev'); } else if (index === 11) { classList.add('next'); } if (current < this.minYear || current > this.maxYear) { classList.add('disabled'); } if (this.range) { const [rangeStart, rangeEnd] = this.range; if (current > rangeStart && current < rangeEnd) { classList.add('range'); } if (current === rangeStart) { classList.add('range-start'); } if (current === rangeEnd) { classList.add('range-end'); } } if (this.selected.includes(current)) { classList.add('selected', 'bg-blue-700', '!bg-primary-700', 'text-white', 'dark:bg-blue-600', 'dark:!bg-primary-600', 'dark:text-white'); classList.remove('text-body', 'hover:bg-neutral-tertiary-medium', 'dark:text-white'); } if (current === this.focused) { classList.add('focused'); } if (this.beforeShow) { this.performBeforeHook(el, current, date); } }); } // Update the view UI by applying the changes of selected and focused items refresh() { const