summaryrefslogtreecommitdiff
path: root/src/store/modules/Control/ServerLedStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/modules/Control/ServerLedStore.js')
-rw-r--r--src/store/modules/Control/ServerLedStore.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/store/modules/Control/ServerLedStore.js b/src/store/modules/Control/ServerLedStore.js
new file mode 100644
index 00000000..c690d7cb
--- /dev/null
+++ b/src/store/modules/Control/ServerLedStore.js
@@ -0,0 +1,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: {
+ getIndicatorValue: ({ commit }) => {
+ api
+ .get('/redfish/v1/Systems/system')
+ .then(response => {
+ commit('setIndicatorValue', response.data.IndicatorLED);
+ })
+ .catch(error => console.log(error));
+ },
+ saveIndicatorLedValue: ({ commit }, payload) => {
+ api
+ .patch('/redfish/v1/Systems/system', { IndicatorLED: payload })
+ .then(() => {
+ commit('setIndicatorValue', payload);
+ })
+ .catch(error => console.log(error));
+ }
+ }
+};
+
+export default ServerLedStore;