@@ -30,7 +30,9 @@ public function __construct()
30
30
}
31
31
32
32
/**
33
- * On config save.
33
+ * On configuration save
34
+ *
35
+ * @param Varien_Event_Observer $observer
34
36
*/
35
37
public function configSaved (Varien_Event_Observer $ observer )
36
38
{
@@ -57,33 +59,36 @@ public function addBundleToAdmin(Varien_Event_Observer $observer)
57
59
$ req = Mage::app ()->getRequest ();
58
60
59
61
if (strpos ($ req ->getPathInfo (), 'system_config/edit/section/algoliasearch ' ) !== false ) {
60
- $ observer ->getLayout ( )->getUpdate ()->addHandle ('algolia_bundle_handle ' );
62
+ $ observer ->getData ( ' layout ' )->getUpdate ()->addHandle ('algolia_bundle_handle ' );
61
63
}
62
64
}
63
65
64
66
/**
65
- * Call algoliasearch.xml To load js / css / phtml.
67
+ * Call algoliasearch.xml to load JS / CSS / PHTMLs
68
+ *
69
+ * @param Varien_Event_Observer $observer
70
+ * @return $this
66
71
*/
67
72
public function useAlgoliaSearchPopup (Varien_Event_Observer $ observer )
68
73
{
69
- if ($ this ->config ->isEnabledFrontEnd ()) {
70
- if ($ this ->config ->getApplicationID () && $ this ->config ->getAPIKey ()) {
71
- if ($ this ->config ->isPopupEnabled () || $ this ->config ->isInstantEnabled ()) {
72
- $ observer ->getLayout ()->getUpdate ()->addHandle ('algolia_search_handle ' );
73
-
74
- if ($ this ->config ->isDefaultSelector ()) {
75
- $ observer ->getLayout ()->getUpdate ()->addHandle ('algolia_search_handle_with_topsearch ' );
76
- } else {
77
- $ observer ->getLayout ()->getUpdate ()->addHandle ('algolia_search_handle_no_topsearch ' );
78
- }
74
+ if (!$ this ->config ->isEnabledFrontEnd ()) {
75
+ return $ this ;
76
+ }
79
77
80
- if ($ this ->config ->preventBackendRendering () === true ) {
81
- $ observer ->getLayout ()->getUpdate ()->addHandle ('algolia_search_handle_prevent_backend_rendering ' );
82
- }
83
- }
84
- }
78
+ if (!$ this ->config ->getApplicationID () || !$ this ->config ->getAPIKey ()) {
79
+ return $ this ;
85
80
}
86
81
82
+ $ this ->loadAlgoliasearchHandle ($ observer );
83
+
84
+ $ this ->loadSearchFormHandle ($ observer );
85
+
86
+ $ this ->loadInstantSearchHandle ($ observer );
87
+
88
+ $ this ->loadAutocompleteHandle ($ observer );
89
+
90
+ $ this ->loadPreventBackendRenderingHandle ($ observer );
91
+
87
92
return $ this ;
88
93
}
89
94
@@ -244,4 +249,58 @@ public function moveProductsTmpIndex(Varien_Object $event)
244
249
245
250
$ this ->helper ->moveProductsIndex ($ storeId );
246
251
}
252
+
253
+ private function loadAlgoliasearchHandle (Varien_Event_Observer $ observer )
254
+ {
255
+ if (!$ this ->config ->isPopupEnabled () && !$ this ->config ->isInstantEnabled ()) {
256
+ return ;
257
+ }
258
+
259
+ $ observer ->getData ('layout ' )->getUpdate ()->addHandle ('algolia_search_handle ' );
260
+ }
261
+
262
+ private function loadSearchFormHandle (Varien_Event_Observer $ observer )
263
+ {
264
+ if (!$ this ->config ->isDefaultSelector ()) {
265
+ return ;
266
+ }
267
+
268
+ $ observer ->getData ('layout ' )->getUpdate ()->addHandle ('algolia_search_handle_with_topsearch ' );
269
+ }
270
+
271
+ private function loadInstantSearchHandle (Varien_Event_Observer $ observer )
272
+ {
273
+ if (!$ this ->config ->isInstantEnabled ()) {
274
+ return ;
275
+ }
276
+
277
+ $ category = Mage::registry ('current_category ' );
278
+ if ($ this ->config ->replaceCategories () && $ category && $ category ->getDisplayMode () === 'PAGE ' ) {
279
+ return ;
280
+ }
281
+
282
+ $ observer ->getData ('layout ' )->getUpdate ()->addHandle ('algolia_search_handle_instantsearch ' );
283
+ }
284
+
285
+ private function loadAutocompleteHandle (Varien_Event_Observer $ observer )
286
+ {
287
+ if ($ this ->config ->isPopupEnabled ()) {
288
+ $ observer ->getData ('layout ' )->getUpdate ()->addHandle ('algolia_search_handle_autocomplete ' );
289
+ }
290
+ }
291
+
292
+ private function loadPreventBackendRenderingHandle (Varien_Event_Observer $ observer )
293
+ {
294
+ if (!$ this ->config ->preventBackendRendering ()) {
295
+ return ;
296
+ }
297
+
298
+ $ category = Mage::registry ('current_category ' );
299
+ $ backendRenderingDisplayMode = $ this ->config ->getBackendRenderingDisplayMode ();
300
+ if ($ category && $ backendRenderingDisplayMode === 'only_products ' && $ category ->getDisplayMode () === 'PAGE ' ) {
301
+ return ;
302
+ }
303
+
304
+ $ observer ->getData ('layout ' )->getUpdate () ->addHandle ('algolia_search_handle_prevent_backend_rendering ' );
305
+ }
247
306
}
0 commit comments