2019-04-17 15:58:15 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
|
|
value: true
|
|
|
|
});
|
|
|
|
|
|
|
|
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; // Styles
|
|
|
|
|
|
|
|
// Mixins
|
|
|
|
|
|
|
|
// Util
|
|
|
|
|
|
|
|
|
|
|
|
require('../../../src/stylus/components/_calendar-weekly.styl');
|
|
|
|
|
|
|
|
var _calendarBase = require('./mixins/calendar-base');
|
|
|
|
|
|
|
|
var _calendarBase2 = _interopRequireDefault(_calendarBase);
|
|
|
|
|
|
|
|
var _props = require('./util/props');
|
|
|
|
|
|
|
|
var _props2 = _interopRequireDefault(_props);
|
|
|
|
|
|
|
|
var _timestamp = require('./util/timestamp');
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
|
|
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
|
|
|
|
|
|
|
/* @vue/component */
|
|
|
|
exports.default = _calendarBase2.default.extend({
|
|
|
|
name: 'v-calendar-weekly',
|
|
|
|
props: _props2.default.weeks,
|
|
|
|
computed: {
|
|
|
|
staticClass: function staticClass() {
|
|
|
|
return 'v-calendar-weekly';
|
|
|
|
},
|
|
|
|
classes: function classes() {
|
|
|
|
return this.themeClasses;
|
|
|
|
},
|
|
|
|
parsedMinWeeks: function parsedMinWeeks() {
|
|
|
|
return parseInt(this.minWeeks);
|
|
|
|
},
|
|
|
|
days: function days() {
|
|
|
|
var minDays = this.parsedMinWeeks * this.weekdays.length;
|
|
|
|
var start = this.getStartOfWeek(this.parsedStart);
|
|
|
|
var end = this.getEndOfWeek(this.parsedEnd);
|
|
|
|
return (0, _timestamp.createDayList)(start, end, this.times.today, this.weekdaySkips, Number.MAX_SAFE_INTEGER, minDays);
|
|
|
|
},
|
|
|
|
todayWeek: function todayWeek() {
|
|
|
|
var today = this.times.today;
|
|
|
|
var start = this.getStartOfWeek(today);
|
|
|
|
var end = this.getEndOfWeek(today);
|
|
|
|
return (0, _timestamp.createDayList)(start, end, today, this.weekdaySkips, this.weekdays.length, this.weekdays.length);
|
|
|
|
},
|
|
|
|
monthFormatter: function monthFormatter() {
|
|
|
|
if (this.monthFormat) {
|
|
|
|
return this.monthFormat;
|
|
|
|
}
|
|
|
|
var longOptions = { timeZone: 'UTC', month: 'long' };
|
|
|
|
var shortOptions = { timeZone: 'UTC', month: 'short' };
|
|
|
|
return (0, _timestamp.createNativeLocaleFormatter)(this.locale, function (_tms, short) {
|
|
|
|
return short ? shortOptions : longOptions;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
isOutside: function isOutside(day) {
|
|
|
|
var dayIdentifier = (0, _timestamp.getDayIdentifier)(day);
|
|
|
|
return dayIdentifier < (0, _timestamp.getDayIdentifier)(this.parsedStart) || dayIdentifier > (0, _timestamp.getDayIdentifier)(this.parsedEnd);
|
|
|
|
},
|
|
|
|
genHead: function genHead() {
|
|
|
|
return this.$createElement('div', {
|
|
|
|
staticClass: 'v-calendar-weekly__head'
|
|
|
|
}, this.genHeadDays());
|
|
|
|
},
|
|
|
|
genHeadDays: function genHeadDays() {
|
|
|
|
return this.todayWeek.map(this.genHeadDay);
|
|
|
|
},
|
|
|
|
genHeadDay: function genHeadDay(day, index) {
|
|
|
|
var outside = this.isOutside(this.days[index]);
|
|
|
|
var color = day.present ? this.color : undefined;
|
|
|
|
return this.$createElement('div', this.setTextColor(color, {
|
|
|
|
key: day.date,
|
|
|
|
staticClass: 'v-calendar-weekly__head-weekday',
|
|
|
|
class: this.getRelativeClasses(day, outside)
|
|
|
|
}), this.weekdayFormatter(day, this.shortWeekdays));
|
|
|
|
},
|
|
|
|
genWeeks: function genWeeks() {
|
|
|
|
var days = this.days;
|
|
|
|
var weekDays = this.weekdays.length;
|
|
|
|
var weeks = [];
|
|
|
|
for (var i = 0; i < days.length; i += weekDays) {
|
|
|
|
weeks.push(this.genWeek(days.slice(i, i + weekDays)));
|
|
|
|
}
|
|
|
|
return weeks;
|
|
|
|
},
|
|
|
|
genWeek: function genWeek(week) {
|
|
|
|
return this.$createElement('div', {
|
|
|
|
key: week[0].date,
|
|
|
|
staticClass: 'v-calendar-weekly__week'
|
|
|
|
}, week.map(this.genDay));
|
|
|
|
},
|
|
|
|
genDay: function genDay(day) {
|
|
|
|
var outside = this.isOutside(day);
|
|
|
|
var slot = this.$scopedSlots.day;
|
|
|
|
var slotData = _extends({ outside: outside }, day);
|
|
|
|
var hasMonth = day.day === 1 && this.showMonthOnFirst;
|
|
|
|
return this.$createElement('div', {
|
|
|
|
key: day.date,
|
|
|
|
staticClass: 'v-calendar-weekly__day',
|
|
|
|
class: this.getRelativeClasses(day, outside),
|
|
|
|
on: this.getDefaultMouseEventHandlers(':day', function (_e) {
|
|
|
|
return day;
|
|
|
|
})
|
|
|
|
}, [this.genDayLabel(day), hasMonth ? this.genDayMonth(day) : '', slot ? slot(slotData) : '']);
|
|
|
|
},
|
|
|
|
genDayLabel: function genDayLabel(day) {
|
|
|
|
var color = day.present ? this.color : undefined;
|
|
|
|
var slot = this.$scopedSlots.dayLabel;
|
|
|
|
return this.$createElement('div', this.setTextColor(color, {
|
|
|
|
staticClass: 'v-calendar-weekly__day-label',
|
|
|
|
on: this.getMouseEventHandlers({
|
|
|
|
'click:date': { event: 'click', stop: true },
|
|
|
|
'contextmenu:date': { event: 'contextmenu', stop: true, prevent: true, result: false }
|
|
|
|
}, function (_e) {
|
|
|
|
return day;
|
|
|
|
})
|
|
|
|
}), slot ? slot(day) : this.dayFormatter(day, false));
|
|
|
|
},
|
|
|
|
genDayMonth: function genDayMonth(day) {
|
|
|
|
var color = day.present ? this.color : undefined;
|
|
|
|
var slot = this.$scopedSlots.dayMonth;
|
|
|
|
return this.$createElement('div', this.setTextColor(color, {
|
|
|
|
staticClass: 'v-calendar-weekly__day-month'
|
|
|
|
}), slot ? slot(day) : this.monthFormatter(day, this.shortMonths));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
render: function render(h) {
|
|
|
|
return h('div', {
|
|
|
|
staticClass: this.staticClass,
|
|
|
|
class: this.classes,
|
|
|
|
nativeOn: {
|
|
|
|
dragstart: function dragstart(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, [!this.hideHeader ? this.genHead() : ''].concat(_toConsumableArray(this.genWeeks())));
|
|
|
|
}
|
|
|
|
});
|
2019-06-04 14:29:48 +02:00
|
|
|
//# sourceMappingURL=VCalendarWeekly.js.map
|