|
1 |
| -chrome.omnibox.setDefaultSuggestion({ |
2 |
| - description: |
3 |
| - "Browse to https://cmd.ms for the full command list. (try <match>ad</match>)", |
4 |
| -}); |
5 |
| - |
6 | 1 | chrome.omnibox.onInputEntered.addListener((text) => {
|
7 | 2 | var newURL = "https://" + text + ".cmd.ms/";
|
8 | 3 | chrome.tabs.update({ url: newURL });
|
9 | 4 | });
|
10 | 5 |
|
11 | 6 | chrome.omnibox.onInputChanged.addListener((text, suggest) => {
|
12 |
| - fetch('http://www.colourlovers.com/api/color/' + text + '?format=json') |
| 7 | + if(text.length == 0){ |
| 8 | + suggest([]); |
| 9 | + return; |
| 10 | + } |
| 11 | + |
| 12 | + fetch('http://localhost:3000/commands.json') |
13 | 13 | .then((response) => response.json())
|
14 | 14 | .then((data) => {
|
15 | 15 | if (!data.length) {
|
16 | 16 | //no color was found
|
17 | 17 | suggest([]);
|
18 |
| - } else { |
19 |
| - //TODO send suggestion when color exists |
20 |
| - } |
21 |
| -}) |
| 18 | + } else { |
| 19 | + let sugsP1 = []; |
| 20 | + let sugsP2 = []; |
| 21 | + let sugsP3 = []; |
| 22 | + let sugsP4 = []; |
| 23 | + inputText = text.toLowerCase(); |
| 24 | + |
| 25 | + console.log(text); |
| 26 | + data.forEach(element => { |
| 27 | + command = element.command.toLowerCase(); |
| 28 | + if(command === inputText){ |
| 29 | + var topHit = getCommand(element.command, element); |
| 30 | + sugsP1.push(topHit); |
| 31 | + } else if(command.startsWith(inputText)){ |
| 32 | + sugsP2.push(getCommand(element.command, element)); |
| 33 | + } else if(command.includes(inputText)){ |
| 34 | + sugsP3.push(getCommand(element.command, element)); |
| 35 | + } else if (element.description.toLowerCase().includes(inputText) || element.keywords.toLowerCase().includes(inputText)){ |
| 36 | + sugsP4.push(getCommand(element.command, element)); |
| 37 | + } |
| 38 | + element.alias.split(',').forEach(aliasItem => { |
| 39 | + |
| 40 | + }); |
| 41 | + }); |
22 | 42 |
|
23 |
| - if(text.includes('a')){ |
24 |
| - suggest([ |
25 |
| - { |
26 |
| - content: `adca`, |
27 |
| - deletable: true, |
28 |
| - description: `<match>adca</match> - Azure AD - Conditional Access` |
| 43 | + let allSug = sugsP1.concat(sugsP2).concat(sugsP3).concat(sugsP4); |
| 44 | + console.log(allSug); |
| 45 | + suggest(allSug); |
| 46 | + chrome.omnibox.setDefaultSuggestion({description:"Go to %s.cmd.ms"}) |
| 47 | + if(allSug.length > 0){ |
| 48 | + if(allSug[0].content === inputText){ |
| 49 | + chrome.omnibox.setDefaultSuggestion({description: allSug[0].description}); |
| 50 | + } |
| 51 | + } |
29 | 52 | }
|
30 |
| - ]) |
31 |
| - } |
32 |
| - else{ |
33 |
| - } |
| 53 | + }) |
34 | 54 | });
|
| 55 | + |
| 56 | +function getCommand(cmd, element){ |
| 57 | + return { |
| 58 | + content: `${cmd}`, |
| 59 | + deletable: true, |
| 60 | + description: `<match>${cmd}</match>.cmd.ms - ${element.description} (${element.category}) > ${element.url}` |
| 61 | + } |
| 62 | +} |
0 commit comments