summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jobs/store/state.js
blob: 718324c8bad9517ad701ea220c58b1daac774df7 (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
36
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: [],
  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: [],

  // to parse partial logs
  auxiliaryPartialTraceHelpers: {},
});