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

related_issuable_mock_data.js « issue « components « vue_shared « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6cdb945ec20e3d2b9581d90020a40b0468a6d983 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
import { TEST_HOST } from 'helpers/test_constants';

export const defaultProps = {
  endpoint: '/foo/bar/issues/1/related_issues',
  currentNamespacePath: 'foo',
  currentProjectPath: 'bar',
};

export const issuable1 = {
  id: 200,
  epicIssueId: 1,
  confidential: false,
  reference: 'foo/bar#123',
  displayReference: '#123',
  title: 'some title',
  path: '/foo/bar/issues/123',
  relationPath: '/foo/bar/issues/123/relation',
  state: 'opened',
  linkType: 'relates_to',
  dueDate: '2010-11-22',
  weight: 5,
};

export const issuable2 = {
  id: 201,
  epicIssueId: 2,
  confidential: false,
  reference: 'foo/bar#124',
  displayReference: '#124',
  title: 'some other thing',
  path: '/foo/bar/issues/124',
  relationPath: '/foo/bar/issues/124/relation',
  state: 'opened',
  linkType: 'blocks',
};

export const issuable3 = {
  id: 202,
  epicIssueId: 3,
  confidential: false,
  reference: 'foo/bar#125',
  displayReference: '#125',
  title: 'some other other thing',
  path: '/foo/bar/issues/125',
  relationPath: '/foo/bar/issues/125/relation',
  state: 'opened',
  linkType: 'is_blocked_by',
};

export const issuable4 = {
  id: 203,
  epicIssueId: 4,
  confidential: false,
  reference: 'foo/bar#126',
  displayReference: '#126',
  title: 'some other other other thing',
  path: '/foo/bar/issues/126',
  relationPath: '/foo/bar/issues/126/relation',
  state: 'opened',
};

export const issuable5 = {
  id: 204,
  epicIssueId: 5,
  confidential: false,
  reference: 'foo/bar#127',
  displayReference: '#127',
  title: 'some other other other thing',
  path: '/foo/bar/issues/127',
  relationPath: '/foo/bar/issues/127/relation',
  state: 'opened',
};

export const defaultMilestone = {
  id: 1,
  state: 'active',
  title: 'Milestone title',
  start_date: '2018-01-01',
  due_date: '2019-12-31',
};

export const defaultAssignees = [
  {
    id: 1,
    name: 'Administrator',
    username: 'root',
    state: 'active',
    avatar_url: `${TEST_HOST}`,
    web_url: `${TEST_HOST}/root`,
    status_tooltip_html: null,
    path: '/root',
  },
  {
    id: 13,
    name: 'Brooks Beatty',
    username: 'brynn_champlin',
    state: 'active',
    avatar_url: `${TEST_HOST}`,
    web_url: `${TEST_HOST}/brynn_champlin`,
    status_tooltip_html: null,
    path: '/brynn_champlin',
  },
  {
    id: 6,
    name: 'Bryce Turcotte',
    username: 'melynda',
    state: 'active',
    avatar_url: `${TEST_HOST}`,
    web_url: `${TEST_HOST}/melynda`,
    status_tooltip_html: null,
    path: '/melynda',
  },
  {
    id: 20,
    name: 'Conchita Eichmann',
    username: 'juliana_gulgowski',
    state: 'active',
    avatar_url: `${TEST_HOST}`,
    web_url: `${TEST_HOST}/juliana_gulgowski`,
    status_tooltip_html: null,
    path: '/juliana_gulgowski',
  },
];