separate command
This commit is contained in:
parent
fe48dce1c9
commit
5c449df9b6
3 changed files with 90 additions and 86 deletions
84
src/shared/commands/complete.js
Normal file
84
src/shared/commands/complete.js
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
import * as tabs from 'background/tabs';
|
||||||
|
import * as histories from 'background/histories';
|
||||||
|
|
||||||
|
const getOpenCompletions = (command, keywords, searchConfig) => {
|
||||||
|
return histories.getCompletions(keywords).then((pages) => {
|
||||||
|
let historyItems = pages.map((page) => {
|
||||||
|
return {
|
||||||
|
caption: page.title,
|
||||||
|
content: command + ' ' + page.url,
|
||||||
|
url: page.url
|
||||||
|
};
|
||||||
|
});
|
||||||
|
let engineNames = Object.keys(searchConfig.engines);
|
||||||
|
let engineItems = engineNames.filter(name => name.startsWith(keywords))
|
||||||
|
.map(name => ({
|
||||||
|
caption: name,
|
||||||
|
content: command + ' ' + name
|
||||||
|
}));
|
||||||
|
|
||||||
|
let completions = [];
|
||||||
|
if (engineItems.length > 0) {
|
||||||
|
completions.push({
|
||||||
|
name: 'Search Engines',
|
||||||
|
items: engineItems
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (historyItems.length > 0) {
|
||||||
|
completions.push({
|
||||||
|
name: 'History',
|
||||||
|
items: historyItems
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return completions;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const getCompletions = (line, settings) => {
|
||||||
|
let typedWords = line.trim().split(/ +/);
|
||||||
|
let typing = '';
|
||||||
|
if (!line.endsWith(' ')) {
|
||||||
|
typing = typedWords.pop();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typedWords.length === 0) {
|
||||||
|
return Promise.resolve([]);
|
||||||
|
}
|
||||||
|
let name = typedWords.shift();
|
||||||
|
let keywords = typedWords.concat(typing).join(' ');
|
||||||
|
|
||||||
|
switch (name) {
|
||||||
|
case 'o':
|
||||||
|
case 'open':
|
||||||
|
case 't':
|
||||||
|
case 'tabopen':
|
||||||
|
case 'w':
|
||||||
|
case 'winopen':
|
||||||
|
return getOpenCompletions(name, keywords, settings.search);
|
||||||
|
case 'b':
|
||||||
|
case 'buffer':
|
||||||
|
return tabs.getCompletions(keywords).then((gotTabs) => {
|
||||||
|
let items = gotTabs.map((tab) => {
|
||||||
|
return {
|
||||||
|
caption: tab.title,
|
||||||
|
content: name + ' ' + tab.title,
|
||||||
|
url: tab.url,
|
||||||
|
icon: tab.favIconUrl
|
||||||
|
};
|
||||||
|
});
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
name: 'Buffers',
|
||||||
|
items: items
|
||||||
|
}
|
||||||
|
];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return Promise.resolve([]);
|
||||||
|
};
|
||||||
|
|
||||||
|
const complete = (line, settings) => {
|
||||||
|
return getCompletions(line, settings);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default complete;
|
|
@ -59,40 +59,7 @@ const bufferCommand = (keywords) => {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const getOpenCompletions = (command, keywords, searchConfig) => {
|
const exec = (line, settings) => {
|
||||||
return histories.getCompletions(keywords).then((pages) => {
|
|
||||||
let historyItems = pages.map((page) => {
|
|
||||||
return {
|
|
||||||
caption: page.title,
|
|
||||||
content: command + ' ' + page.url,
|
|
||||||
url: page.url
|
|
||||||
};
|
|
||||||
});
|
|
||||||
let engineNames = Object.keys(searchConfig.engines);
|
|
||||||
let engineItems = engineNames.filter(name => name.startsWith(keywords))
|
|
||||||
.map(name => ({
|
|
||||||
caption: name,
|
|
||||||
content: command + ' ' + name
|
|
||||||
}));
|
|
||||||
|
|
||||||
let completions = [];
|
|
||||||
if (engineItems.length > 0) {
|
|
||||||
completions.push({
|
|
||||||
name: 'Search Engines',
|
|
||||||
items: engineItems
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (historyItems.length > 0) {
|
|
||||||
completions.push({
|
|
||||||
name: 'History',
|
|
||||||
items: historyItems
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return completions;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const doCommand = (line, settings) => {
|
|
||||||
let words = line.trim().split(/ +/);
|
let words = line.trim().split(/ +/);
|
||||||
let name = words.shift();
|
let name = words.shift();
|
||||||
|
|
||||||
|
@ -115,55 +82,4 @@ const doCommand = (line, settings) => {
|
||||||
throw new Error(name + ' command is not defined');
|
throw new Error(name + ' command is not defined');
|
||||||
};
|
};
|
||||||
|
|
||||||
const getCompletions = (line, settings) => {
|
export default exec;
|
||||||
let typedWords = line.trim().split(/ +/);
|
|
||||||
let typing = '';
|
|
||||||
if (!line.endsWith(' ')) {
|
|
||||||
typing = typedWords.pop();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (typedWords.length === 0) {
|
|
||||||
return Promise.resolve([]);
|
|
||||||
}
|
|
||||||
let name = typedWords.shift();
|
|
||||||
let keywords = typedWords.concat(typing).join(' ');
|
|
||||||
|
|
||||||
switch (name) {
|
|
||||||
case 'o':
|
|
||||||
case 'open':
|
|
||||||
case 't':
|
|
||||||
case 'tabopen':
|
|
||||||
case 'w':
|
|
||||||
case 'winopen':
|
|
||||||
return getOpenCompletions(name, keywords, settings.search);
|
|
||||||
case 'b':
|
|
||||||
case 'buffer':
|
|
||||||
return tabs.getCompletions(keywords).then((gotTabs) => {
|
|
||||||
let items = gotTabs.map((tab) => {
|
|
||||||
return {
|
|
||||||
caption: tab.title,
|
|
||||||
content: name + ' ' + tab.title,
|
|
||||||
url: tab.url,
|
|
||||||
icon: tab.favIconUrl
|
|
||||||
};
|
|
||||||
});
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
name: 'Buffers',
|
|
||||||
items: items
|
|
||||||
}
|
|
||||||
];
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return Promise.resolve([]);
|
|
||||||
};
|
|
||||||
|
|
||||||
const exec = (line, settings) => {
|
|
||||||
return doCommand(line, settings);
|
|
||||||
};
|
|
||||||
|
|
||||||
const complete = (line, settings) => {
|
|
||||||
return getCompletions(line, settings);
|
|
||||||
};
|
|
||||||
|
|
||||||
export { exec, complete };
|
|
4
src/shared/commands/index.js
Normal file
4
src/shared/commands/index.js
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
import exec from './exec';
|
||||||
|
import complete from './complete';
|
||||||
|
|
||||||
|
export { exec, complete };
|
Reference in a new issue