debian-mirror-gitlab/app/assets/javascripts/reports/store/mutations.js

50 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-11-18 11:00:15 +05:30
import * as types from './mutation_types';
export default {
[types.SET_ENDPOINT](state, endpoint) {
state.endpoint = endpoint;
},
[types.REQUEST_REPORTS](state) {
state.isLoading = true;
},
[types.RECEIVE_REPORTS_SUCCESS](state, response) {
// Make sure to clean previous state in case it was an error
state.hasError = false;
state.isLoading = false;
state.summary.total = response.summary.total;
state.summary.resolved = response.summary.resolved;
state.summary.failed = response.summary.failed;
2020-03-13 15:44:24 +05:30
state.summary.errored = response.summary.errored;
2018-11-18 11:00:15 +05:30
state.status = response.status;
state.reports = response.suites;
},
[types.RECEIVE_REPORTS_ERROR](state) {
state.isLoading = false;
state.hasError = true;
state.reports = [];
state.summary = {
total: 0,
resolved: 0,
failed: 0,
2020-03-13 15:44:24 +05:30
errored: 0,
2018-11-18 11:00:15 +05:30
};
state.status = null;
},
[types.SET_ISSUE_MODAL_DATA](state, payload) {
state.modal.title = payload.issue.name;
2018-12-13 13:39:08 +05:30
Object.keys(payload.issue).forEach(key => {
2018-11-18 11:00:15 +05:30
if (Object.prototype.hasOwnProperty.call(state.modal.data, key)) {
state.modal.data[key] = {
...state.modal.data[key],
value: payload.issue[key],
};
}
});
},
};