From: Alexander Ebert Date: Sat, 6 Jun 2015 00:18:59 +0000 (+0200) Subject: Fixed `WCF.Action.Dialog` and shim for `ui.wcfDialog` widget X-Git-Tag: 3.0.0_Beta_1~2283 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d8f608b02b03c2a978c026eb6a4216a348d67be5;p=GitHub%2FWoltLab%2FWCF.git Fixed `WCF.Action.Dialog` and shim for `ui.wcfDialog` widget --- diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 1f8493c575..6febc82f2f 100755 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -1619,58 +1619,26 @@ WCF.Action.Proxy = Class.extend({ * Sends an AJAX request. * * @param abortPrevious boolean - * @return jqXHR */ sendRequest: function(abortPrevious) { - if (this._ajaxRequest !== null) { - this._ajaxRequest.sendRequest(abortPrevious); - } - - return null; + require(['AjaxRequest'], (function(AjaxRequest) { + if (this._ajaxRequest !== null) { + this._ajaxRequest.sendRequest(abortPrevious); + } + }).bind(this)); }, /** * Aborts the previous request */ abortPrevious: function() { - if (this._ajaxRequest !== null) { - this._ajaxRequest.abortPrevious(); - } + require(['AjaxRequest'], (function(AjaxRequest) { + if (this._ajaxRequest !== null) { + this._ajaxRequest.abortPrevious(); + } + }).bind(this)); }, - /** - * Shows loading overlay for a single request. - */ - showLoadingOverlayOnce: function() {}, - - /** - * Suppressed errors for this action proxy. - */ - suppressErrors: function() {}, - - /** - * Handles AJAX errors. - * - * @param object jqXHR - * @param string textStatus - * @param string errorThrown - */ - _failure: function(jqXHR, textStatus, errorThrown) {}, - - /** - * Handles successful AJAX requests. - * - * @param object data - * @param string textStatus - * @param object jqXHR - */ - _success: function(data, textStatus, jqXHR) {}, - - /** - * Fires after an AJAX request, hides global loading status. - */ - _after: function() {}, - /** * Sets options, MUST be used to set parameters before sending request * if calling from child classes. @@ -1679,10 +1647,19 @@ WCF.Action.Proxy = Class.extend({ * @param mixed optionData */ setOption: function(optionName, optionData) { - if (this._ajaxRequest !== null) { - this._ajaxRequest.setOption(optionName, optionData); - } - } + require(['AjaxRequest'], (function(AjaxRequest) { + if (this._ajaxRequest !== null) { + this._ajaxRequest.setOption(optionName, optionData); + } + }).bind(this)); + }, + + // legacy methods, no longer supported + showLoadingOverlayOnce: function() {}, + suppressErrors: function() {}, + _failure: function(jqXHR, textStatus, errorThrown) {}, + _success: function(data, textStatus, jqXHR) {}, + _after: function() {} }); /** @@ -8336,6 +8313,7 @@ WCF.UserPanel = Class.extend({ }); jQuery.fn.extend({ + // shim for 'ui.wcfDialog' wcfDialog: function(method) { var args = arguments; @@ -8359,7 +8337,7 @@ jQuery.fn.extend({ document.body.appendChild(this[0]); } - UIDialog.open(id, null, (args.length === 1 && typeof args[0] === 'object') ? args[0] : {}); + UIDialog.show(id, null, (args.length === 1 && typeof args[0] === 'object') ? args[0] : {}); } }).bind(this)); }