pentiminax / ux-sweet-alert
SweetAlert2 integration for Symfony
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=8.2
- symfony/config: ^7.0
- symfony/dependency-injection: ^7.0
- symfony/http-kernel: ^7.0
- symfony/stimulus-bundle: ^2.22
- symfony/ux-live-component: ^2.26
- symfony/ux-twig-component: ^2.26
- twig/twig: ^3.8
Requires (Dev)
- phpstan/phpstan: ^2.1.12
- phpunit/phpunit: ^11.5.17
- symfony/framework-bundle: ^7.0
- symfony/phpunit-bridge: ^7.0
- symfony/twig-bundle: ^7.0
- symfony/var-dumper: ^7.0
Conflicts
- symfony/flex: <1.13
README
UX SweetAlert is a Symfony bundle that integrates the SweetAlert2 library into your Symfony applications. It provides PHP helpers and a Stimulus controller to easily display alerts and toast notifications.
Requirements
- PHP 8.2 or higher
- Symfony StimulusBundle
- Composer
Installation
Install the library via Composer:
composer require pentiminax/ux-sweet-alert
Baseic usage
To automatically display toasts and alerts in your templates, add the following Twig function in your base.html.twig (or the layout file):
{{ ux_sweet_alert_scripts() }}
Alerts
Inject the AlertManagerInterface and use the helper methods to create alerts:
use Pentiminax\UX\SweetAlert\AlertManagerInterface; public function someAction(AlertManagerInterface $alertManager): Response { $alertManager->success( id: 'update-success', title: 'Update Successful', text: 'Your settings have been saved.' ); return $this->redirectToRoute('dashboard'); }
Toasts
Inject the ToastManagerInterface
service and
create toasts:
use Pentiminax\UX\SweetAlert\ToastManagerInterface; class HomeController extends AbstractController { #[Route('/', name: 'app_homepage')] public function index(ToastManagerInterface $toastManager): Response { $toastManager->success( id: 'id', title: 'title', text: 'text', position: Position::TOP_END, showConfirmButton: false, timer: 3000, timerProgressBar: true ); return $this->render('home/index.html.twig'); } }