-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchScript.js
250 lines (213 loc) · 6.14 KB
/
searchScript.js
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
var doms = new Array();
var options = {
"each": function(result) {
if($(result).is(':visible')) {
doms.push(result);
var word = $(result).text().toLowerCase();
if ($.inArray(word, pageSyns) == -1) {
pageSyns.push(word);
pageSynsNum++;
}
}
},
"separateWordSearch": false
};
var currentIndex = 0;
var numDoms = 0;
var pageSynsNum=0;
var pageSyns = [];
//PRELOAD FILE TO REDUCE LAG TIME
var splitData = readDatabase();
//QUERY SET
function handleSetQuery(findWord) {
//STORE FOR FUTURE INSERTION
chrome.storage.sync.set({"lastSearch": findWord});
//CHECK TO SEE IF PARTIAL
chrome.storage.sync.get("partial", function(obj) {
if (obj.partial) {
options.accuracy = "partially";
} else {
options.accuracy = "exactly";
}
handleClear();
$("body").mark(findWord, options);
chrome.storage.sync.get("partialSyns", function(obj2) {
if (obj2.partialSyns) {
options.accuracy = "partially";
} else {
options.accuracy = "exactly";
}
//GET + HIGHLIGHT SYNONYMS
var synonyms = getSynonyms(findWord);
synonyms.forEach(function(element, index, array) {
$("body").mark(element, options);
});
numDoms = doms.length;
if (numDoms > 0) {
chrome.runtime.sendMessage({action: "makeRed", data: false});
sortDoms(0, numDoms - 1);
getToFirstDom();
chrome.runtime.sendMessage({action: "updateSecond", data: numDoms});
//UPDATE SYNONYMS
updateSynonyms(findWord);
chrome.runtime.sendMessage({action: "updateSynNum", data: pageSynsNum});
} else {
chrome.runtime.sendMessage({action: "makeRed", data: true});
}
});
});
}
function getToFirstDom() {
while(currentIndex < doms.length && !isVisible(doms[currentIndex])) {
currentIndex++;
}
currentIndex = currentIndex == doms.length ? 0 : currentIndex;
doms[currentIndex].scrollIntoViewIfNeeded();
$(doms[currentIndex]).addClass("highlightSelected");
chrome.runtime.sendMessage({action: "updateFirst", data: currentIndex});
}
function isVisible(el) {
var docViewTop = $(window).scrollTop();
var docViewBottom = docViewTop + $(window).height();
var elTop = $(el).offset().top;
var elBottom = elTop + $(el).height();
return (elBottom <= docViewBottom) && (elTop >= docViewTop);
}
function updateSynonyms(findWord) {
pageSyns = $.grep(pageSyns, function(element, index) {
return element != findWord;
});
pageSynsNum--;
var synsOut = "";
pageSyns.forEach(function(element, index, array) {
synsOut += element + ", ";
});
synsOut = synsOut.slice(0, synsOut.length-2);
synsOut = synsOut == "" ? "no synonyms :(" : synsOut;
chrome.runtime.sendMessage({action: "updateSynonyms", data: synsOut});
}
function getSynonyms(findWord) {
var synonymArray =[];
var index = 1;
while(index < splitData.length) {
var wordGroup = splitData[index];
var words = wordGroup.split("|");
var numDefs = parseInt(words[1]);
if(words[0] == findWord) {
var defBegin = index + 1;
var defEnd = index + numDefs;
for(var defParse = defBegin; defParse < defEnd; defParse++) {
var synWords = splitData[defParse].split("|");
for(var synParse = 1; synParse < synWords.length; synParse++) {
synonymArray.push(synWords[synParse]);
}
}
break;
} else {
index += 1 + numDefs;
}
}
return synonymArray;
}
function readDatabase() {
var request = new XMLHttpRequest();
var file = chrome.extension.getURL("database.txt");
request.open("GET", file, false);
request.send();
var splitData = request.responseText.split("\n");
return splitData;
}
//DOM SORTING
function sortDoms(start, end) {
if(start < end) {
var partitionIndex = partitionDoms(start, end);
sortDoms(start, partitionIndex - 1);
sortDoms(partitionIndex + 1, end);
}
}
function partitionDoms(start, end) {
var pivotIndex = end;
var partitionIndex = start;
var i;
for (i = start; i < end; i++) {
if (!domIsBefore(doms[i], doms[pivotIndex])) {
domSwapElements(i, partitionIndex);
partitionIndex++;
}
}
domSwapElements(partitionIndex, end);
return partitionIndex;
}
function domIsBefore(el1, el2) {
if (el1.compareDocumentPosition(el2) == 2) {
return true;
} else if (el1.compareDocumentPosition(el2) == 4) {
return false;
}
}
function domSwapElements(first, second) {
var temp = doms[first];
doms[first] = doms[second];
doms[second] = temp;
}
//WORD CYCLING
function handleClear() {
//RESET QUERY
$("body").unmark();
doms = new Array();
currentIndex = 0;
numDoms = 0;
//RESET COUNTER
chrome.runtime.sendMessage({action: "updateFirst", data: -1});
chrome.runtime.sendMessage({action: "updateSecond", data: 0});
//RESET SYNONYMS
pageSynsNum = 0;
pageSyns = [];
chrome.runtime.sendMessage({action: "updateSynonyms", data: "no synonyms :("});
chrome.runtime.sendMessage({action: "updateSynNum", data: 0});
}
function handlePrevious() {
if (numDoms > 0) {
$(doms[currentIndex]).removeClass("highlightSelected");
currentIndex = currentIndex - 1 > -1 ? currentIndex - 1 : numDoms - 1;
doms[currentIndex].scrollIntoViewIfNeeded();
$(doms[currentIndex]).addClass("highlightSelected");
chrome.runtime.sendMessage({action: "updateFirst", data: currentIndex});
}
}
function handleNext() {
if (numDoms > 0) {
$(doms[currentIndex]).removeClass("highlightSelected");
currentIndex = (currentIndex + 1) % numDoms;
doms[currentIndex].scrollIntoViewIfNeeded();
$(doms[currentIndex]).addClass("highlightSelected");
chrome.runtime.sendMessage({action: "updateFirst", data: currentIndex});
}
}
function handleReset() {
if (numDoms > 0) {
$(doms[currentIndex]).removeClass("highlightSelected");
currentIndex = 0;
doms[0].scrollIntoViewIfNeeded();
$(doms[0]).addClass("highlightSelected");
chrome.runtime.sendMessage({action: "updateFirst", data: 0});
}
}
chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
switch(request.action) {
case "setquery":
handleSetQuery(request.data);
break;
case "previous":
handlePrevious();
break;
case "next":
handleNext();
break;
case "reset":
handleReset();
break;
case "clear":
handleClear();
}
});