summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jobs/store/state.js
blob: d76828ad19bbd8d129f4cb853a23b968b260247a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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: [],
});