aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/lib/Store.js
blob: a867c3a46974958d03bf0cf0bf32749e7e30f7b1 (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 { computed, observable } from 'mobx';
import Reaction from './Reaction';

export default class Store {
  stores = {};

  api = {};

  actions = {};

  _reactions = [];

  // status implementation
  @observable _status = null;

  @computed get actionStatus() {
    return this._status || [];
  }

  set actionStatus(status) {
    this._status = status;
  }

  constructor(stores, api, actions) {
    this.stores = stores;
    this.api = api;
    this.actions = actions;
  }

  registerReactions(reactions) {
    for (const reaction of reactions)
      this._reactions.push(new Reaction(reaction));
  }

  setup() {}

  initialize() {
    this.setup();
    for (const reaction of this._reactions) reaction.start();
  }

  teardown() {
    for (const reaction of this._reactions) reaction.stop();
  }

  resetStatus() {
    this._status = null;
  }
}