salix/front/core/components/calendar/index.js

293 lines
7.2 KiB
JavaScript
Raw Normal View History

2018-11-12 10:31:58 +00:00
import ngModule from '../../module';
import Component from '../../lib/component';
import './style.scss';
/**
2019-04-29 09:49:43 +00:00
* Flat calendar.
2018-11-12 10:31:58 +00:00
*
*/
export default class Calendar extends Component {
constructor($element, $scope) {
super($element, $scope);
2019-01-21 10:45:53 +00:00
this.events = [];
2018-11-12 10:31:58 +00:00
this.defaultDate = new Date();
2019-01-21 10:45:53 +00:00
this.displayControls = true;
this.skip = 1;
2018-11-12 10:31:58 +00:00
}
/**
* Returns the initial date
*
* @return {Date} - Default date
*/
2018-11-12 10:31:58 +00:00
get defaultDate() {
return this._defaultDate;
}
/**
* Sets a new initial date
*
* @param {Date} value - New default date
*/
2018-11-12 10:31:58 +00:00
set defaultDate(value) {
this._defaultDate = value;
2019-01-21 10:45:53 +00:00
this.repaint();
}
/**
* Sets initial events
*
* @param {Array} value - Array of events
*/
set data(value) {
2019-01-21 10:45:53 +00:00
if (!value) return;
2018-11-12 10:31:58 +00:00
this.events = [];
2019-01-21 10:45:53 +00:00
value.forEach(event => {
this.addEvent(event);
});
2019-01-21 10:45:53 +00:00
if (value.length && this.defaultDate)
this.repaint();
}
/**
* Gets current month date
*/
get currentMonth() {
return this.defaultDate;
}
/**
* Gets next month date
*
* @return {Date}
*/
2019-01-21 10:45:53 +00:00
get nextMonth() {
const newDate = new Date(this.currentMonth);
newDate.setMonth(this.currentMonth.getMonth() + 1);
return newDate;
2018-11-12 10:31:58 +00:00
}
/**
* Gets previous month date
*
* @return {Date}
*/
2019-01-21 10:45:53 +00:00
get previousMonth() {
const newDate = new Date(this.currentMonth);
newDate.setMonth(this.currentMonth.getMonth() - 1);
return newDate;
}
/**
* Returns first day of month from a given date
*
* @param {Date} date - Origin date
* @return {Integer}
*/
firstDay(date) {
const newDate = new Date(
date.getFullYear(),
date.getMonth(), 1);
return newDate;
}
/**
* Returns last day of month from a given date
*
* @param {Date} date - Origin date
* @return {Integer}
*/
lastDay(date) {
const newDate = new Date(
date.getFullYear(),
date.getMonth() + 1, 0);
return newDate;
}
repaint() {
const firstWeekday = this.firstDay(this.currentMonth).getDay();
const previousLastDay = this.lastDay(this.previousMonth).getDate();
const currentLastDay = this.lastDay(this.currentMonth).getDate();
const maxFields = 42; // Max field limit
2018-11-12 10:31:58 +00:00
2019-01-21 10:45:53 +00:00
let weekdayOffset = firstWeekday > 0 ? firstWeekday : 7;
let dayPrevious = previousLastDay - (weekdayOffset - 2);
let dayCurrent = 1;
let dayNext = 1;
2018-11-12 10:31:58 +00:00
this.days = [];
2019-01-21 10:45:53 +00:00
for (let fieldIndex = 1; fieldIndex < maxFields; fieldIndex++) {
// Insert previous month days
2019-01-21 10:45:53 +00:00
if (fieldIndex < weekdayOffset) {
const dated = new Date(
this.previousMonth.getFullYear(),
this.previousMonth.getMonth(), dayPrevious);
this.insertDay(dated, 'gray');
2019-01-21 10:45:53 +00:00
dayPrevious++;
}
// Insert current month days
if (fieldIndex >= weekdayOffset && dayCurrent <= currentLastDay) {
const dated = new Date(
this.currentMonth.getFullYear(),
this.currentMonth.getMonth(), dayCurrent);
this.insertDay(dated);
2019-01-21 10:45:53 +00:00
dayCurrent++;
}
// Insert next month days
if (fieldIndex >= weekdayOffset && dayCurrent > currentLastDay) {
const dated = new Date(
this.nextMonth.getFullYear(),
this.nextMonth.getMonth(), dayNext);
this.insertDay(dated, 'gray');
2019-01-21 10:45:53 +00:00
dayNext++;
2018-11-12 10:31:58 +00:00
}
}
}
/**
* Inserts a date on an array of month days
*
* @param {Date} dated - Date of month
* @param {String} className - Default class style
*/
insertDay(dated, className = '') {
2019-01-21 10:45:53 +00:00
let event = this.events.find(event => {
return event.dated >= dated && event.dated <= dated;
2019-01-21 10:45:53 +00:00
});
2019-02-25 10:55:59 +00:00
// Weeekends
if (dated.getMonth() === this.currentMonth.getMonth() && dated.getDay() == 0)
2019-03-22 07:28:57 +00:00
className = 'red';
this.days.push({dated, className, event});
2019-01-21 10:45:53 +00:00
}
/**
* Adds a new calendar event
*
* @param {Object} options - Event params
* @param {Date} options.dated - Day to add event
* @param {String} options.title - Tooltip description
* @param {String} options.className - ClassName style
* @param {Object} options.style - Style properties
* @param {Boolean} options.isRemovable - True if is removable by users
2019-01-21 10:45:53 +00:00
*/
addEvent(options) {
if (!Object.hasOwnProperty.call(options, 'isRemovable'))
options.isRemovable = true;
options.dated = new Date(options.dated);
options.dated.setHours(0, 0, 0, 0);
2019-01-21 10:45:53 +00:00
const event = this.events.findIndex(event => {
return event.dated >= options.dated && event.dated <= options.dated;
2019-01-21 10:45:53 +00:00
});
if (event < 0)
this.events.push(options);
2019-01-21 10:45:53 +00:00
}
/**
* Removes an event from an array of events
* @param {Object} dated - Dated event
*/
removeEvent(dated) {
dated = new Date(dated);
dated.setHours(0, 0, 0, 0);
2019-01-21 10:45:53 +00:00
const event = this.events.findIndex(event => {
return event.dated >= dated && event.dated <= dated;
2019-01-21 10:45:53 +00:00
});
if (event > -1)
this.events.splice(event, 1);
}
/**
* Moves to next month(s)
2019-01-21 10:45:53 +00:00
*
* @param {Integer} skip - Months to skip at once
*/
moveNext(skip = 1) {
let next = this.defaultDate.getMonth() + skip;
2018-11-12 10:31:58 +00:00
this.defaultDate.setMonth(next);
2019-01-21 10:45:53 +00:00
this.repaint();
this.emit('moveNext');
2018-11-12 10:31:58 +00:00
}
2019-01-21 10:45:53 +00:00
/**
* Moves to previous month(s)
2019-01-21 10:45:53 +00:00
*
* @param {Integer} skip - Months to skip at once
*/
movePrevious(skip = 1) {
let previous = this.defaultDate.getMonth() - skip;
2018-11-12 10:31:58 +00:00
this.defaultDate.setMonth(previous);
2019-01-21 10:45:53 +00:00
this.repaint();
this.emit('movePrevious');
2018-11-12 10:31:58 +00:00
}
2019-01-21 10:45:53 +00:00
/**
* Day selection event
*
* @param {Integer} index - Index from days array
*/
2018-11-12 10:31:58 +00:00
select(index) {
2019-01-21 10:45:53 +00:00
let day = this.days[index];
day.index = index;
this.emit('selection', {values: [day]});
2018-11-12 10:31:58 +00:00
}
/**
* WeekDay selection event
*
* @param {Integer} weekday - weekday index
*/
2019-01-21 10:45:53 +00:00
selectAll(weekday) {
let selected = [];
for (let i in this.days) {
const day = this.days[i];
const date = day.dated;
2019-01-21 10:45:53 +00:00
day.index = i;
if (date.getDay() === weekday && date.getMonth() == this.defaultDate.getMonth())
selected.push(day);
}
this.emit('selection', {values: selected});
}
2018-11-12 10:31:58 +00:00
}
Calendar.$inject = ['$element', '$scope'];
2018-11-12 10:31:58 +00:00
ngModule.component('vnCalendar', {
template: require('./index.html'),
controller: Calendar,
bindings: {
model: '<',
data: '<?',
2019-05-17 11:27:51 +00:00
defaultDate: '=?',
2019-01-21 10:45:53 +00:00
onSelection: '&?',
onMoveNext: '&?',
onMovePrevious: '&?',
displayControls: '<?',
skip: '<?'
2018-11-12 10:31:58 +00:00
}
});