|
|
@ -2,6 +2,7 @@ import messages from 'shared/messages'; |
|
|
|
import operations from 'shared/operations'; |
|
|
|
import operations from 'shared/operations'; |
|
|
|
import * as tabs from '../shared//tabs'; |
|
|
|
import * as tabs from '../shared//tabs'; |
|
|
|
import * as zooms from '../shared/zooms'; |
|
|
|
import * as zooms from '../shared/zooms'; |
|
|
|
|
|
|
|
import * as consoleActions from '../actions/console'; |
|
|
|
|
|
|
|
|
|
|
|
export default class BackgroundComponent { |
|
|
|
export default class BackgroundComponent { |
|
|
|
constructor(store) { |
|
|
|
constructor(store) { |
|
|
@ -23,101 +24,104 @@ export default class BackgroundComponent { |
|
|
|
switch (message.type) { |
|
|
|
switch (message.type) { |
|
|
|
case messages.BACKGROUND_OPERATION: |
|
|
|
case messages.BACKGROUND_OPERATION: |
|
|
|
return this.store.dispatch( |
|
|
|
return this.store.dispatch( |
|
|
|
this.exec(message.operation, sender.tab), |
|
|
|
this.exec(message.operation, sender.tab)); |
|
|
|
sender); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// eslint-disable-next-line complexity, max-lines-per-function
|
|
|
|
// eslint-disable-next-line complexity, max-lines-per-function
|
|
|
|
exec(operation, tab) { |
|
|
|
async exec(operation, tab) { |
|
|
|
let tabState = this.store.getState().tab; |
|
|
|
let tabState = this.store.getState().tab; |
|
|
|
|
|
|
|
|
|
|
|
switch (operation.type) { |
|
|
|
switch (operation.type) { |
|
|
|
case operations.TAB_CLOSE: |
|
|
|
case operations.TAB_CLOSE: |
|
|
|
return tabs.closeTab(tab.id); |
|
|
|
await tabs.closeTab(tab.id); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.TAB_CLOSE_FORCE: |
|
|
|
case operations.TAB_CLOSE_FORCE: |
|
|
|
return tabs.closeTabForce(tab.id); |
|
|
|
await tabs.closeTabForce(tab.id); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.TAB_REOPEN: |
|
|
|
case operations.TAB_REOPEN: |
|
|
|
return tabs.reopenTab(); |
|
|
|
await tabs.reopenTab(); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.TAB_PREV: |
|
|
|
case operations.TAB_PREV: |
|
|
|
return tabs.selectPrevTab(tab.index, operation.count); |
|
|
|
await tabs.selectPrevTab(tab.index, operation.count); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.TAB_NEXT: |
|
|
|
case operations.TAB_NEXT: |
|
|
|
return tabs.selectNextTab(tab.index, operation.count); |
|
|
|
await tabs.selectNextTab(tab.index, operation.count); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.TAB_FIRST: |
|
|
|
case operations.TAB_FIRST: |
|
|
|
return tabs.selectFirstTab(); |
|
|
|
await tabs.selectFirstTab(); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.TAB_LAST: |
|
|
|
case operations.TAB_LAST: |
|
|
|
return tabs.selectLastTab(); |
|
|
|
await tabs.selectLastTab(); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.TAB_PREV_SEL: |
|
|
|
case operations.TAB_PREV_SEL: |
|
|
|
if (tabState.previousSelected > 0) { |
|
|
|
if (tabState.previousSelected > 0) { |
|
|
|
return tabs.selectTab(tabState.previousSelected); |
|
|
|
await tabs.selectTab(tabState.previousSelected); |
|
|
|
} |
|
|
|
} |
|
|
|
break; |
|
|
|
break; |
|
|
|
case operations.TAB_RELOAD: |
|
|
|
case operations.TAB_RELOAD: |
|
|
|
return tabs.reload(tab, operation.cache); |
|
|
|
await tabs.reload(tab, operation.cache); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.TAB_PIN: |
|
|
|
case operations.TAB_PIN: |
|
|
|
return tabs.updateTabPinned(tab, true); |
|
|
|
await tabs.updateTabPinned(tab, true); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.TAB_UNPIN: |
|
|
|
case operations.TAB_UNPIN: |
|
|
|
return tabs.updateTabPinned(tab, false); |
|
|
|
await tabs.updateTabPinned(tab, false); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.TAB_TOGGLE_PINNED: |
|
|
|
case operations.TAB_TOGGLE_PINNED: |
|
|
|
return tabs.toggleTabPinned(tab); |
|
|
|
await tabs.toggleTabPinned(tab); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.TAB_DUPLICATE: |
|
|
|
case operations.TAB_DUPLICATE: |
|
|
|
return tabs.duplicate(tab.id); |
|
|
|
await tabs.duplicate(tab.id); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.ZOOM_IN: |
|
|
|
case operations.ZOOM_IN: |
|
|
|
return zooms.zoomIn(); |
|
|
|
await zooms.zoomIn(); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.ZOOM_OUT: |
|
|
|
case operations.ZOOM_OUT: |
|
|
|
return zooms.zoomOut(); |
|
|
|
await zooms.zoomOut(); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.ZOOM_NEUTRAL: |
|
|
|
case operations.ZOOM_NEUTRAL: |
|
|
|
return zooms.neutral(); |
|
|
|
await zooms.neutral(); |
|
|
|
|
|
|
|
break; |
|
|
|
case operations.COMMAND_SHOW: |
|
|
|
case operations.COMMAND_SHOW: |
|
|
|
return this.sendConsoleShowCommand(tab, ''); |
|
|
|
return consoleActions.showCommand(tab, ''); |
|
|
|
case operations.COMMAND_SHOW_OPEN: |
|
|
|
case operations.COMMAND_SHOW_OPEN: |
|
|
|
if (operation.alter) { |
|
|
|
if (operation.alter) { |
|
|
|
// alter url
|
|
|
|
// alter url
|
|
|
|
return this.sendConsoleShowCommand(tab, 'open ' + tab.url); |
|
|
|
return consoleActions.showCommand(tab, 'open ' + tab.url); |
|
|
|
} |
|
|
|
} |
|
|
|
return this.sendConsoleShowCommand(tab, 'open '); |
|
|
|
return consoleActions.showCommand(tab, 'open '); |
|
|
|
case operations.COMMAND_SHOW_TABOPEN: |
|
|
|
case operations.COMMAND_SHOW_TABOPEN: |
|
|
|
if (operation.alter) { |
|
|
|
if (operation.alter) { |
|
|
|
// alter url
|
|
|
|
// alter url
|
|
|
|
return this.sendConsoleShowCommand(tab, 'tabopen ' + tab.url); |
|
|
|
return consoleActions.showCommand(tab, 'tabopen ' + tab.url); |
|
|
|
} |
|
|
|
} |
|
|
|
return this.sendConsoleShowCommand(tab, 'tabopen '); |
|
|
|
return consoleActions.showCommand(tab, 'tabopen '); |
|
|
|
case operations.COMMAND_SHOW_WINOPEN: |
|
|
|
case operations.COMMAND_SHOW_WINOPEN: |
|
|
|
if (operation.alter) { |
|
|
|
if (operation.alter) { |
|
|
|
// alter url
|
|
|
|
// alter url
|
|
|
|
return this.sendConsoleShowCommand(tab, 'winopen ' + tab.url); |
|
|
|
return consoleActions.showCommand(tab, 'win ' + tab.url); |
|
|
|
} |
|
|
|
} |
|
|
|
return this.sendConsoleShowCommand(tab, 'winopen '); |
|
|
|
return consoleActions.showCommand(tab, 'winopen '); |
|
|
|
case operations.COMMAND_SHOW_BUFFER: |
|
|
|
case operations.COMMAND_SHOW_BUFFER: |
|
|
|
return this.sendConsoleShowCommand(tab, 'buffer '); |
|
|
|
return consoleActions.showCommand(tab, 'buffer '); |
|
|
|
case operations.COMMAND_SHOW_ADDBOOKMARK: |
|
|
|
case operations.COMMAND_SHOW_ADDBOOKMARK: |
|
|
|
if (operation.alter) { |
|
|
|
if (operation.alter) { |
|
|
|
return this.sendConsoleShowCommand(tab, 'addbookmark ' + tab.title); |
|
|
|
return consoleActions.showCommand(tab, 'addbookmark ' + tab.title); |
|
|
|
} |
|
|
|
} |
|
|
|
return this.sendConsoleShowCommand(tab, 'addbookmark '); |
|
|
|
return consoleActions.showCommand(tab, 'addbookmark '); |
|
|
|
case operations.FIND_START: |
|
|
|
case operations.FIND_START: |
|
|
|
return browser.tabs.sendMessage(tab.id, { |
|
|
|
return consoleActions.showFind(tab); |
|
|
|
type: messages.CONSOLE_SHOW_FIND |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
case operations.CANCEL: |
|
|
|
case operations.CANCEL: |
|
|
|
return browser.tabs.sendMessage(tab.id, { |
|
|
|
return consoleActions.hide(tab); |
|
|
|
type: messages.CONSOLE_HIDE, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
case operations.PAGE_SOURCE: |
|
|
|
case operations.PAGE_SOURCE: |
|
|
|
return browser.tabs.create({ |
|
|
|
await browser.tabs.create({ |
|
|
|
url: 'view-source:' + tab.url, |
|
|
|
url: 'view-source:' + tab.url, |
|
|
|
index: tab.index + 1, |
|
|
|
index: tab.index + 1, |
|
|
|
openerTabId: tab.id, |
|
|
|
openerTabId: tab.id, |
|
|
|
}); |
|
|
|
}); |
|
|
|
default: |
|
|
|
break; |
|
|
|
return Promise.resolve(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
return { type: '' }; |
|
|
|
sendConsoleShowCommand(tab, command) { |
|
|
|
|
|
|
|
return browser.tabs.sendMessage(tab.id, { |
|
|
|
|
|
|
|
type: messages.CONSOLE_SHOW_COMMAND, |
|
|
|
|
|
|
|
command, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|