2018-11-20 20:47:30 +05:30
|
|
|
import * as types from './mutation_types';
|
|
|
|
|
|
|
|
export default {
|
2018-12-05 23:21:45 +05:30
|
|
|
[types.SET_JOB_ENDPOINT](state, endpoint) {
|
|
|
|
state.jobEndpoint = endpoint;
|
|
|
|
},
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
[types.SET_TRACE_OPTIONS](state, options = {}) {
|
|
|
|
state.traceEndpoint = options.pagePath;
|
|
|
|
state.traceState = options.logState;
|
2018-11-20 20:47:30 +05:30
|
|
|
},
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
[types.HIDE_SIDEBAR](state) {
|
|
|
|
state.isSidebarOpen = false;
|
2018-11-20 20:47:30 +05:30
|
|
|
},
|
2018-12-13 13:39:08 +05:30
|
|
|
[types.SHOW_SIDEBAR](state) {
|
|
|
|
state.isSidebarOpen = true;
|
2018-11-20 20:47:30 +05:30
|
|
|
},
|
|
|
|
|
|
|
|
[types.RECEIVE_TRACE_SUCCESS](state, log) {
|
|
|
|
if (log.state) {
|
|
|
|
state.traceState = log.state;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log.append) {
|
|
|
|
state.trace += log.html;
|
|
|
|
state.traceSize += log.size;
|
|
|
|
} else {
|
2018-12-13 13:39:08 +05:30
|
|
|
// When the job still does not have a trace
|
|
|
|
// the trace response will not have a defined
|
|
|
|
// html or size. We keep the old value otherwise these
|
|
|
|
// will be set to `undefined`
|
|
|
|
state.trace = log.html || state.trace;
|
|
|
|
state.traceSize = log.size || state.traceSize;
|
2018-11-20 20:47:30 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (state.traceSize < log.total) {
|
|
|
|
state.isTraceSizeVisible = true;
|
|
|
|
} else {
|
|
|
|
state.isTraceSizeVisible = false;
|
|
|
|
}
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
state.isTraceComplete = log.complete || state.isTraceComplete;
|
2018-11-20 20:47:30 +05:30
|
|
|
},
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* Will remove loading animation
|
|
|
|
*/
|
2018-11-20 20:47:30 +05:30
|
|
|
[types.STOP_POLLING_TRACE](state) {
|
|
|
|
state.isTraceComplete = true;
|
|
|
|
},
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* Will remove loading animation
|
|
|
|
*/
|
2018-11-20 20:47:30 +05:30
|
|
|
[types.RECEIVE_TRACE_ERROR](state) {
|
|
|
|
state.isTraceComplete = true;
|
|
|
|
},
|
|
|
|
|
|
|
|
[types.REQUEST_JOB](state) {
|
|
|
|
state.isLoading = true;
|
|
|
|
},
|
|
|
|
[types.RECEIVE_JOB_SUCCESS](state, job) {
|
|
|
|
state.hasError = false;
|
2018-12-13 13:39:08 +05:30
|
|
|
state.isLoading = false;
|
2018-11-20 20:47:30 +05:30
|
|
|
state.job = job;
|
2018-12-05 23:21:45 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* We only update it on the first request
|
|
|
|
* The dropdown can be changed by the user
|
|
|
|
* after the first request,
|
|
|
|
* and we do not want to hijack that
|
|
|
|
*/
|
|
|
|
if (state.selectedStage === '' && job.stage) {
|
|
|
|
state.selectedStage = job.stage;
|
|
|
|
}
|
2018-11-20 20:47:30 +05:30
|
|
|
},
|
|
|
|
[types.RECEIVE_JOB_ERROR](state) {
|
|
|
|
state.isLoading = false;
|
|
|
|
state.job = {};
|
2018-12-13 13:39:08 +05:30
|
|
|
state.hasError = true;
|
2018-11-20 20:47:30 +05:30
|
|
|
},
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
[types.ENABLE_SCROLL_TOP](state) {
|
|
|
|
state.isScrollTopDisabled = false;
|
|
|
|
},
|
|
|
|
[types.DISABLE_SCROLL_TOP](state) {
|
|
|
|
state.isScrollTopDisabled = true;
|
|
|
|
},
|
|
|
|
[types.ENABLE_SCROLL_BOTTOM](state) {
|
|
|
|
state.isScrollBottomDisabled = false;
|
2018-11-20 20:47:30 +05:30
|
|
|
},
|
2018-12-13 13:39:08 +05:30
|
|
|
[types.DISABLE_SCROLL_BOTTOM](state) {
|
|
|
|
state.isScrollBottomDisabled = true;
|
|
|
|
},
|
|
|
|
[types.TOGGLE_SCROLL_ANIMATION](state, toggle) {
|
|
|
|
state.isScrollingDown = toggle;
|
|
|
|
},
|
|
|
|
|
|
|
|
[types.TOGGLE_IS_SCROLL_IN_BOTTOM_BEFORE_UPDATING_TRACE](state, toggle) {
|
|
|
|
state.isScrolledToBottomBeforeReceivingTrace = toggle;
|
2018-11-20 20:47:30 +05:30
|
|
|
},
|
|
|
|
|
|
|
|
[types.REQUEST_STAGES](state) {
|
|
|
|
state.isLoadingStages = true;
|
|
|
|
},
|
|
|
|
[types.RECEIVE_STAGES_SUCCESS](state, stages) {
|
|
|
|
state.isLoadingStages = false;
|
|
|
|
state.stages = stages;
|
|
|
|
},
|
|
|
|
[types.RECEIVE_STAGES_ERROR](state) {
|
|
|
|
state.isLoadingStages = false;
|
|
|
|
state.stages = [];
|
|
|
|
},
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
[types.REQUEST_JOBS_FOR_STAGE](state, stage) {
|
2018-11-20 20:47:30 +05:30
|
|
|
state.isLoadingJobs = true;
|
2018-12-05 23:21:45 +05:30
|
|
|
state.selectedStage = stage.name;
|
2018-11-20 20:47:30 +05:30
|
|
|
},
|
|
|
|
[types.RECEIVE_JOBS_FOR_STAGE_SUCCESS](state, jobs) {
|
|
|
|
state.isLoadingJobs = false;
|
|
|
|
state.jobs = jobs;
|
|
|
|
},
|
|
|
|
[types.RECEIVE_JOBS_FOR_STAGE_ERROR](state) {
|
|
|
|
state.isLoadingJobs = false;
|
|
|
|
state.jobs = [];
|
|
|
|
},
|
|
|
|
};
|