summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/logs/stores/state.js
blob: ee17e8ecef24bd5414cea882756157b1004ad7c3 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { convertToFixedRange } from '~/lib/utils/datetime_range';
import { timeRanges, defaultTimeRange } from '~/vue_shared/constants';

export default () => ({
  /**
   * Full text search
   */
  search: '',

  /**
   * Time range (Show last)
   */
  timeRange: {
    options: timeRanges,
    // Selected time range, can be fixed or relative
    selected: defaultTimeRange,
    // Current time range, must be fixed
    current: convertToFixedRange(defaultTimeRange),

    invalidWarning: false,
  },

  /**
   * Environments list information
   */
  environments: {
    options: [],
    isLoading: false,
    current: null,
    fetchError: false,
  },

  /**
   * Jobs with logs
   */
  logs: {
    lines: [],
    isLoading: false,
    /**
     * Logs `cursor` represents the current pagination position,
     * Should be sent in next batch (page) of logs to be fetched
     */
    cursor: null,
    isComplete: false,

    fetchError: false,
  },

  /**
   * Pods list information
   */
  pods: {
    options: [],
    current: null,
  },
});