iflrandevu/assets/js/backend_calendar.js

130 lines
4.9 KiB
JavaScript
Raw Normal View History

2015-07-20 22:41:24 +03:00
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
2015-10-06 00:30:56 +03:00
*
2015-07-20 22:41:24 +03:00
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
2015-10-06 00:30:56 +03:00
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
2015-07-20 22:41:24 +03:00
* @link http://easyappointments.org
* @since v1.0.0
* ---------------------------------------------------------------------------- */
/**
* Backend Calendar
*
* This module contains functions that are used by the backend calendar page.
2015-10-06 00:30:56 +03:00
*
* @module BackendCalendar
*/
window.BackendCalendar = window.BackendCalendar || {};
2015-10-06 00:30:56 +03:00
2018-01-23 12:08:37 +03:00
(function (exports) {
2015-10-06 00:30:56 +03:00
'use strict';
2015-10-06 00:30:56 +03:00
/**
* Bind common event handlers.
*/
function bindEventHandlers() {
2018-01-23 12:08:37 +03:00
var $calendarPage = $('#calendar-page');
2018-01-23 12:08:37 +03:00
$calendarPage.on('click', '#toggle-fullscreen', function () {
var $toggleFullscreen = $(this);
2018-01-23 12:08:37 +03:00
var element = document.documentElement;
var isFullScreen = document.fullScreenElement || document.mozFullScreen || document.webkitIsFullScreen;
2018-01-23 12:08:37 +03:00
if (isFullScreen) {
// Exit fullscreen mode.
if (document.exitFullscreen) {
document.exitFullscreen();
} else if (document.msExitFullscreen) {
document.msExitFullscreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.webkitExitFullscreen) {
2016-10-10 19:29:48 +03:00
document.webkitExitFullscreen();
}
$toggleFullscreen
.removeClass('btn-success')
.addClass('btn-light');
} else {
// Switch to fullscreen mode.
if (element.requestFullscreen) {
element.requestFullscreen();
} else if (element.msRequestFullscreen) {
element.msRequestFullscreen();
} else if (element.mozRequestFullScreen) {
element.mozRequestFullScreen();
} else if (element.webkitRequestFullscreen) {
element.webkitRequestFullscreen();
}
$toggleFullscreen
.removeClass('btn-light')
.addClass('btn-success');
}
});
$('#insert-working-plan-exception').on('click', function () {
var providerId = $('#select-filter-item').val();
var provider = GlobalVariables.availableProviders.find(function (availableProvider) {
return Number(availableProvider.id) === Number(providerId);
});
if (!provider) {
throw new Error('Provider could not be found: ' + providerId);
}
WorkingPlanExceptionsModal
.add()
.done(function (date, workingPlanException) {
var successCallback = function () {
Backend.displayNotification(EALang.working_plan_exception_saved);
var workingPlanExceptions = JSON.parse(provider.settings.working_plan_exceptions) || {};
workingPlanExceptions[date] = workingPlanException;
for (var index in GlobalVariables.availableProviders) {
var availableProvider = GlobalVariables.availableProviders[index];
if (Number(availableProvider.id) === Number(providerId)) {
GlobalVariables.availableProviders[index].settings.working_plan_exceptions = JSON.stringify(workingPlanExceptions);
break;
}
}
$('#select-filter-item').trigger('change'); // Update the calendar.
};
BackendCalendarApi.saveWorkingPlanException(date, workingPlanException, providerId, successCallback, null);
});
});
}
/**
* Initialize Module
*
* This function makes the necessary initialization for the default backend calendar page. If this module
* is used in another page then this function might not be needed.
*
* @param {String} view Optional (default), the calendar view to be loaded.
*/
2018-01-23 12:08:37 +03:00
exports.initialize = function (view) {
BackendCalendarGoogleSync.initialize();
BackendCalendarAppointmentsModal.initialize();
BackendCalendarUnavailabilityEventsModal.initialize();
// Load and initialize the calendar view.
if (view === 'table') {
2018-01-23 12:08:37 +03:00
BackendCalendarTableView.initialize();
} else {
BackendCalendarDefaultView.initialize();
}
bindEventHandlers();
};
})(window.BackendCalendar);