aboutsummaryrefslogtreecommitdiff
path: root/src/background/index.js
blob: 8a687675fad2aaf6aff0b33096862dd3b22148da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import * as settingsActions from 'settings/actions/setting';
import messages from 'shared/messages';
import BackgroundComponent from 'background/components/background';
import reducers from 'background/reducers';
import { createStore } from 'shared/store';

const store = createStore(reducers, (e, sender) => {
  console.error('Vim-Vixen:', e);
  if (sender) {
    return browser.tabs.sendMessage(sender.tab.id, {
      type: messages.CONSOLE_SHOW_ERROR,
      text: e.message,
    });
  }
});
// eslint-disable-next-line no-unused-vars
const backgroundComponent = new BackgroundComponent(store);

store.dispatch(settingsActions.load());