From bb3160669584e165bb0be40bc3daef2e78307624 Mon Sep 17 00:00:00 2001 From: Dixsie Wolmers Date: Tue, 4 Aug 2020 19:17:33 -0500 Subject: Add last reset time to server power operations page - Timestamp is displayed to inform user of last power operation Signed-off-by: Dixsie Wolmers Change-Id: I14c23ff56b3a0cf134c0ad2d831290971d93e293 --- src/store/modules/Control/ControlStore.js | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) (limited to 'src/store/modules/Control') diff --git a/src/store/modules/Control/ControlStore.js b/src/store/modules/Control/ControlStore.js index f88f2aa7..6908769d 100644 --- a/src/store/modules/Control/ControlStore.js +++ b/src/store/modules/Control/ControlStore.js @@ -31,16 +31,30 @@ const checkForHostStatus = function(hostStatus) { const ControlStore = { namespaced: true, state: { - isOperationInProgress: false + isOperationInProgress: false, + lastPowerOperationTime: null }, getters: { - isOperationInProgress: state => state.isOperationInProgress + isOperationInProgress: state => state.isOperationInProgress, + lastPowerOperationTime: state => state.lastPowerOperationTime }, mutations: { setOperationInProgress: (state, inProgress) => - (state.isOperationInProgress = inProgress) + (state.isOperationInProgress = inProgress), + setLastPowerOperationTime: (state, lastPowerOperationTime) => + (state.lastPowerOperationTime = lastPowerOperationTime) }, actions: { + async getLastPowerOperationTime({ commit }) { + return await api + .get('/redfish/v1/Systems/system') + .then(response => { + const lastReset = response.data.LastResetTime; + const lastPowerOperationTime = new Date(lastReset); + commit('setLastPowerOperationTime', lastPowerOperationTime); + }) + .catch(error => console.log(error)); + }, async rebootBmc() { const data = { ResetType: 'GracefulRestart' }; return await api @@ -81,10 +95,11 @@ const ControlStore = { await checkForHostStatus.bind(this, 'off')(); commit('setOperationInProgress', false); }, - hostPowerChange({ commit }, data) { + hostPowerChange({ commit, dispatch }, data) { commit('setOperationInProgress', true); api .post('/redfish/v1/Systems/system/Actions/ComputerSystem.Reset', data) + .then(() => dispatch('getLastPowerOperationTime')) .catch(error => { console.log(error); commit('setOperationInProgress', false); -- cgit v1.2.3