/* * This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony). * * Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published * by the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ import * as bootbox from "bootbox"; /** * If this class is imported the user is shown an error dialog if he calls an page via Turbo and an error is responded. * @type {ErrorHandlerHelper} */ class ErrorHandlerHelper { constructor() { console.log('Error Handler registered'); const content = document.getElementById('content'); //content.addEventListener('turbo:before-fetch-response', (event) => this.handleError(event)); content.addEventListener('turbo:fetch-request-error', (event) => this.handleError(event)); content.addEventListener('turbo:frame-missing', (event) => this.handleError(event)); $(document).ajaxError(this.handleJqueryErrror.bind(this)); } _showAlert(statusText, statusCode, location, responseHTML) { //Create error text const title = statusText + ' (Status ' + statusCode + ')'; let trimString = function (string, length) { return string.length > length ? string.substring(0, length) + '...' : string; }; const short_location = trimString(location, 50); const alert = bootbox.alert( { size: 'large', message: function() { let url = location; let msg = `Error calling ${short_location}.
`; msg += 'Try to reload the page or contact the administrator if this error persists.'; msg += '

' + 'View details' + ""; msg += "
"; return msg; }, title: title, callback: function () { //Remove blur $('#content').removeClass('loading-content'); } }); alert.init(function (){ var dstFrame = document.getElementById('error-iframe'); //@ts-ignore var dstDoc = dstFrame.contentDocument || dstFrame.contentWindow.document; dstDoc.write(responseHTML) dstDoc.close(); }); } handleJqueryErrror(event, jqXHR, ajaxSettings, thrownError) { //Ignore status 422 as this means a symfony validation error occured and we need to show it to user. This is no (unexpected) error. if (jqXHR.status === 422) { return; } this._showAlert(jqXHR.statusText, jqXHR.status, ajaxSettings.url, jqXHR.responseText); } handleError(event) { //Prevent default error handling event.preventDefault(); const response = event.detail.response; //Ignore aborted requests. if (response.statusText === 'abort' || response.status == 0) { return; } //Ignore status 422 as this means a symfony validation error occured and we need to show it to user. This is no (unexpected) error. if (response.status == 422) { return; } if(!response.ok) { response.text().then(responseHTML => { this._showAlert(response.statusText, response.status, response.url, responseHTML); }).catch(err => { this._showAlert(response.statusText, response.status, response.url, '
' + err + '
'); }); } } } export default new ErrorHandlerHelper();