Multi select date picker or calendar npm install git+https://github.com/krasnyt/calendar-lite
Calendar-lite is a Webcomponent build with Polymer. It gives a nice interface to play with it.
- Set min, max date or default date,
- Select Multiple dates(consequent or random)
- Disable week days(example disable all Sundays or Fridays)
- Disable an array of dates(example 1st and 3rd of this month)
- triggers an event on date change(So you can update the value of an input field)
- triggers an event on month change(So you can set different disable dates for different months)
- Customizable theme, if you import calendar-lite-dark.html it gives dark theme.
<calendar-lite></calendar-lite>
<calendar-lite id="someid" disabled-week-day='["Fri","Sun"]' multi-select='{"max":3,"consequent":true}'></calendar-lite>
Note: To work with dark theme import calendar-lite-dark.html rather than calendar-lite.html
You can attach date-change event listener to it as shown below
// called whenever a user selects/change a date
document.querySelector('#someid').addEventListener('date-change', function (e) {
console.log(e.detail.date); //update input values...
})
You can disable week days by passing an array as shown below.
<calendar-lite id="someid" disabled-week-day='["Fri","Sun"]'></calendar-lite>
You can disable a bunch of days by passing an array as shown below.
<calendar-lite id="someid" disabled-days="[4,20,27]"></calendar-lite>
Here you may get a doubt that "How to disable different dates for different months?"
Answer is, you can update the disable dates on month-change
event as shown below.
document.querySelector('#someid').addEventListener('month-change', function (e) {
//takecare month numbering starts from 0
if(e.detail.date.getMonth() == 4){
document.querySelector('#someid').disabledDays = [1]
}else{
document.querySelector('#someid').disabledDays = [7,8]
}
})
You can select multiple days by passing an Object to multi-select
attribute as shown below.
<calendar-lite id="someid" multi-select='{"max":3,"consequent":false}' disabled-week-day='["Fri"]' disabled-days="[2,3,4]">
</calendar-lite>
To get the selected multiple dates, use below listener
document.querySelector('#excalendar').addEventListener('multiselect', function (e) {
console.log(e.detail.dates); // array of selected dates
})
In Object multi-select: max
is nothing but maximum number of days that can be selected, if consequent
is true it will select the days in consequent.
you can provide min and max dates, such that calendar-lite will disable the remaining dates.
<calendar-lite id="someid" min-date="2016,12,9" multi-select='{"max":3,"consequent":false}' disabled-week-day='["Fri"]' disabled-days="[2,3,4]">
</calendar-lite>
min-date and max-date format should be yyyy-mm-dd.
By default present(today) day is selected, you can set a default date as shown below
<calendar-lite id="someid" date="01/07/2015">
</calendar-lite>
To change main header color of calendar-lite
<calendar-lite main-color="#E91E63" id="someid"></calendar-lite>
You can use dark theme calendar by importing calendar-lite-dark.html
instead of calendar-lite.html
<calendar-lite id="someid"></calendar-lite>