diff --git a/src/store/modules/status.js b/src/store/modules/status.js index c0cf5b0f..7e3663fe 100644 --- a/src/store/modules/status.js +++ b/src/store/modules/status.js @@ -9,7 +9,8 @@ const status = { showLocal: false, showPrivate: false, page: 1, - pageSize: 30 + pageSize: 30, + buttonLoading: false } }, mutations: { @@ -31,6 +32,9 @@ const status = { PUSH_STATUSES: (state, statuses) => { state.fetchedStatuses = [...state.fetchedStatuses, ...statuses] }, + SET_BUTTON_LOADING: (state, status) => { + state.statusesByInstance.buttonLoading = status + }, SET_LOADING: (state, status) => { state.loading = status } @@ -82,6 +86,7 @@ const status = { commit('SET_LOADING', false) }, async FetchStatusesPageByInstance({ commit, getters, state }) { + commit('SET_BUTTON_LOADING', true) const statuses = await fetchStatusesByInstance( { instance: state.statusesByInstance.selectedInstance, @@ -92,6 +97,7 @@ const status = { }) commit('PUSH_STATUSES', statuses.data) + commit('SET_BUTTON_LOADING', false) }, HandleGodmodeCheckboxChange({ commit, dispatch }, value) { commit('CHANGE_GODMODE_CHECKBOX_VALUE', value) diff --git a/src/views/statuses/index.vue b/src/views/statuses/index.vue index 1c17eaa5..29187df7 100644 --- a/src/views/statuses/index.vue +++ b/src/views/statuses/index.vue @@ -39,7 +39,7 @@ @status-selection="handleStatusSelection" />