91 lines
2.1 KiB
JavaScript
91 lines
2.1 KiB
JavaScript
/**
|
|
* Range datepicker wrapper.
|
|
*
|
|
* @author Htmlstream
|
|
* @version 1.0
|
|
*
|
|
*/
|
|
;(function ($) {
|
|
'use strict';
|
|
|
|
$.HSCore.components.HSRangeDatepicker = {
|
|
/**
|
|
*
|
|
*
|
|
* @var Object _baseConfig
|
|
*/
|
|
_baseConfig: {},
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @var jQuery pageCollection
|
|
*/
|
|
pageCollection: $(),
|
|
|
|
/**
|
|
* Initialization of Range datepicker wrapper.
|
|
*
|
|
* @param String selector (optional)
|
|
* @param Object config (optional)
|
|
*
|
|
* @return jQuery pageCollection - collection of initialized items.
|
|
*/
|
|
|
|
init: function (selector, config) {
|
|
|
|
this.collection = selector && $(selector).length ? $(selector) : $();
|
|
if (!$(selector).length) return;
|
|
|
|
this.config = config && $.isPlainObject(config) ?
|
|
$.extend({}, this._baseConfig, config) : this._baseConfig;
|
|
|
|
this.config.itemSelector = selector;
|
|
|
|
this.initRangeDatepicker();
|
|
|
|
return this.pageCollection;
|
|
|
|
},
|
|
|
|
initRangeDatepicker: function () {
|
|
//Variables
|
|
var $self = this,
|
|
collection = $self.pageCollection;
|
|
|
|
//Actions
|
|
this.collection.each(function (i, el) {
|
|
//Variables
|
|
var $this = $(el),
|
|
optWrapper = $this.data('rp-wrapper'),
|
|
optIsInline = Boolean($this.data('rp-is-inline')),
|
|
optType = $this.data('rp-type'),
|
|
optDateFormat = $this.data('rp-date-format'),
|
|
optDefaultDate = JSON.parse(el.getAttribute('data-rp-default-date'));
|
|
|
|
$this.flatpickr({
|
|
inline: optIsInline, // boolean
|
|
mode: optType ? optType : 'single', // 'single', 'multiple', 'range'
|
|
dateFormat: optDateFormat ? optDateFormat : 'd M Y',
|
|
defaultDate: optDefaultDate,
|
|
appendTo: $(optWrapper)[0],
|
|
locale: {
|
|
firstDayOfWeek: 1,
|
|
weekdays: {
|
|
shorthand: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"]
|
|
},
|
|
rangeSeparator: ' - '
|
|
}
|
|
});
|
|
|
|
$this.css({
|
|
width: $this.val().length * 7.5
|
|
});
|
|
|
|
//Actions
|
|
collection = collection.add($this);
|
|
});
|
|
}
|
|
};
|
|
})(jQuery);
|