aboutsummaryrefslogtreecommitdiff
path: root/src/actions/operation.js
blob: 5646c1cda7570f277fbfee65a9ad9359e1b900ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import operations from '../operations';
import messages from '../messages';
import * as consoleActions from './console';
import * as tabs from '../background/tabs';
import * as zooms from '../background/zooms';

const exec = (operation, tab) => {
  switch (operation.type) {
  case operations.TAB_CLOSE:
    return tabs.closeTab(tab.id);
  case operations.TAB_REOPEN:
    return tabs.reopenTab();
  case operations.TAB_PREV:
    return tabs.selectPrevTab(tab.index, operation.count);
  case operations.TAB_NEXT:
    return tabs.selectNextTab(tab.index, operation.count);
  case operations.TAB_RELOAD:
    return tabs.reload(tab, operation.cache);
  case operations.ZOOM_IN:
    return zooms.zoomIn();
  case operations.ZOOM_OUT:
    return zooms.zoomOut();
  case operations.ZOOM_NEUTRAL:
    return zooms.neutral();
  case operations.COMMAND_SHOW:
    return consoleActions.showCommand('');
  case operations.COMMAND_SHOW_OPEN:
    if (operation.alter) {
      // alter url
      return consoleActions.showCommand('open ' + tab.url);
    }
    return consoleActions.showCommand('open ');
  case operations.COMMAND_SHOW_TABOPEN:
    if (operation.alter) {
      // alter url
      return consoleActions.showCommand('tabopen ' + tab.url);
    }
    return consoleActions.showCommand('tabopen ');
  case operations.COMMAND_SHOW_BUFFER:
    return consoleActions.showCommand('buffer ');
  default:
    return browser.tabs.sendMessage(tab.id, {
      type: messages.CONTENT_OPERATION,
      operation
    });
  }
};

export { exec };