-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAjaxSearch.module
148 lines (126 loc) · 4.72 KB
/
AjaxSearch.module
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?php
/**
* AjaxSearch 1.1.0 - ProcessWire module
*
* @author Philipp "Soma" Urlich
* @created 17/05/2012
* @last_modified 02/12/2012
*
* ProcessWire 2.x
* Copyright (C) 2010 by Ryan Cramer
* Licensed under GNU/GPL v2, see LICENSE.TXT
*
* http://www.processwire.com
* http://www.ryancramer.com
*
*/
class AjaxSearch extends WireData implements Module,ConfigurableModule {
protected static $defaults = array(
'as_minLength' => 3,
'as_close_text' => 'close',
'as_search_form' => '#search_form',
'as_search_input' => '#search_query',
'as_query_name' => 'q',
'as_query_url' => '',
'add_script' => true
);
/**
* getModuleInfo is a module required by all modules to tell ProcessWire about them
*
* @return array
*
*/
public static function getModuleInfo() {
return array(
'title' => 'Ajax Search',
'version' => 112,
'summary' => 'Progressively enhances the search form on a website',
'autoload' => "template!=admin"
);
}
public function __construct(){
foreach(self::$defaults as $key => $val){
$this->set($key, $val);
}
}
public function init() {
// build config for passing to js using json
if($this->add_script) $this->addHookAfter('Page::render', $this, 'addScripts');
}
public function addScripts( HookEvent $event ) {
$page = $event->object;
if($page->template->name == "admin") return;
// build config for passing to js using json
$options = self::$defaults;
foreach($options as $key => $unused) {
$options[$key] = $this->get($key) ? $this->get($key) : $options[$key];
}
$config = json_encode($options);
$script = "\n<script>var as_config = $config;</script>";
$script .= "\n<script src='{$this->config->urls->AjaxSearch}AjaxSearch.js'></script>";
$event->return = str_replace("</body>","$script</body>",$event->return);
}
/**
* Build a form allowing configuration of this Module
*
*/
static public function getModuleConfigInputfields(array $data) {
$data = array_merge(self::$defaults, $data);
$fields = new InputfieldWrapper();
$modules = Wire::getFuel("modules");
$field = $modules->get("InputfieldText");
$field->attr('name', 'as_minLength');
$field->attr('size', 10);
$field->attr('value', $data['as_minLength']);
$field->label = "Minimun length";
$field->description = "The mininum character length required to start the ajax search.";
$fields->append($field);
$field = $modules->get("InputfieldText");
$field->attr('name', 'as_close_text');
$field->attr('size', 10);
$field->attr('value', $data['as_close_text']);
$field->label = "Close label";
$field->description = "Label text for close link.";
$fields->append($field);
$field = $modules->get("InputfieldText");
$field->attr('name', 'as_search_form');
$field->attr('size', 15);
$field->attr('value', $data['as_search_form']);
$field->label = "Search form";
$field->description = "Class or id of the search form.";
$field->notes = "Example: #mysearch_form";
$fields->append($field);
$field = $modules->get("InputfieldText");
$field->attr('name', 'as_search_input');
$field->attr('size', 15);
$field->attr('value', $data['as_search_input']);
$field->label = "Search form inputfield";
$field->description = "Class or id of the search input field.";
$field->notes = "Example: #mysearch_query";
$fields->append($field);
$field = $modules->get("InputfieldText");
$field->attr('name', 'as_query_name');
$field->attr('size', 15);
$field->attr('value', $data['as_query_name']);
$field->label = "Query param name";
$field->description = "Name of the param that will be sent in the get request.";
$fields->append($field);
$field = $modules->get("InputfieldText");
$field->attr('name', 'as_query_url');
$field->attr('size', 45);
$field->attr('value', $data['as_query_url']);
$field->label = "Query URL";
$field->description = "Optional you can specify a different ajax request URL. Specify the url absolute from the root of site url. By default (if left blank) the script will take the search forms action URL to perform the request.";
$field->notes = "Example: /tools/search";
$fields->append($field);
$field = $modules->get("InputfieldCheckbox");
$field->attr('name', 'add_script');
$field->attr('value', 1);
$field->attr('checked', $data["add_script"] ? "checked" : "");
$field->label = "JS Script";
$field->description = "Turn off automatic script injecting. Instead you can load the AjaxSearch.js that comes with this module manually to your front-end markup.";
$field->notes = 'If you turn this off, you\'ll need to output the config vars used by AjaxSearch.js before the script include like: <?php echo "<script>var as_config =" . json_encode($modules->AjaxSearch->data) . "<script>"?>';
$fields->append($field);
return $fields;
}
}