summaryrefslogtreecommitdiffstats
path: root/search/js/search.js
blob: 82d3c2c66916cd0479d2741043b1334f8de99943 (plain)
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
/**
 * ownCloud - core
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Jörn Friedrich Dreyer <jfd@owncloud.com>
 * @copyright Jörn Friedrich Dreyer 2014
 */

(function () {
	/**
	 * @class OCA.Search
	 * @classdesc
	 *
	 * The Search class manages a search queries and their results
	 *
	 * @param $searchBox container element with existing markup for the #searchbox form
	 */
	var Search = function($searchBox) {
		this.initialize($searchBox);
	};
	/**
	 * @memberof OC
	 */
	Search.prototype = {

		/**
		 * Initialize the search box
		 *
		 * @param $searchBox container element with existing markup for the #searchbox form
		 * @private
		 */
		initialize: function($searchBox) {

			var that = this;

			/**
			 * contains closures that are called to filter the current content
			 */
			var filters = {};
			this.setFilter = function(type, filter) {
				filters[type] = filter;
			};
			this.hasFilter = function(type) {
				return typeof filters[type] !== 'undefined';
			};
			this.getFilter = function(type) {
				return filters[type];
			};

			/**
			 * contains closures that are called to render search results
			 */
			var renderers = {};
			this.setRenderer = function(type, renderer) {
				renderers[type] = renderer;
			};
			this.hasRenderer = function(type) {
				return typeof renderers[type] !== 'undefined';
			};
			this.getRenderer = function(type) {
				return renderers[type];
			};

			/**
			 * contains closures that are called when a search result has been clicked
			 */
			var handlers = {};
			this.setHandler = function(type, handler) {
				handlers[type] = handler;
			};
			this.hasHandler = function(type) {
				return typeof handlers[type] !== 'undefined';
			};
			this.getHandler = function(type) {
				return handlers[type];
			};

			var currentResult = -1;
			var lastQuery = '';
			var lastPage = 0;
			var lastSize = 30;
			var lastResults = {};

			this.getLastQuery = function() {
				return lastQuery;
			};

			/**
			 * Do a search query and display the results
			 * @param {string} query the search query
			 */
			this.search = _.debounce(function(query, inApps, page, size) {
				if(query) {
					OC.addStyle('search','results');
					if (typeof page !== 'number') {
						page = 1;
					}
					if (typeof size !== 'number') {
						size = 30;
					}
					if (typeof inApps !== 'object') {
						var currentApp = getCurrentApp();
						if(currentApp) {
							inApps = [currentApp];
						} else {
							inApps = [];
						}
					}
					// prevent double pages
					if ($searchResults && query === lastQuery && page === lastPage&& size === lastSize) {
						return;
					}
					lastQuery = query;
					lastPage = page;
					lastSize = size;
					$.getJSON(OC.generateUrl('search/ajax/search.php'), {query:query, inApps:inApps, page:page, size:size }, function(results) {
						lastResults = results;
						if (page === 1) {
							showResults(results);
						} else {
							addResults(results);
						}
					});
				}
			}, 500);

			function getCurrentApp() {
				var classList = document.getElementById('content').className.split(/\s+/);
				for (var i = 0; i < classList.length; i++) {
					if (classList[i].indexOf('app-') === 0) {
						return classList[i].substr(4);
					}
				}
				return false;
			}

			var $searchResults = false;
			var $wrapper = false;
			var $status = false;
			const summaryAndStatusHeight = 118;

			function isStatusOffScreen() {
				return $searchResults.position().top + summaryAndStatusHeight > window.innerHeight;
			}

			function placeStatus() {
				if (isStatusOffScreen()) {
					$status.addClass('fixed');
				} else {
					$status.removeClass('fixed');
				}
			}
			function showResults(results) {
				if (results.length === 0) {
					return;
				}
				if (!$searchResults) {
					$wrapper = $('<div class="searchresults-wrapper"/>');
					$('#app-content')
						.append($wrapper)
						.find('.viewcontainer').css('min-height', 'initial');
					$wrapper.load(OC.webroot + '/search/templates/part.results.html', function () {
						$searchResults = $wrapper.find('#searchresults');
						$searchResults.on('click', 'tr.result', function (event) {
							var $row = $(this);
							var item = $row.data('result');
							if(that.hasHandler(item.type)){
								var result = that.getHandler(item.type)($row, result, event);
								that.hideResults();
								return result;
							}
						});
						$searchResults.on('click', '#status', function (event) {
							event.preventDefault();
							scrollToResults();
							return false;
						});
						$(document).click(function (event) {
							that.hideResults();
							if(that.hasFilter(getCurrentApp())) {
								that.getFilter(getCurrentApp())('');
							}
						});
						$('#app-content').on('scroll', _.bind(onScroll, this));
						lastResults = results;
						$status = $searchResults.find('#status')
							.data('count', results.length)
							.text(t('search', '{count} search results in other folders', {count:results.length}, results.length));
						placeStatus();
						showResults(results);
					});
				} else {
					$searchResults.find('tr.result').remove();
					$searchResults.show();
					addResults(results);
				}
			}
			function addResults(results) {
				var $template = $searchResults.find('tr.template');
				jQuery.each(results, function (i, result) {
					var $row = $template.clone();
					$row.removeClass('template');
					$row.addClass('result');

					$row.data('result', result);

					// generic results only have four attributes
					$row.find('td.info div.name').text(result.name);
					$row.find('td.info a').attr('href', result.link);

					/**
					 * Give plugins the ability to customize the search results. see result.js for examples
					 */
					if (that.hasRenderer(result.type)) {
						$row = that.getRenderer(result.type)($row, result);
					} else {
						// for backward compatibility add text div
						$row.find('td.info div.name').addClass('result');
						$row.find('td.result div.name').after('<div class="text"></div>');
						$row.find('td.result div.text').text(result.name);
						if (OC.search.customResults && OC.search.customResults[result.type]) {
							OC.search.customResults[result.type]($row, result);
						}
					}
					if ($row) {
						$searchResults.find('tbody').append($row);
					} else {
						// not showing result, decrease counter
						var count = $status.data('count') - 1;
						$status.data('count', count)
							.text(t('search', '{count} search results in other places', {count:count}, count));
					}
				});
			}
			function renderCurrent() {
				var result = $searchResults.find('tr.result')[currentResult];
				if (result) {
					var $result = $(result);
					var currentOffset = $searchResults.scrollTop();
					$('#app-content').animate({
						// Scrolling to the top of the new result
						scrollTop: currentOffset + $result.offset().top - $result.height() * 2
					}, {
						duration: 100
					});
					$searchResults.find('tr.result.current').removeClass('current');
					$result.addClass('current');
				}
			}
			this.hideResults = function() {
				if(that.hasFilter(getCurrentApp())) {
					that.getFilter(getCurrentApp())('');
				}
				if ($searchResults) {
					$searchResults.hide();
					$searchBox.val('');
					$wrapper.remove();
					$searchResults = false;
					$wrapper = false;
				}
			};

			$searchBox.keyup(function(event) {
				if (event.keyCode === 13) { //enter
					if(currentResult > -1) {
						var result = $searchResults.find('tr.result a')[currentResult];
						window.location = $(result).attr('href');
					}
				} else if(event.keyCode === 38) { //up
					if(currentResult > 0) {
						currentResult--;
						renderCurrent();

					}
				} else if(event.keyCode === 40) { //down
					if(lastResults.length > currentResult + 1){
						currentResult++;
						renderCurrent();
					}
				} else if(event.keyCode === 27) { //esc
					that.hideResults();
				} else {
					var query = $searchBox.val();
					if (lastQuery !== query) {
						lastQuery = query;
						currentResult = -1;
						if(that.hasFilter(getCurrentApp())) {
							that.getFilter(getCurrentApp())(query);
						}
						if (query.length > 2) {
							that.search(query);
						} else {
							if (that.hideResults) {
								that.hideResults();
							}
						}
					}
				}
			});

			/**
			 * Event handler for when scrolling the list container.
			 * This appends/renders the next page of entries when reaching the bottom.
			 */
			function onScroll(e) {
				if ($searchResults) {
					//if ( $searchResults && $searchResults.scrollTop() + $searchResults.height() > $searchResults.find('table').height() - 300 ) {
					//	that.search(lastQuery, lastPage + 1);
					//}
					placeStatus();
				}
			}

			/**
			 * scrolls the search results to the top
			 */
			function scrollToResults() {
				setTimeout(function() {
					if (isStatusOffScreen()) {
						var newScrollTop = $('#app-content').prop('scrollHeight') - $searchResults.height();
						console.log('scrolling to ' + newScrollTop);
						$('#app-content').animate({
							scrollTop: newScrollTop
						}, {
							duration: 100,
							complete: function () {
								scrollToResults();
							}
						});
					}
				}, 150);
			}

			$('form.searchbox').submit(function(event) {
				event.preventDefault();
			});

			OC.Plugins.attach('OCA.Search', this);
		}
	};
	OCA.Search = Search;
})();

$(document).ready(function() {
	OC.Search = new OCA.Search($('#searchbox'));
});

/**
 * @deprecated use get/setRenderer() instead
 */
OC.search.customResults = {};
/**
 * @deprecated use get/setRenderer() instead
 */
OC.search.resultTypes = {};