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

state.js « store « jobs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1ba64aa71ea8d57d216df344a68e35622001f46 (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,
  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: [],

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