mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
pt 1 in reviving the android build (copied from pm 28a1, wish me luck)
This commit is contained in:
parent
efa9662725
commit
d7788a6d6d
4249 changed files with 468189 additions and 0 deletions
32
mobile/android/tests/browser/robocop/robocop_suggestions.sjs
Normal file
32
mobile/android/tests/browser/robocop/robocop_suggestions.sjs
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
/**
|
||||
* Used with testSearchSuggestions.
|
||||
* Returns a set of pre-defined suggestions for given prefixes.
|
||||
*/
|
||||
|
||||
function handleRequest(request, response) {
|
||||
let query = request.queryString.match(/^query=(.*)$/)[1];
|
||||
query = decodeURIComponent(query).replace(/\+/g, " ");
|
||||
|
||||
let suggestMap = {
|
||||
"f": ["facebook", "fandango", "frys", "forever 21", "fafsa"],
|
||||
"fo": ["forever 21", "food network", "fox news", "foothill college", "fox"],
|
||||
"foo": ["food network", "foothill college", "foot locker", "footloose", "foo fighters"],
|
||||
"foo ": ["foo fighters", "foo bar", "foo bat", "foo bay"],
|
||||
"foo b": ["foo bar", "foo bat", "foo bay"],
|
||||
"foo ba": ["foo bar", "foo bat", "foo bay"],
|
||||
"foo bar": ["foo bar"]
|
||||
};
|
||||
|
||||
let suggestions = suggestMap[query];
|
||||
if (!suggestions)
|
||||
suggestions = [];
|
||||
suggestions = [query, suggestions];
|
||||
|
||||
/*
|
||||
* Sample result:
|
||||
* ["foo",["food network","foothill college","foot locker",...]]
|
||||
*/
|
||||
response.setHeader("Content-Type", "text/json", false);
|
||||
response.setHeader("Cache-Control", "no-cache", false);
|
||||
response.write(JSON.stringify(suggestions));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue