Subversion Repositories oidplus

Rev

Rev 1287 | Rev 1292 | Go to most recent revision | View as "text/javascript" | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /*
  2.  * OIDplus 2.0
  3.  * Copyright 2019 - 2022 Daniel Marschall, ViaThinkSoft
  4.  *
  5.  * Licensed under the Apache License, Version 2.0 (the "License");
  6.  * you may not use this file except in compliance with the License.
  7.  * You may obtain a copy of the License at
  8.  *
  9.  *     http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17.  
  18. /*jshint esversion: 6 */
  19.  
  20. // $('#html').jstree();
  21.  
  22. var bs5Utils = undefined;
  23.  
  24. var current_node = "";
  25. var popstate_running = false;
  26. // DEFAULT_LANGUAGE will be set by oidplus.min.js.php
  27. // language_messages will be set by oidplus.min.js.php
  28. // language_tblprefix will be set by oidplus.min.js.php
  29. // csrf_token will be set by oidplus.min.js.php
  30. // samesite_policy will bet set by oidplus.min.js.php
  31.  
  32. var pageChangeCallbacks = [];
  33. var pageChangeRequestCallbacks = [];
  34.  
  35. var pageLoadedCallbacks= {
  36.         "anyPageLoad":         [], // this is processed inside both AJAX successful reload and document.ready (at the very end)
  37.         "ajaxPageLoad":        [], // inside AJAX successful reload only
  38.         "documentReadyBefore": [], // inside document.ready, in the very beginning of the function
  39.         "documentReadyAfter":  []  // inside document.ready, in the very end of the function
  40. };
  41.  
  42. var oidplus_menu_width = 450; // In pixels. You can change this at runtime because of the glayoutWorkaroundB() workaround
  43.  
  44. function executeAllCallbacks(functionsArray) {
  45.         functionsArray.forEach(
  46.                 function(fel) {
  47.                         if (typeof fel == 'function') fel();
  48.                 }
  49.         );
  50. }
  51.  
  52. function getOidPlusSystemTitle() {
  53.         return getMeta('OIDplus-SystemTitle'); // do not translate
  54. }
  55.  
  56. function combine_systemtitle_and_pagetitle(systemtitle, pagetitle) {
  57.         // Please also change the function in index.php
  58.         if (systemtitle == pagetitle) {
  59.                 return systemtitle;
  60.         } else {
  61.                 return pagetitle + ' - ' + systemtitle;
  62.         }
  63. }
  64.  
  65. function getSystemUrl(relative) {
  66.         relative = (typeof relative === 'undefined') ? false : relative; // do not translate
  67.         var url = new URL(window.location.href);
  68.         var res = relative ? url.pathname : url.href.substr(0, url.href.length-url.search.length);
  69.         if (res.endsWith("index.php")) res = res.substring(0, res.lastIndexOf('/')) + "/";
  70.         return res;
  71. }
  72.  
  73. function getTreeLoadURL() {
  74.         var url = new URL(window.location.href);
  75.         var goto = url.searchParams.get("goto");
  76.         return (goto != null) ? "ajax.php?csrf_token="+encodeURIComponent(csrf_token)+"&action=tree_load&anticache="+Date.now()+"&goto="+encodeURIComponent(goto)
  77.                               : "ajax.php?csrf_token="+encodeURIComponent(csrf_token)+"&action=tree_load&anticache="+Date.now();
  78. }
  79.  
  80. function reloadContent() {
  81.         // window.location.href = "?goto="+encodeURIComponent(current_node);
  82.         if (openOidInPanel(current_node, false)) {
  83.                 if(!$('#oidtree').jstree(true).get_node(current_node)) {
  84.                         // Avoid that a language change at "oidplus:srvreg_status" won't redirect the user to "oidplus:srv_registration" because of the reselection during refresh
  85.                         $('#oidtree').jstree("deselect_all");
  86.                 }
  87.  
  88.                 $('#oidtree').jstree("refresh");
  89.         }
  90. }
  91.  
  92. function x_rec(x_data, i) {
  93.         $('#oidtree').jstree('open_node', x_data[i], function(e, data) {
  94.                 if (i+1 < x_data.length) {
  95.                         x_rec(x_data, i+1);
  96.                 } else {
  97.                         popstate_running = true; // don't call openOidInPanel again
  98.                         try {
  99.                                 $('#oidtree').jstree('select_node', x_data[i]);
  100.                         } catch (err) {
  101.                                 popstate_running = false;
  102.                         } finally {
  103.                                 popstate_running = false;
  104.                         }
  105.                 }
  106.         });
  107. }
  108.  
  109. function performCloseQueryCB() {
  110.         for (var i=0; i<pageChangeRequestCallbacks.length; i++) {
  111.                 if (!pageChangeRequestCallbacks[i][0](pageChangeRequestCallbacks[i][1])) return false;
  112.         }
  113.         pageChangeRequestCallbacks = [];
  114.         return true; // may close
  115. }
  116.  
  117. function performCloseCB() {
  118.         for (var i=0; i<pageChangeCallbacks.length; i++) {
  119.                 pageChangeCallbacks[i][0](pageChangeCallbacks[i][1]);
  120.         }
  121.         pageChangeCallbacks = [];
  122. }
  123.  
  124. function openOidInPanel(id, reselect/*=false*/, anchor/*=''*/, force/*=false*/) {
  125.         reselect = (typeof reselect === 'undefined') ? false : reselect; // do not translate
  126.         anchor = (typeof anchor === 'undefined') ? '' : anchor; // do not translate
  127.         force = (typeof force === 'undefined') ? false : force; // do not translate
  128.  
  129.         var mayClose = performCloseQueryCB();
  130.         if (!force && !mayClose) return false;
  131.  
  132.         performCloseCB();
  133.  
  134.         $.xhrPool.abortAll();
  135.  
  136.         if (reselect) {
  137.                 $('#oidtree').jstree('deselect_all');
  138.  
  139.                 popstate_running = true; // don't call openOidInPanel during tree selection
  140.                 try {
  141.                         // If the node is already loaded in the tree, select it
  142.                         if (!$('#oidtree').jstree('select_node', id)) {
  143.                                 // If the node is not loaded, then we try to search it.
  144.                                 // If it can be found, then open all parent nodes and select the node
  145.                                 $.ajax({
  146.                                         url:"ajax.php",
  147.                                         method:"POST",
  148.                                         beforeSend: function(jqXHR, settings) {
  149.                                                 //$.xhrPool.abortAll();
  150.                                                 $.xhrPool.add(jqXHR);
  151.                                         },
  152.                                         complete: function(jqXHR, text) {
  153.                                                 $.xhrPool.remove(jqXHR);
  154.                                         },
  155.                                         data:{
  156.                                                 csrf_token:csrf_token,
  157.                                                 action:"tree_search",
  158.                                                 search:id,
  159.                                                 anticache:Date.now()
  160.                                         },
  161.                                         error:function(jqXHR, textStatus, errorThrown) {
  162.                                                 if (errorThrown == "abort") return;
  163.                                                 console.error("Tree search failed");
  164.                                                 console.error(_L("Error: %1",errorThrown));
  165.                                         },
  166.                                         success:function(data) {
  167.                                                 if ("error" in data) {
  168.                                                         console.error("Tree search failed");
  169.                                                         console.error(data);
  170.                                                 } else if ((data instanceof Array) && (data.length > 0)) {
  171.                                                         x_rec(data, 0);
  172.                                                 } else {
  173.                                                         console.error("Tree search failed");
  174.                                                         console.error(data);
  175.                                                 }
  176.                                         }
  177.                                 });
  178.                         }
  179.                 } catch (err) {
  180.                         popstate_running = false;
  181.                 } finally {
  182.                         popstate_running = false;
  183.                 }
  184.         }
  185.  
  186.         // This loads the actual content
  187.  
  188.         // document.title = ""; // <-- we may not do this, otherwise Firefox won't
  189.         //                            show titles in the browser history (right-click
  190.         //                            on back-button), although document.title() is
  191.         //                            set inside the AJAX-callback [Firefox bug?!]
  192.  
  193.         $('#real_title').html("&nbsp;");
  194.         $('#real_content').html(_L("Loading..."));
  195.         $('#static_link').attr("href", oidplus_webpath_absolute_canonical+"?goto="+encodeURIComponent(id));
  196.         $("#gotoedit").val(id);
  197.  
  198.         // Normal opening of a description
  199.         $.ajax({
  200.                 url:"ajax.php",
  201.                 method:"GET",
  202.                 beforeSend: function(jqXHR, settings) {
  203.                         //$.xhrPool.abortAll();
  204.                         $.xhrPool.add(jqXHR);
  205.                 },
  206.                 complete: function(jqXHR, text) {
  207.                         $.xhrPool.remove(jqXHR);
  208.                 },
  209.                 data:{
  210.                         csrf_token:csrf_token,
  211.                         action:"get_description",
  212.                         id:id,
  213.                         anticache:Date.now()
  214.                 },
  215.                 error:function(jqXHR, textStatus, errorThrown) {
  216.                         if (errorThrown == "abort") return;
  217.                         alertError(_L("Failed to load content: %1",errorThrown));
  218.                         console.error(_L("Error: %1",errorThrown));
  219.                 },
  220.                 success:function(data) {
  221.                         if ("error" in data) {
  222.                                 alertError(_L("Failed to load content: %1",data.error));
  223.                                 console.error(data.error);
  224.                         } else if (data.status >= 0) {
  225.                                 data.id = id;
  226.  
  227.                                 var state = {
  228.                                         "node_id":id,
  229.                                         "titleHTML":(data.icon ? '<img src="'+data.icon+'" width="48" height="48" alt="'+data.title.htmlentities()+'"> ' : '') + data.title.htmlentities(),
  230.                                         "textHTML":data.text,
  231.                                         "staticlinkHREF":oidplus_webpath_absolute_canonical+"?goto="+encodeURIComponent(id),
  232.                                 };
  233.                                 if (current_node != id) {
  234.                                         window.history.pushState(state, data.title, "?goto="+encodeURIComponent(id));
  235.                                 } else {
  236.                                         window.history.replaceState(state, data.title, "?goto="+encodeURIComponent(id));
  237.                                 }
  238.  
  239.                                 document.title = combine_systemtitle_and_pagetitle(getOidPlusSystemTitle(), data.title);
  240.  
  241.                                 if (data.icon) {
  242.                                         $('#real_title').html('<img src="'+data.icon+'" width="48" height="48" alt="'+data.title.htmlentities()+'"> ' + data.title.htmlentities());
  243.                                 } else {
  244.                                         $('#real_title').html(data.title.htmlentities());
  245.                                 }
  246.                                 $('#real_content').html(data.text);
  247.                                 document.title = combine_systemtitle_and_pagetitle(getOidPlusSystemTitle(), data.title);
  248.                                 current_node = id;
  249.  
  250.                                 executeAllCallbacks(pageLoadedCallbacks.anyPageLoad);
  251.                                 executeAllCallbacks(pageLoadedCallbacks.ajaxPageLoad);
  252.  
  253.                                 if (anchor != '') {
  254.                                         jumpToAnchor(anchor);
  255.                                 }
  256.                         } else {
  257.                                 alertError(_L("Failed to load content: %1",data.status));
  258.                                 console.error(data);
  259.                         }
  260.                 }
  261.         });
  262.  
  263.         return true;
  264. }
  265.  
  266. // This function opens the "parentID" node, and then selects the "childID" node (which should be beneath the parent node)
  267. function openAndSelectNode(childID, parentID) {
  268.         if ($('#oidtree').jstree(true).get_node(parentID)) {
  269.                 $('#oidtree').jstree('open_node', parentID, function(e, data) { // open parent node
  270.                         if ($('#oidtree').jstree(true).get_node(childID)) { // is the child there?
  271.                                 $('#oidtree').jstree('deselect_all').jstree('select_node', childID); // select it
  272.                         } else {
  273.                                 // This can happen if the content page contains brand new items which are not in the treeview yet
  274.                                 $("#gotoedit").val(childID);
  275.                                 window.location.href = "?goto="+encodeURIComponent(childID);
  276.                         }
  277.                 }, true);
  278.         } else {
  279.                 // This should usually not happen
  280.                 $("#gotoedit").val(childID);
  281.                 window.location.href = "?goto="+encodeURIComponent(childID);
  282.         }
  283. }
  284.  
  285. $(window).on("popstate", function(e) {
  286.         if (!performCloseQueryCB()) {
  287.                 // TODO: does not work!!! The "back/forward" action will be cancelled, but the browser still thinks it was successful,
  288.                 // so if you do it again, you will then jump 2 pages back, etc!
  289.                 // This does also not help:
  290.                 //window.history.pushState(e.originalEvent.state, e.originalEvent.title, e.originalEvent.url);
  291.                 //window.history.forward();
  292.                 return;
  293.         }
  294.  
  295.         popstate_running = true;
  296.         try {
  297.                 var data = e.originalEvent.state;
  298.  
  299.                 current_node = data.node_id;
  300.                 $("#gotoedit").val(current_node);
  301.                 $('#oidtree').jstree('deselect_all').jstree('select_node', data.node_id);
  302.                 $('#real_title').html(data.titleHTML);
  303.                 $('#real_content').html(data.textHTML);
  304.                 $('#static_link').attr("href", data.staticlinkHREF);
  305.                 document.title = combine_systemtitle_and_pagetitle(getOidPlusSystemTitle(), data.titleHTML.html_entity_decode());
  306.         } catch (err) {
  307.                 popstate_running = false;
  308.         } finally {
  309.                 popstate_running = false;
  310.         }
  311. });
  312.  
  313. $(document).ready(function () {
  314.  
  315.         executeAllCallbacks(pageLoadedCallbacks.documentReadyBefore);
  316.  
  317.         /*
  318.         window.onbeforeunload = function(e) {
  319.                 // TODO: This won't be called because TinyMCE overrides it??
  320.                 // TODO: when the user accepted the query in performCloseQueryCB(), then the message will be shown again by the browser!
  321.                 if (!performCloseQueryCB()) {
  322.                         // Cancel the event
  323.                         e.preventDefault(); // If you prevent default behavior in Mozilla Firefox prompt will always be shown
  324.                         // Chrome requires returnValue to be set
  325.                         e.returnValue = '';
  326.                 } else {
  327.                         // the absence of a returnValue property on the event will guarantee the browser unload happens
  328.                         delete e['returnValue'];
  329.                 }
  330.         };
  331.         */
  332.  
  333.         if (typeof oidplus_menu_width_uservalue !== 'undefined') {
  334.                 oidplus_menu_width = oidplus_menu_width_uservalue;
  335.         }
  336.  
  337.         // --- JsTree
  338.  
  339.         if ($('#oidtree').length > 0) $('#oidtree')
  340.         .jstree({
  341.                 plugins: ['massload','search','conditionalselect'],
  342.                 'core' : {
  343.                         'data' : {
  344.                                 "url" : getTreeLoadURL(),
  345.                                 "data" : function (node) {
  346.                                         return { "id" : node.id };
  347.                                 }
  348.                         },
  349.                         "multiple": false
  350.                 },
  351.                 'conditionalselect' : function (node) {
  352.                         if (node.original.conditionalselect !== undefined) {
  353.                                 return eval(node.original.conditionalselect);
  354.                         } else {
  355.                                 return performCloseQueryCB();
  356.                         }
  357.                 },
  358.         })
  359.         .on('ready.jstree', function (e, data) {
  360.                 var url = new URL(window.location.href);
  361.                 var goto = url.searchParams.get("goto");
  362.                 if (goto == null) goto = "oidplus:system"; // the page was not called with ?goto=...
  363.                 if ($('#gotoedit').length > 0) $("#gotoedit").val(goto);
  364.  
  365.                 // By setting current_node, select_node() will not cause ajax.php?action=get_description to load (since we already loaded the first static content via PHP, for search engines mainly)
  366.                 // But then we need to set the history state manually
  367.                 current_node = goto;
  368.                 window.history.replaceState({
  369.                         "node_id":goto,
  370.                         "titleHTML":$('#real_title').html(),
  371.                         "textHTML":$('#real_content').html(),
  372.                         "staticlinkHREF":oidplus_webpath_absolute_canonical+"?goto="+encodeURIComponent(goto),
  373.                 }, $('#real_title').html(), "?goto="+encodeURIComponent(goto));
  374.  
  375.                 if (goto != null) data.instance.select_node([goto]);
  376.  
  377.                 setTimeout(glayoutWorkaroundAC, 100);
  378.                 setTimeout(glayoutWorkaroundB, 100);
  379.         })
  380.         .on('select_node.jstree', function (node, selected, event) {
  381.                 mobileNavClose();
  382.  
  383.                 var id = selected.node.id;
  384.                 if ((!popstate_running) && (current_node != id)) {
  385.                         // 4th argument: we force the reload (because in the
  386.                         // conditional select above, we already asked if
  387.                         // tinyMCE needs to be saved)
  388.                         openOidInPanel(id, false, '', true);
  389.                 }
  390.         });
  391.  
  392.         // --- Layout
  393.  
  394.         if ($('#system_title_menu').length > 0) $("#system_title_menu")[0].style.display = "block";
  395.  
  396.         var tmpObjectTree = _L("OBJECT TREE").replace(/(.{1})/g,"$1<br>");
  397.         tmpObjectTree = tmpObjectTree.substring(0, tmpObjectTree.length-"<br>".length);
  398.  
  399.         if ($('#oidtree').length > 0) $('#oidtree').addClass('ui-layout-west');
  400.         if ($('#content_window').length > 0) $('#content_window').addClass('ui-layout-center');
  401.         if ($('#system_title_bar').length > 0) $('#system_title_bar').addClass('ui-layout-north');
  402.         if ($('#frames').length > 0) glayout = $('#frames').layout({
  403.                 north__size:                  40,
  404.                 north__slidable:              false,
  405.                 north__closable:              false,
  406.                 north__resizable:             false,
  407.                 west__size:                   oidplus_menu_width,
  408.                 west__spacing_closed:         20,
  409.                 west__togglerLength_closed:   230,
  410.                 west__togglerAlign_closed:    "center",
  411.                 west__togglerContent_closed:  tmpObjectTree,
  412.                 west__togglerTip_closed:      _L("Open & Pin Menu"),
  413.                 west__sliderTip:              _L("Slide Open Menu"),
  414.                 west__slideTrigger_open:      "mouseover",
  415.                 center__maskContents:         true, // IMPORTANT - enable iframe masking
  416.                 onresize_start:               function() { if (typeof handle_glayout_onresize_start == 'function') handle_glayout_onresize_start(); }
  417.         });
  418.  
  419.         if ($('#gotobox').length == 0) $("#languageBox").css('right', '20px'); // Language Box to the right if there is no goto-box
  420.  
  421.         if ($('#gotobox').length > 0) $("#gotobox").addClass("mobilehidden");
  422.         if ($('#languageBox').length > 0) $("#languageBox").addClass("mobilehidden");
  423.         if ($('#gotobox').length > 0) $("#gotobox")[0].style.display = "block";
  424.         if ($('#gotoedit').length > 0) $('#gotoedit').keypress(function(event) {
  425.                 var keycode = (event.keyCode ? event.keyCode : event.which);
  426.                 if (keycode == '13') {
  427.                         gotoButtonClicked();
  428.                 }
  429.         });
  430.  
  431.         if (typeof Bs5Utils !== "undefined") {
  432.                 Bs5Utils.defaults.toasts.position = 'top-center';
  433.                 Bs5Utils.defaults.toasts.stacking = true;
  434.                 bs5Utils = new Bs5Utils();
  435.         }
  436.  
  437.         executeAllCallbacks(pageLoadedCallbacks.anyPageLoad);
  438.         executeAllCallbacks(pageLoadedCallbacks.documentReadyAfter);
  439. });
  440.  
  441. // can be overridden if necessary
  442. var handle_glayout_onresize_start = undefined;
  443.  
  444. function glayoutWorkaroundAC() {
  445.         // "Bug A": Sometimes, the design is completely destroyed after reloading the page. It does not help when glayout.resizeAll()
  446.         //          is called at the beginning (e.g. during the ready function), and it does not help if we wait 500ms.
  447.         //          So we do it all the time. It has probably something to do with slow loading times, since the error
  448.         //          does only appear when the page is "blank" for a short while while it is loading.
  449.         glayout.resizeAll();
  450.  
  451.         // "Bug C": With Firefox (And sometimes with Chrome), there is a gap between the content-window (including scroll bars)
  452.         //          and the right corner of the screen. Removing the explicit width solves this problem.
  453.         $("#content_window")[0].style.removeProperty("width");
  454.  
  455.         setTimeout(glayoutWorkaroundAC, 100);
  456. }
  457.  
  458. function glayoutWorkaroundB() {
  459.         // "Bug B": Sometimes, after reload, weird space between oidtree and content window, because oidtree has size of 438px
  460.         $("#oidtree")[0].style.width = oidplus_menu_width + "px";
  461. }
  462.  
  463. function mobileNavClose() {
  464.         if ($("#system_title_menu").is(":hidden")) {
  465.                 return;
  466.         }
  467.  
  468.         $("#oidtree").slideUp("medium").promise().done(function() {
  469.                 $("#oidtree").addClass("ui-layout-west");
  470.                 $("#oidtree").show();
  471. //              $("#gotobox").hide();
  472. //              $("#languageBox").hide();
  473.                 $("#gotobox").addClass("mobilehidden");
  474.                 $("#languageBox").addClass("mobilehidden");
  475.         });
  476.         $("#system_title_menu").removeClass("active");
  477. }
  478.  
  479. function mobileNavOpen() {
  480.         $("#oidtree").hide();
  481.         $("#oidtree").removeClass("ui-layout-west");
  482.         $("#oidtree").slideDown("medium");
  483. //      $("#gotobox").show();
  484. //      $("#languageBox").show();
  485.         $("#gotobox").removeClass("mobilehidden");
  486.         $("#languageBox").removeClass("mobilehidden");
  487.         $("#system_title_menu").addClass("active");
  488. }
  489.  
  490. function mobileNavButtonClick(sender) {
  491.         if ($("#oidtree").hasClass("ui-layout-west")) {
  492.                 mobileNavOpen();
  493.         } else {
  494.                 mobileNavClose();
  495.         }
  496. }
  497.  
  498. function mobileNavButtonHover(sender) {
  499.         sender.classList.toggle("hover");
  500. }
  501.  
  502. function gotoButtonClicked() {
  503.         openOidInPanel($("#gotoedit").val(), true);
  504. }
  505.  
  506. function setLanguage(lngid) {
  507.         setCookie('LANGUAGE', lngid, 0/*Until browser closes*/, oidplus_webpath_relative);
  508.  
  509.         if (current_node == "") return false; // Happens for Setup. Open URL instead.
  510.  
  511.         $(".lng_flag").each(function(){
  512.                 $(this).addClass("picture_ghost");
  513.         });
  514.         $("#lng_flag_"+$.escapeSelector(lngid)).removeClass("picture_ghost");
  515.  
  516.         if (isInternetExplorer()) {
  517.                 // Internet Explorer has problems with sending new cookies to new AJAX requests, so we reload the page completely
  518.                 window.location.reload();
  519.         } else {
  520.                 // TODO: Small detail: The "Go" button also needs to be re-translated
  521.                 reloadContent();
  522.                 mobileNavClose();
  523.         }
  524.         return true; // we have handled it. Do not follow href=""
  525. }
  526.  
  527. function show_waiting_anim() {
  528.         $("#loading").show();
  529. }
  530.  
  531. function hide_waiting_anim() {
  532.         $("#loading").hide();
  533. }
  534.  
  535. /* Mini-framework to abort all AJAX requests if a new request is made */
  536.  
  537. $.xhrPool = [];
  538. $.xhrPool.add = function(jqXHR) {
  539.         $.xhrPool.push(jqXHR);
  540. }
  541. $.xhrPool.remove = function(jqXHR) {
  542.         var index = $.xhrPool.indexOf(jqXHR);
  543.         if (index > -1) {
  544.                 $.xhrPool.splice(index, 1);
  545.         }
  546. };
  547. $.xhrPool.abortAll = function() {
  548.         var calls = Array.from($.xhrPool);
  549.         $.each(calls, function(key, value) {
  550.                 value.abort();
  551.         });
  552. }
  553.  
  554. /* Individual alert types */
  555. /* TODO: alert() blocks program flow, but alertSuccess() not! Will the mass change have negative effects (e.g. a redirect without the user seeing the toast)? */
  556.  
  557. function alertSuccess(txt) {
  558.         if (typeof bs5Utils !== "undefined") {
  559.                 bs5Utils.Snack.show('success', _L(txt), delay = 5000, dismissible = true);
  560.         } else {
  561.                 alert(txt);
  562.         }
  563. }
  564.  
  565. function alertWarning(txt) {
  566.         // TODO: as toast?
  567.         alert(txt);
  568. }
  569.  
  570. function alertError(txt) {
  571.         // TODO: as toast?
  572.         alert(txt);
  573. }
  574.  
  575. /* AJAX success/error-handling */
  576.  
  577. function oidplus_ajax_error(jqXHR, textStatus, errorThrown) {
  578.         if (errorThrown == "abort") return;
  579.         console.error(errorThrown, jqXHR);
  580.         alertError(_L("Error: %1", errorThrown));
  581. }
  582.  
  583. function oidplus_ajax_success(data, cb) {
  584.         if (typeof data === "object" && "error" in data) {
  585.                 alertError(_L("Error: %1", data.error));
  586.         } else if (typeof data === "object" && data.status >= 0) {
  587.                 cb(data);
  588.         } else {
  589.                 alertError(_L("Error: %1", data));
  590.         }
  591. }
  592.