debian-mirror-gitlab/app/assets/javascripts/jobs/store/state.js
2020-05-24 23:13:21 +05:30

35 lines
712 B
JavaScript

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