Skip to content

Commit 63713d2

Browse files
committed
Added lookups
1 parent a400d03 commit 63713d2

File tree

5 files changed

+81
-24
lines changed

5 files changed

+81
-24
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,4 +150,4 @@ dist
150150
.yarn/install-state.gz
151151
.pnp.*
152152

153-
/website/static/commands.txt
153+
/website/static/commands.json

extension/background.js

+48-20
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,62 @@
1-
chrome.omnibox.setDefaultSuggestion({
2-
description:
3-
"Browse to https://cmd.ms for the full command list. (try <match>ad</match>)",
4-
});
5-
61
chrome.omnibox.onInputEntered.addListener((text) => {
72
var newURL = "https://" + text + ".cmd.ms/";
83
chrome.tabs.update({ url: newURL });
94
});
105

116
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')
1313
.then((response) => response.json())
1414
.then((data) => {
1515
if (!data.length) {
1616
//no color was found
1717
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+
});
2242

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+
}
2952
}
30-
])
31-
}
32-
else{
33-
}
53+
})
3454
});
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+
}

extension/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "[cmd.ms]",
33
"description": "Type 'c' plus a search term into the Omnibox to open search in new tab.",
4-
"version": "0.1",
4+
"version": "0.2",
55
"manifest_version": 3,
66
"homepage_url": "https://cmd.ms",
77
"author": "Merill Fernando",

website/buildscript/build.js

+31-1
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,39 @@ function createJsonFile(commands){
7171
let jsonContent = 'export const commands = ' + cmds;
7272
console.log('Creating commands.table.js');
7373
fs.writeFileSync('./src/tableHome/commands.table.js', jsonContent);
74-
fs.writeFileSync('./static/commands.json', jsonContent);
7574
console.log('Commands file created successfully.')
7675
}
7776

77+
function createJsonFileForExtension(commands){
78+
commands.forEach(element => {
79+
if(element.alias.length != 0){
80+
element.alias.split(',').forEach(aliasItem => {
81+
let cmd = {
82+
command: aliasItem,
83+
alias: aliasItem,
84+
description: element.description,
85+
keywords: '',
86+
category: element.category,
87+
url: getTruncatedUrl(element.url)
88+
}
89+
commands.push(cmd);
90+
})
91+
element.alias = '';
92+
}
93+
element.url = getTruncatedUrl(element.url);
94+
});
95+
const cmds = JSON.stringify(commands);
96+
fs.writeFileSync('./static/commands.json', cmds);
97+
}
98+
99+
function getTruncatedUrl(url){
100+
var shortUrl = url.slice(0, 75);
101+
if(url.length > 75){
102+
shortUrl += '...'
103+
}
104+
return shortUrl;
105+
}
106+
78107
async function run() {
79108

80109
let commands = [];
@@ -99,6 +128,7 @@ async function run() {
99128
validateCommands(allCommands);
100129
createRedirectFile(allCommands);
101130
createJsonFile(commands);
131+
createJsonFileForExtension(commands);
102132
});
103133
}
104134

website/static/commands.js

-1
This file was deleted.

0 commit comments

Comments
 (0)