summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jobs/store/state.js
blob: 509cb69a5d3c4d4b980c63ae4b5a79ccc62e25ef (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
37
38
39
40
export default () => ({
  jobEndpoint: null,
  traceEndpoint: null,

  // dropdown options
  stagesEndpoint: null,
  // list of jobs on sidebard
  stageJobsEndpoint: null,

  // job log
  isLoading: false,
  hasError: false,
  job: {},

  // trace
  isLoadingTrace: false,
  hasTraceError: false,

  trace: '',

  isTraceScrolledToBottom: false,
  hasBeenScrolled: false,

  isTraceComplete: false,
  traceSize: 0, // todo_fl: needs to be converted into human readable format in components
  isTraceSizeVisible: false,

  fetchingStatusFavicon: false,
  // used as a query parameter
  traceState: null,
  // used to check if we need to redirect the user - todo_fl:  check if actually needed
  traceStatus: null,

  // sidebar dropdown
  isLoadingStages: false,
  isLoadingJobs: false,
  selectedStage: null,
  stages: [],
  jobs: [],
});