complete histoly simply

jh-changes
Shin'ya Ueoka 7 years ago
parent 49fc34e444
commit 66de4a59d0
  1. 23
      src/actions/command.js
  2. 10
      src/background/histories.js

@ -1,4 +1,5 @@
import * as tabs from '../background/tabs';
import * as histories from '../background/histories';
import * as consoleActions from './console';
const normalizeUrl = (string) => {
@ -39,9 +40,11 @@ const bufferCommand = (keywords) => {
const doCommand = (name, remaining) => {
switch (name) {
case 'o':
case 'open':
// TODO use search engined and pass keywords to them
return openCommand(normalizeUrl(remaining));
case 't':
case 'tabopen':
return tabopenCommand(normalizeUrl(remaining));
case 'b':
@ -53,6 +56,26 @@ const doCommand = (name, remaining) => {
const getCompletions = (command, keywords) => {
switch (command) {
case 'o':
case 'open':
case 't':
case 'tabopen':
return histories.getCompletions(keywords).then((pages) => {
let items = pages.map((page) => {
return {
caption: page.title,
content: page.url,
url: page.url
};
});
return [
{
name: 'History',
items
}
];
});
case 'b':
case 'buffer':
return tabs.getCompletions(keywords).then((gotTabs) => {
let items = gotTabs.map((tab) => {

@ -0,0 +1,10 @@
const getCompletions = (keyword) => {
return browser.history.search({
text: keyword,
startTime: '1970-01-01'
}).then((items) => {
return items.sort((x, y) => x.lastVisitTime < y.lastVisitTime).slice(0, 10);
});
};
export { getCompletions };