From 0550a386e0e3931dead78547ce496d1a0d24d177 Mon Sep 17 00:00:00 2001 From: Yonas Habteab Date: Tue, 5 Sep 2023 18:00:17 +0200 Subject: [PATCH] Add different redirect options --- src/Compat/CompatController.php | 55 +++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/src/Compat/CompatController.php b/src/Compat/CompatController.php index 72f33481..98904967 100644 --- a/src/Compat/CompatController.php +++ b/src/Compat/CompatController.php @@ -3,6 +3,7 @@ namespace ipl\Web\Compat; use GuzzleHttp\Psr7\ServerRequest; +use Icinga\Application\Version; use InvalidArgumentException; use Icinga\Web\Controller; use ipl\Html\BaseHtmlElement; @@ -420,6 +421,60 @@ public function sendExtraUpdates(array $updates) $this->getResponse()->setHeader('X-Icinga-Extra-Updates', join(',', $extraUpdates)); } + /** + * Close the modal content and refresh the related view + * + * NOTE: When you use this with older Icinga Web versions (< 2.12), you will need to specify a valid redirect url, + * that will produce the same result as using the `__REFRESH__` redirect with the latest Icinga Web version. + * + * This is supposed to be used in combination with a modal view and closes only the modal content, + * and refreshes the modal opener (regardless of whether it is col1 or col2). + * + * @param null|Url|string $url + * @param array $extraUpdates See {@see static::sendExtraUpdates()} how to properly + * provide extra updates + */ + public function closeModalAndRefreshRelatedView($url = null, array $extraUpdates = []): void + { + $this->sendExtraUpdates($extraUpdates); + + if (version_compare(Version::VERSION, '2.12.0', '<')) { + if (! $url) { + throw new InvalidArgumentException('No redirect url provided'); + } + + $this->redirectNow($url); + } else { + $this->redirectNow('__REFRESH__'); + } + } + + /** + * Close the modal content and refresh all the remaining views + * + * NOTE: When you use this with older Icinga Web versions (< 2.12), you will need to specify a valid redirect url, + * that will produce the same result as using the `__REFRESH__` redirect with the latest Icinga Web version. + * + * This is supposed to be used in combination with a modal view and closes only the modal content. It refreshes + * the modal opener (regardless of whether it is col1 or col2) and sends extra updates for col1. + * + * @param null|Url|string $url + */ + public function closeModalAndRefreshRemainingViews($url = null): void + { + $this->closeModalAndRefreshRelatedView($url, ['#col1']); + } + + /** + * Redirect using `__CLOSE__` + * + * Change to a single column layout and refresh col1 + */ + public function switchToSingleColumnLayout(): void + { + $this->redirectNow('__CLOSE__'); + } + public function postDispatch() { if (empty($this->parts)) {