mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
127 lines
4.7 KiB
JavaScript
Executable file
127 lines
4.7 KiB
JavaScript
Executable file
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
*
|
|
* @package EasyAppointments
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
* @link https://easyappointments.org
|
|
* @since v1.0.0
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* Calendar page.
|
|
*
|
|
* This module implements the functionality of the backend calendar page.
|
|
*/
|
|
App.Pages.Calendar = (function () {
|
|
const $insertWorkingPlanException = $('#insert-working-plan-exception');
|
|
|
|
/**
|
|
* Add the page event listeners.
|
|
*/
|
|
function addEventListeners() {
|
|
const $calendarPage = $('#calendar-page');
|
|
|
|
$calendarPage.on('click', '#toggle-fullscreen', (event) => {
|
|
const $toggleFullscreen = $(event.target);
|
|
const element = document.documentElement;
|
|
const isFullScreen = document.fullScreenElement || document.mozFullScreen || document.webkitIsFullScreen;
|
|
|
|
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) {
|
|
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');
|
|
}
|
|
});
|
|
|
|
$insertWorkingPlanException.on('click', () => {
|
|
const providerId = $('#select-filter-item').val();
|
|
|
|
const provider = App.Vars.available_providers.find((availableProvider) => {
|
|
return Number(availableProvider.id) === Number(providerId);
|
|
});
|
|
|
|
if (!provider) {
|
|
throw new Error('Provider could not be found: ' + providerId);
|
|
}
|
|
|
|
App.Components.WorkingPlanExceptionsModal.add().done((date, workingPlanException) => {
|
|
const successCallback = () => {
|
|
App.Layouts.Backend.displayNotification(App.Lang.working_plan_exception_saved);
|
|
|
|
const workingPlanExceptions = JSON.parse(provider.settings.working_plan_exceptions) || {};
|
|
|
|
workingPlanExceptions[date] = workingPlanException;
|
|
|
|
for (let index in App.Vars.available_providers) {
|
|
const availableProvider = App.Vars.available_providers[index];
|
|
|
|
if (Number(availableProvider.id) === Number(providerId)) {
|
|
App.Vars.available_providers[index].settings.working_plan_exceptions =
|
|
JSON.stringify(workingPlanExceptions);
|
|
break;
|
|
}
|
|
}
|
|
|
|
$('#select-filter-item').trigger('change'); // Update the calendar.
|
|
};
|
|
|
|
App.Http.Calendar.saveWorkingPlanException(
|
|
date,
|
|
workingPlanException,
|
|
providerId,
|
|
successCallback,
|
|
null
|
|
);
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Initialize the 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.
|
|
*/
|
|
function initialize() {
|
|
// Load and initialize the calendar view.
|
|
if (App.Vars.calendar_view === 'table') {
|
|
App.Utils.CalendarTableView.initialize();
|
|
} else {
|
|
App.Utils.CalendarDefaultView.initialize();
|
|
}
|
|
|
|
addEventListeners();
|
|
}
|
|
|
|
document.addEventListener('DOMContentLoaded', initialize);
|
|
|
|
return {
|
|
initialize
|
|
};
|
|
})();
|