salix/modules/agency/front/calendar/index.js

168 lines
4.3 KiB
JavaScript
Raw Normal View History

2018-12-04 12:18:27 +00:00
import ngModule from '../module';
import Component from 'core/lib/component';
import './style.scss';
2018-09-24 12:51:27 +00:00
class Controller extends Component {
2019-11-18 15:31:37 +00:00
constructor($element, $, vnWeekDays) {
super($element, $);
2019-11-18 15:31:37 +00:00
this.vnWeekDays = vnWeekDays;
2019-10-23 15:38:35 +00:00
this.nMonths = 4;
2019-09-25 18:06:42 +00:00
2019-10-23 15:38:35 +00:00
let date = new Date();
date.setDate(1);
date.setHours(0, 0, 0, 0);
this.date = date;
2018-11-12 10:31:58 +00:00
}
2019-10-23 15:38:35 +00:00
get date() {
return this._date;
}
2019-10-23 15:38:35 +00:00
set date(value) {
this._date = value;
let stamp = value.getTime();
let firstDay = new Date(stamp);
firstDay.setDate(1);
this.firstDay = firstDay;
let lastDay = new Date(stamp);
lastDay.setMonth(lastDay.getMonth() + this.nMonths);
lastDay.setDate(0);
this.lastDay = lastDay;
this.months = [];
for (let i = 0; i < this.nMonths; i++) {
let monthDate = new Date(stamp);
monthDate.setMonth(value.getMonth() + i);
this.months.push(monthDate);
}
this.refreshEvents();
2019-01-21 10:45:53 +00:00
}
2019-10-23 15:38:35 +00:00
step(direction) {
let date = new Date(this.date.getTime());
date.setMonth(date.getMonth() + (this.nMonths * direction));
this.date = date;
2019-01-21 10:45:53 +00:00
}
2019-10-23 15:38:35 +00:00
get data() {
return this._data;
}
2019-10-23 15:38:35 +00:00
set data(value) {
this._data = value;
value = value || {};
2019-11-18 15:31:37 +00:00
2019-10-23 15:38:35 +00:00
this.events = value.events;
2019-11-18 15:31:37 +00:00
function toStamp(date) {
return date && new Date(date).setHours(0, 0, 0, 0);
}
this.exclusionsMap = {};
let exclusions = value.exclusions;
if (exclusions) {
for (let exclusion of exclusions)
this.exclusionsMap[toStamp(exclusion.dated)] = exclusion;
}
let events = value.events;
if (events) {
for (event of events) {
event.dated = toStamp(event.dated);
event.ended = toStamp(event.ended);
event.started = toStamp(event.started);
event.wdays = this.vnWeekDays.fromSet(event.weekDays);
2019-10-23 15:38:35 +00:00
}
2019-09-25 18:06:42 +00:00
}
2019-01-21 10:45:53 +00:00
2019-10-23 15:38:35 +00:00
this.refreshEvents();
2019-01-21 10:45:53 +00:00
2019-10-23 15:38:35 +00:00
let calendars = this.element.querySelectorAll('vn-calendar');
for (let calendar of calendars)
calendar.$ctrl.repaint();
2019-09-25 18:06:42 +00:00
}
2019-10-23 15:38:35 +00:00
refreshEvents() {
this.days = {};
2019-11-18 15:31:37 +00:00
if (!this.data) return;
2019-10-23 15:38:35 +00:00
let day = new Date(this.firstDay.getTime());
while (day <= this.lastDay) {
2019-10-23 15:38:35 +00:00
let stamp = day.getTime();
let wday = day.getDay();
let dayEvents = [];
if (this.events) {
for (let event of this.events) {
let match;
2019-11-18 15:31:37 +00:00
switch (event.type) {
case 'day':
match = event.dated == stamp;
break;
default:
match = event.wdays[wday]
&& (!event.started || stamp >= event.started)
&& (!event.ended || stamp <= event.ended);
break;
}
2019-10-23 15:38:35 +00:00
if (match)
dayEvents.push(event);
}
}
2019-11-18 15:31:37 +00:00
let exclusion = this.exclusionsMap[stamp];
2019-10-23 15:38:35 +00:00
if (dayEvents.length || exclusion) {
let dayData = {};
if (dayEvents.length) dayData.events = dayEvents;
if (exclusion) dayData.exclusion = exclusion;
this.days[stamp] = dayData;
}
day.setDate(day.getDate() + 1);
}
2019-09-25 18:06:42 +00:00
}
2019-01-21 10:45:53 +00:00
2019-10-23 15:38:35 +00:00
onSelection($days, $type, $weekday) {
let $data = [];
for (let day of $days) {
let dayData = this.days[day.getTime()];
if (dayData) $data.push(dayData);
}
this.emit('selection', {
$days,
$type,
$weekday,
$data
});
}
2019-01-21 10:45:53 +00:00
2019-09-25 18:06:42 +00:00
hasEvents(day) {
2019-10-23 15:38:35 +00:00
return this.days[day.getTime()] != null;
2019-01-21 10:45:53 +00:00
}
2019-09-25 18:06:42 +00:00
getClass(day) {
2019-10-23 15:38:35 +00:00
let dayData = this.days[day.getTime()];
return dayData && dayData.exclusion ? 'excluded' : '';
2018-09-24 12:51:27 +00:00
}
}
2019-11-18 15:31:37 +00:00
Controller.$inject = ['$element', '$scope', 'vnWeekDays'];
2018-09-24 12:51:27 +00:00
ngModule.component('vnZoneCalendar', {
template: require('./index.html'),
controller: Controller,
bindings: {
2019-10-23 15:38:35 +00:00
data: '<?'
2018-09-24 12:51:27 +00:00
}
});