@@ -58,10 +58,13 @@ public function createSearchBar(Query $query, ...$params): SearchBar
58
58
$ preserveParams = array_pop ($ params ) ?? [];
59
59
$ redirectUrl = array_pop ($ params );
60
60
61
+ $ requestUrlClone = $ requestUrl ->onlyWith ($ preserveParams );
62
+ $ paramsToAdd = $ requestUrlClone ->getParams ();
63
+
61
64
if ($ redirectUrl !== null ) {
62
- $ redirectUrl ->addParams ($ requestUrl -> onlyWith ( $ preserveParams )-> getParams () ->toArray (false ));
65
+ $ redirectUrl ->addParams ($ paramsToAdd ->toArray (false ));
63
66
} else {
64
- $ redirectUrl = $ requestUrl -> onlyWith ( $ preserveParams ) ;
67
+ $ redirectUrl = $ requestUrlClone ;
65
68
}
66
69
67
70
$ filter = QueryString::fromString ((string ) $ this ->params )
@@ -83,7 +86,10 @@ public function createSearchBar(Query $query, ...$params): SearchBar
83
86
if (method_exists ($ this , 'completeAction ' )) {
84
87
$ searchBar ->setSuggestionUrl (Url::fromPath (
85
88
"$ moduleName/ $ controllerName/complete " ,
86
- ['_disableLayout ' => true , 'showCompact ' => true ]
89
+ $ paramsToAdd
90
+ ->set ('_disableLayout ' , true )
91
+ ->set ('showCompact ' , true )
92
+ ->toArray (false )
87
93
));
88
94
}
89
95
@@ -156,14 +162,13 @@ public function createSearchEditor(Query $query, ...$params): SearchEditor
156
162
$ redirectUrl = array_pop ($ params );
157
163
$ moduleName = $ this ->getRequest ()->getModuleName ();
158
164
$ controllerName = $ this ->getRequest ()->getControllerName ();
165
+ $ paramsToAdd = $ requestUrl ->onlyWith ($ preserveParams )->getParams ();
159
166
160
167
if ($ redirectUrl !== null ) {
161
- $ redirectUrl ->addParams ($ requestUrl -> onlyWith ( $ preserveParams )-> getParams () ->toArray (false ));
168
+ $ redirectUrl ->addParams ($ paramsToAdd ->toArray (false ));
162
169
} else {
163
- $ redirectUrl = Url::fromPath ("$ moduleName/ $ controllerName " );
164
- if (! empty ($ preserveParams )) {
165
- $ redirectUrl ->setParams ($ requestUrl ->onlyWith ($ preserveParams )->getParams ());
166
- }
170
+ $ redirectUrl = Url::fromPath ("$ moduleName/ $ controllerName " )
171
+ ->setParams ($ paramsToAdd );
167
172
}
168
173
169
174
$ editor = new SearchEditor ();
@@ -174,7 +179,10 @@ public function createSearchEditor(Query $query, ...$params): SearchEditor
174
179
if (method_exists ($ this , 'completeAction ' )) {
175
180
$ editor ->setSuggestionUrl (Url::fromPath (
176
181
"$ moduleName/ $ controllerName/complete " ,
177
- ['_disableLayout ' => true , 'showCompact ' => true ]
182
+ $ paramsToAdd
183
+ ->set ('_disableLayout ' , true )
184
+ ->set ('showCompact ' , true )
185
+ ->toArray (false )
178
186
));
179
187
}
180
188
0 commit comments