From ac630a1019740a27058239dbfbad0a6a5d485a30 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Thu, 6 Jan 2022 09:54:30 +0100 Subject: [PATCH] Ported the GeneralFunctions.displayMessageBox function to App.Utils.Message.show --- assets/js/utils/message.js | 72 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 assets/js/utils/message.js diff --git a/assets/js/utils/message.js b/assets/js/utils/message.js new file mode 100644 index 00000000..cee9f17b --- /dev/null +++ b/assets/js/utils/message.js @@ -0,0 +1,72 @@ +/* ---------------------------------------------------------------------------- + * Easy!Appointments - Open Source Web Scheduler + * + * @package EasyAppointments + * @author A.Tselegidis + * @copyright Copyright (c) Alex Tselegidis + * @license https://opensource.org/licenses/GPL-3.0 - GPLv3 + * @link https://easyappointments.org + * @since v1.5.0 + * ---------------------------------------------------------------------------- */ + +window.App.Utils.Message = (function () { + /** + * Show a message box to the user. + * + * This functions displays a message box in the admin array. It is useful when user + * decisions or verifications are needed. + * + * @param {String} title The title of the message box. + * @param {String} message The message of the dialog. + * @param {Array} [buttons] Contains the dialog buttons along with their functions. + */ + function show(title, message, buttons = null) { + if (!buttons) { + buttons = [ + { + text: App.Lang.close, + click: function () { + $('#message-box').dialog('close'); + } + } + ]; + } + + // Destroy previous dialog instances. + + $('#message-box').dialog('destroy').remove(); + + // Create the HTML of the message box. + + const $messageBox = $('
', { + 'id': 'message-box', + 'title': title, + 'html': [ + $('

', { + 'html': message + }) + ] + }).appendTo('body'); + + $messageBox.dialog({ + autoOpen: false, + modal: true, + resize: 'auto', + width: 'auto', + height: 'auto', + resizable: false, + buttons: buttons, + closeOnEscape: true + }); + + $messageBox.dialog('open'); + + $('.ui-dialog .ui-dialog-buttonset button').addClass('btn btn-outline-secondary'); + + $('#message-box .ui-dialog-titlebar-close').hide(); + } + + return { + show + }; +})();