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

export default class Store {
  /** @type Stores */
  stores;

  /** @type ApiInterface */
  api;

  /** @type Actions */
  actions;

  /** @type Reaction[] */
  _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;
  }
}