stanbridge / visual-exceptions
Visual Laravel exceptions delivered via iframe for single page applications
Installs: 8 580
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 4
Forks: 0
Open Issues: 0
Requires
- php: ^7.4|^8.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.16
- orchestra/testbench: ^5.0
- phpunit/phpunit: ^9.0
- psalm/plugin-laravel: ^1.2
- vimeo/psalm: ^3.11
This package is not auto-updated.
Last update: 2024-11-19 13:19:52 UTC
README
Visual Laravel Exceptions for SPAs
This package provides single page applications with a visual representation of exceptions similar to traditional
Laravel applications. This is accomplished by temporarily storing the output of the rendered exception in a file. When
the client receives an error, you can use the included render-exception.js
service to open up an iframe to display
the rendered exception in the browser.
Installation
You can install the package via composer:
composer require stanbridge/visual-exceptions
You can publish the config file with:
php artisan vendor:publish --provider="Stanbridge\VisualException\VisualExceptionServiceProvider" --tag="config"
This is the contents of the published config file:
return [ /* |-------------------------------------------------------------------------- | Master Switch |-------------------------------------------------------------------------- | | This option may be used to completely disable visual exceptions. | */ 'enabled' => env('VISUAL_EXCEPTIONS_ENABLED', env('APP_DEBUG')), /* |-------------------------------------------------------------------------- | Path |-------------------------------------------------------------------------- | | This is the URI path where visual exceptions will be accessible from. | */ 'path' => env('VISUAL_EXCEPTIONS_PATH', 'api/visual-exceptions'), /* |-------------------------------------------------------------------------- | Storage |-------------------------------------------------------------------------- | | This is where the temporary exception output will be stored. | */ 'storage' => 'visual-exceptions/latest.html', /* |-------------------------------------------------------------------------- | Clear on Retrieve |-------------------------------------------------------------------------- | | Use this option to clear the exception file after retrieving it. | */ 'clear_on_retrieve' => env('VISUAL_EXCEPTIONS_CLEAR', true), /* |-------------------------------------------------------------------------- | Middleware |-------------------------------------------------------------------------- | | Set middleware on the route. | */ 'middleware' => ['api'], ];
Usage
1. Capture the Exception
In your app/Exceptions/Handler.php
, capture the rendered exception with the following:
use \Illuminate\Support\Facades\Config; use Stanbridge\VisualException\VisualException; public function render($request, Throwable $exception) { $render = $this->prepareResponse($request, $exception); if (Config::get('visual-exceptions.enabled')) { VisualException::capture($render); } return $render; }
2. Publish the assets:
php artisan vendor:publish --provider="Stanbridge\VisualException\VisualExceptionServiceProvider" --tag=assets
3. Display the Exception
Copy the render-exception.js
file from the published assets into your single page application.
Import the library and use the retrieveLastError()
method. Here is an example using an axios interceptor:
import axios from 'axios'; import VisualException from 'path/to/render-exception.js'; axios.interceptors.response.use(response => response, error => { if (error.response.status >= 500) { VisualException.retrieveLastError(); } });
The code in render-exception.js
comes from Livewire. Thanks to
Caleb Porzio and Jonathan Reinink
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email austingym@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.