Welcome to mirror list, hosted at ThFree Co, Russian Federation.

state.js « store « job_details « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dfff65c364dee233a1a4a00724cc7a6477bf84ec (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
export default () => ({
  jobEndpoint: null,
  jobLogEndpoint: 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
  isScrolledToBottomBeforeReceivingJobLog: true,

  jobLog: [],
  isJobLogComplete: false,
  jobLogSize: 0,
  isJobLogSizeVisible: false,
  jobLogTimeout: 0,

  // used as a query parameter to fetch the job log
  jobLogState: null,

  // sidebar dropdown & list of jobs
  isLoadingJobs: false,
  selectedStage: '',
  stages: [],
  jobs: [],
});