You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
4.5 KiB
JavaScript
125 lines
4.5 KiB
JavaScript
"use strict";
|
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
};
|
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var core_1 = require("@angular/core");
|
|
var common_1 = require("@angular/common");
|
|
var core_2 = require("@fullcalendar/core");
|
|
var FullCalendar = /** @class */ (function () {
|
|
function FullCalendar(el) {
|
|
this.el = el;
|
|
}
|
|
FullCalendar.prototype.ngOnInit = function () {
|
|
this.config = {
|
|
theme: true
|
|
};
|
|
if (this.options) {
|
|
for (var prop in this.options) {
|
|
this.config[prop] = this.options[prop];
|
|
}
|
|
}
|
|
};
|
|
FullCalendar.prototype.ngAfterViewChecked = function () {
|
|
if (!this.initialized && this.el.nativeElement.offsetParent) {
|
|
this.initialize();
|
|
}
|
|
};
|
|
Object.defineProperty(FullCalendar.prototype, "events", {
|
|
get: function () {
|
|
return this._events;
|
|
},
|
|
set: function (value) {
|
|
this._events = value;
|
|
if (this._events && this.calendar) {
|
|
this.calendar.removeAllEventSources();
|
|
this.calendar.addEventSource(this._events);
|
|
}
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
Object.defineProperty(FullCalendar.prototype, "options", {
|
|
get: function () {
|
|
return this._options;
|
|
},
|
|
set: function (value) {
|
|
this._options = value;
|
|
if (this._options && this.calendar) {
|
|
for (var prop in this._options) {
|
|
var optionValue = this._options[prop];
|
|
this.config[prop] = optionValue;
|
|
this.calendar.setOption(prop, optionValue);
|
|
}
|
|
}
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
FullCalendar.prototype.initialize = function () {
|
|
this.calendar = new core_2.Calendar(this.el.nativeElement.children[0], this.config);
|
|
this.calendar.render();
|
|
this.initialized = true;
|
|
if (this.events) {
|
|
this.calendar.removeAllEventSources();
|
|
this.calendar.addEventSource(this.events);
|
|
}
|
|
};
|
|
FullCalendar.prototype.getCalendar = function () {
|
|
return this.calendar;
|
|
};
|
|
FullCalendar.prototype.ngOnDestroy = function () {
|
|
if (this.calendar) {
|
|
this.calendar.destroy();
|
|
this.initialized = false;
|
|
this.calendar = null;
|
|
}
|
|
};
|
|
__decorate([
|
|
core_1.Input(),
|
|
__metadata("design:type", Object)
|
|
], FullCalendar.prototype, "style", void 0);
|
|
__decorate([
|
|
core_1.Input(),
|
|
__metadata("design:type", String)
|
|
], FullCalendar.prototype, "styleClass", void 0);
|
|
__decorate([
|
|
core_1.Input(),
|
|
__metadata("design:type", Object),
|
|
__metadata("design:paramtypes", [Object])
|
|
], FullCalendar.prototype, "events", null);
|
|
__decorate([
|
|
core_1.Input(),
|
|
__metadata("design:type", Object),
|
|
__metadata("design:paramtypes", [Object])
|
|
], FullCalendar.prototype, "options", null);
|
|
FullCalendar = __decorate([
|
|
core_1.Component({
|
|
selector: 'p-fullCalendar',
|
|
template: '<div [ngStyle]="style" [class]="styleClass"></div>'
|
|
}),
|
|
__metadata("design:paramtypes", [core_1.ElementRef])
|
|
], FullCalendar);
|
|
return FullCalendar;
|
|
}());
|
|
exports.FullCalendar = FullCalendar;
|
|
var FullCalendarModule = /** @class */ (function () {
|
|
function FullCalendarModule() {
|
|
}
|
|
FullCalendarModule = __decorate([
|
|
core_1.NgModule({
|
|
imports: [common_1.CommonModule],
|
|
exports: [FullCalendar],
|
|
declarations: [FullCalendar]
|
|
})
|
|
], FullCalendarModule);
|
|
return FullCalendarModule;
|
|
}());
|
|
exports.FullCalendarModule = FullCalendarModule;
|
|
//# sourceMappingURL=fullcalendar.js.map
|