aboutsummaryrefslogtreecommitdiff
path: root/src/background/index.js
blob: 619b0769efb4dbeee7c8ea9a7d17b5d6a31225ef (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
import * as settingActions from 'background/actions/setting';
import BackgroundComponent from 'background/components/background';
import OperationComponent from 'background/components/operation';
import TabComponent from 'background/components/tab';
import IndicatorComponent from 'background/components/indicator';
import reducers from 'background/reducers';
import { createStore, applyMiddleware } from 'redux';
import promise from 'redux-promise';
import * as versions from './shared/versions';

import ContentMessageListener from './infrastructures/content-message-listener';

const store = createStore(
  reducers,
  applyMiddleware(promise),
);

const checkAndNotifyUpdated = async() => {
  let updated = await versions.checkUpdated();
  if (!updated) {
    return;
  }
  await versions.notify();
  await versions.commit();
};

/* eslint-disable no-unused-vars */
const backgroundComponent = new BackgroundComponent(store);
const operationComponent = new OperationComponent(store);
const tabComponent = new TabComponent(store);
const indicatorComponent = new IndicatorComponent(store);
/* eslint-enable no-unused-vars */

store.dispatch(settingActions.load());

checkAndNotifyUpdated();

new ContentMessageListener().run();