diff --git a/plugins/CoreHome/CoreHome.php b/plugins/CoreHome/CoreHome.php index 18ad9f68c286c0d7f07229ec18408758a8af9102..172ce8d5b85658d2dc574779082a8a74750de8cd 100644 --- a/plugins/CoreHome/CoreHome.php +++ b/plugins/CoreHome/CoreHome.php @@ -208,5 +208,6 @@ class CoreHome extends \Piwik\Plugin $translationKeys[] = 'General_Delete'; $translationKeys[] = 'General_Default'; $translationKeys[] = 'General_LoadingData'; + $translationKeys[] = 'General_ErrorRequest'; } } diff --git a/plugins/CoreHome/javascripts/broadcast.js b/plugins/CoreHome/javascripts/broadcast.js index 32284d71a1a70a03c3deb1a27ce2c62afdd4e540..544cd8d70a0fb84a7687a24048e994a7e1b5f5c8 100644 --- a/plugins/CoreHome/javascripts/broadcast.js +++ b/plugins/CoreHome/javascripts/broadcast.js @@ -454,14 +454,14 @@ var broadcast = { customAjaxHandleError: function (deferred, status) { broadcast.lastUrlRequested = null; + piwikHelper.hideAjaxLoading(); + // do not display error message if request was aborted if(status == 'abort') { return; } + $('#loadingError').show(); - setTimeout( function(){ - $('#loadingError').fadeOut('slow'); - }, 2000); }, /** diff --git a/plugins/CoreHome/javascripts/corehome.js b/plugins/CoreHome/javascripts/corehome.js index 0dbfd48cb10670ae619f218030453f0339503dbe..de7232721bd7babba2bcf3a76244c4d28e796f8f 100755 --- a/plugins/CoreHome/javascripts/corehome.js +++ b/plugins/CoreHome/javascripts/corehome.js @@ -153,6 +153,8 @@ // scroll to report piwikHelper.lazyScrollTo(report, 400); + }, function () { + loading.hide(); }); }); }); diff --git a/plugins/CoreHome/javascripts/dataTable.js b/plugins/CoreHome/javascripts/dataTable.js index 6fe1eba8050690171b8dcdb82046946fe8bdbd0b..6b63820fca3c4f0f974a9bf262aa2ef2dfaa939f 100644 --- a/plugins/CoreHome/javascripts/dataTable.js +++ b/plugins/CoreHome/javascripts/dataTable.js @@ -207,6 +207,8 @@ $.extend(DataTable.prototype, UIControl.prototype, { $('#' + self.workingDivId + ' .loadingPiwik').last().css('display', 'block'); } + $('#loadingError').hide(); + // when switching to display graphs, reset limit if (self.param.viewDataTable && self.param.viewDataTable.indexOf('graph') === 0) { delete self.param.filter_offset; @@ -233,6 +235,10 @@ $.extend(DataTable.prototype, UIControl.prototype, { callbackSuccess(response); } ); + ajaxRequest.setErrorCallback(function () { + $('#' + self.workingDivId + ' .loadingPiwik').last().css('display', 'none'); + $('#loadingError').show(); + }); ajaxRequest.setFormat('html'); ajaxRequest.send(false); diff --git a/plugins/Dashboard/javascripts/dashboardWidget.js b/plugins/Dashboard/javascripts/dashboardWidget.js index 6d8859e8dbd341ac76de0e3f9c57d095165b505f..64b7c8042dc1cde0b911841b09a4d0411f115286 100755 --- a/plugins/Dashboard/javascripts/dashboardWidget.js +++ b/plugins/Dashboard/javascripts/dashboardWidget.js @@ -134,7 +134,11 @@ } var params = $.extend(this.widgetParameters, overrideParams || {}); - widgetsHelper.loadWidgetAjax(this.uniqueId, params, onWidgetLoadedReplaceElementWithContent); + widgetsHelper.loadWidgetAjax(this.uniqueId, params, onWidgetLoadedReplaceElementWithContent, function () { + $('.widgetContent', currentWidget).removeClass('loading'); + var errorMessage = _pk_translate('General_ErrorRequest'); + $('.widgetContent', currentWidget).html('<div class="widgetLoadingError">' + errorMessage + '</div>'); + }); return this; }, diff --git a/plugins/Dashboard/javascripts/widgetMenu.js b/plugins/Dashboard/javascripts/widgetMenu.js index 65bf58cf740ff56ca78b6323d7809a34adff3a45..6d58415cb9a0a1d060aa8d88058a913a6b14532c 100644 --- a/plugins/Dashboard/javascripts/widgetMenu.js +++ b/plugins/Dashboard/javascripts/widgetMenu.js @@ -72,7 +72,7 @@ widgetsHelper.getWidgetNameFromUniqueId = function (uniqueId) { * @param {function} onWidgetLoadedCallback callback to be executed after widget is loaded * @return {object} */ -widgetsHelper.loadWidgetAjax = function (widgetUniqueId, widgetParameters, onWidgetLoadedCallback) { +widgetsHelper.loadWidgetAjax = function (widgetUniqueId, widgetParameters, onWidgetLoadedCallback, onWidgetErrorCallback) { var disableLink = broadcast.getValueFromUrl('disableLink'); if (disableLink.length) { widgetParameters['disableLink'] = disableLink; @@ -83,6 +83,9 @@ widgetsHelper.loadWidgetAjax = function (widgetUniqueId, widgetParameters, onWid var ajaxRequest = new ajaxHelper(); ajaxRequest.addParams(widgetParameters, 'get'); ajaxRequest.setCallback(onWidgetLoadedCallback); + if (onWidgetErrorCallback) { + ajaxRequest.setErrorCallback(onWidgetErrorCallback); + } ajaxRequest.setFormat('html'); ajaxRequest.send(false); return ajaxRequest; diff --git a/plugins/Dashboard/stylesheets/dashboard.less b/plugins/Dashboard/stylesheets/dashboard.less index f12b8afa6de0fce8a89a12fca9e815045b024d49..fb59494026aba2512bfa40ef4d26f0b261e80a3f 100644 --- a/plugins/Dashboard/stylesheets/dashboard.less +++ b/plugins/Dashboard/stylesheets/dashboard.less @@ -204,7 +204,7 @@ display: none; } -.widgetLoading { +.widgetLoading, .widgetLoadingError { cursor: wait; padding: 10px; text-align: center;