forked from pulumi/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch-worker.js
46 lines (40 loc) · 1.31 KB
/
search-worker.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
"use strict";
importScripts("/js/lunr.min.js");
var index;
// Download the search index synchronously.
var req = new XMLHttpRequest();
req.open("GET", "/search-index.json", false /* async */);
req.send();
if (req.readyState === req.DONE && req.status === 200) {
var data = JSON.parse(req.responseText);
index = lunr.Index.load(data);
} else {
console.log("problem downloading search-index.json");
}
function search(query) {
try {
if (index && query.length) {
var results = index.search(query);
return results.map(function(result) {
// Extract the url and title from the ref string (they're separated by "|").
var i = result.ref.indexOf("|");
if (i === -1) {
throw new Error("'|' not found in ref: " + result.ref);
}
var url = result.ref.substring(0, i);
var title = result.ref.substring(i + 1);
return { url: url, title: title };
});
}
} catch (e) {
console.log(e);
}
return [];
}
self.onmessage = function (message) {
var type = message.data.type;
var payload = message.data.payload;
if (type === "search") {
self.postMessage({ payload: { query: payload, results: search(payload) } });
}
}