gitlab-org--gitlab-foss/app/assets/javascripts/jobs/store/state.js

36 lines
719 B
JavaScript
Raw Normal View History

import { isNewJobLogActive } from '../store/utils';
2018-09-03 07:49:52 +00:00
export default () => ({
jobEndpoint: null,
traceEndpoint: null,
// sidebar
isSidebarOpen: true,
2018-09-03 07:49:52 +00:00
isLoading: false,
hasError: false,
job: {},
// scroll buttons state
isScrollBottomDisabled: true,
isScrollTopDisabled: true,
2018-09-03 07:49:52 +00:00
// Used to check if we should keep the automatic scroll
isScrolledToBottomBeforeReceivingTrace: true,
2018-09-03 07:49:52 +00:00
trace: isNewJobLogActive() ? [] : '',
2018-09-03 07:49:52 +00:00
isTraceComplete: false,
traceSize: 0,
2018-09-03 07:49:52 +00:00
isTraceSizeVisible: false,
traceTimeout: 0,
2018-09-03 07:49:52 +00:00
// used as a query parameter to fetch the trace
2018-09-03 07:49:52 +00:00
traceState: null,
// sidebar dropdown & list of jobs
2018-09-03 07:49:52 +00:00
isLoadingJobs: false,
selectedStage: '',
2018-09-03 07:49:52 +00:00
stages: [],
jobs: [],
});