aboutsummaryrefslogtreecommitdiff
path: root/resources/js/store.js
blob: 669f0bc10baef3ff0b26ad68ae84904c1c077aac (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
import Vue from 'vue';
import Vuex from 'vuex';
Vue.use(Vuex);

export default new Vuex.Store({
  state: {
    selectedSign: "all",
    callSigns: [],
    data: []
  },
  getters: {
    getSelectedSign(state) {
      return state.selectedSign;
    },
    getSigns(state) {
      return state.callSigns;
    }
  },
  mutations: {
    setSelectedSign(state, sign) {
      state.selectedSign = sign;
    },
    fillSigns(state, signs) {
      state.callSigns = signs;
    }
  },
  actions: {
    setSelectedSign(context, sign) {
      context.commit('setSelectedSign', sign);
    },
    async fillSigns(context) {
      await axios.get('/special-calls/show').then(response => {
        context.commit('fillSigns', response.data);
      }).catch(error => {
        console.log(error);
      });
    }
  }
});