move background actions to operations

This commit is contained in:
Shin'ya Ueoka 2017-09-13 21:23:55 +09:00
parent 0ae39f1b67
commit b6e5153c1f
6 changed files with 56 additions and 33 deletions

27
src/actions/operation.js Normal file
View file

@ -0,0 +1,27 @@
import operations from '../operations';
import * as tabs from '../background/tabs';
import * as zooms from '../background/zooms';
export function exec(operation, sender) {
switch (operation.type) {
case operations.TABS_CLOSE:
return tabs.closeTab(sender.tab.id);
case operations.TABS_REOPEN:
return tabs.reopenTab();
case operations.TABS_PREV:
return tabs.selectPrevTab(sender.tab.index, operation.count);
case operations.TABS_NEXT:
return tabs.selectNextTab(sender.tab.index, operation.count);
case operations.TABS_RELOAD:
return tabs.reload(sender.tab, operation.cache);
case operations.ZOOM_IN:
return zooms.zoomIn();
case operations.ZOOM_OUT:
return zooms.zoomOut();
case operations.ZOOM_NEUTRAL:
return zooms.neutral();
default:
return Promise.resolve();
}
}