summaryrefslogtreecommitdiff
path: root/src/store/modules/Control/ServerLedStore.js
blob: 54faf5914f998993e88e3d14f192ae7be58e0043 (plain)
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
import api from '../../api';

const ServerLedStore = {
  namespaced: true,
  state: {
    indicatorValue: 'Off'
  },
  getters: {
    getIndicatorValue: state => state.indicatorValue
  },
  mutations: {
    setIndicatorValue(state, indicatorValue) {
      state.indicatorValue = indicatorValue;
    }
  },
  actions: {
    async getIndicatorValue({ commit }) {
      await api
        .get('/redfish/v1/Systems/system')
        .then(response => {
          commit('setIndicatorValue', response.data.IndicatorLED);
        })
        .catch(error => console.log(error));
    },
    async saveIndicatorLedValue({ commit }, payload) {
      await api
        .patch('/redfish/v1/Systems/system', { IndicatorLED: payload })
        .then(() => {
          commit('setIndicatorValue', payload);
        })
        .catch(error => console.log(error));
    }
  }
};

export default ServerLedStore;