Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fulltextsearch.v1.result.js « js - github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: daa5f839fee47fc1d085a7a94d47f4d2d9f0a5a0 (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
/*
 * FullTextSearch - Full text search framework for Nextcloud
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Maxence Lange <maxence@artificial-owl.com>
 * @copyright 2018
 * @license GNU AGPL version 3 or any later version
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

/** global: OCA */
/** global: settings */
/** global: curr */
/** global: nav */

/** @namespace result.provider */
/** @namespace result.documents */

var result = {

	displayResult: function (res) {
		if (settings.resultContainer === null) {
			return;
		}

		var searchResult = res.result;
		if (searchResult.length === 0) {
			result.displayNoResult();
			return;
		}

		for (var i = 0; i < searchResult.length; i++) {
			result.displayProviderResult(res.request, searchResult[i]);
		}
	},


	displayError: function (res) {
	},


	displayNoResult: function () {
		settings.divNoResult.fadeTo(settings.delay_result, 1);
		settings.resultContainer.find('.provider_header').each(function () {
			$(this).fadeTo(settings.delay_result, 0);
		});
	},


	displayProviderResult: function (request, result) {

		settings.divNoResult.fadeTo(settings.delay_result, 0);

		var current = curr.getProviderResult(result.provider.id);
		var divProvider = nav.getDivProvider(result.provider.id, result.provider.name);

		nav.manageDivProviderNavigation(divProvider.children('.provider_navigation'), request, result.meta);
		nav.manageDivProviderResult(divProvider.children('.provider_result'), result.documents,
			current.documents);

		divProvider.slideDown(settings.delay_provider, function () {
			$(this).fadeTo(settings.delay_provider, 1);
		});

		curr.setProviderResult(result.provider.id, result);
	},


	recalibrateResult: function (oldResult, newResult) {
		var tmpResult = [];
		for (var i = 0; i < oldResult.length; i++) {
			if (result.getResultIndex(oldResult[i].id, newResult) > -1) {
				tmpResult.push(oldResult[i]);
			}
		}

		return tmpResult;
	},


	getResultIndex: function (id, result) {
		if (!result) {
			return -1;
		}

		for (var i = 0; i < result.length; i++) {
			if (result[i].id === id) {
				return i;
			}
		}

		return -1;
	}


};