debian-mirror-gitlab/spec/frontend/issues/show/components/incidents/mock_data.js
2022-08-27 11:52:29 +05:30

127 lines
2.9 KiB
JavaScript

export const mockEvents = [
{
action: 'comment',
author: {
__typename: 'UserCore',
id: 'gid://gitlab/User/1',
name: 'Administrator',
username: 'root',
},
createdAt: '2022-03-22T15:59:08Z',
id: 'gid://gitlab/IncidentManagement::TimelineEvent/132',
note: 'Dummy event 1',
noteHtml: '<p>Dummy event 1</p>',
occurredAt: '2022-03-22T15:59:00Z',
updatedAt: '2022-03-22T15:59:08Z',
__typename: 'TimelineEventType',
},
{
action: 'comment',
author: {
__typename: 'UserCore',
id: 'gid://gitlab/User/1',
name: 'Administrator',
username: 'root',
},
createdAt: '2022-03-23T14:57:08Z',
id: 'gid://gitlab/IncidentManagement::TimelineEvent/131',
note: 'Dummy event 2',
noteHtml: '<p>Dummy event 2</p>',
occurredAt: '2022-03-23T14:57:00Z',
updatedAt: '2022-03-23T14:57:08Z',
__typename: 'TimelineEventType',
},
{
action: 'comment',
author: {
__typename: 'UserCore',
id: 'gid://gitlab/User/1',
name: 'Administrator',
username: 'root',
},
createdAt: '2022-03-23T15:59:08Z',
id: 'gid://gitlab/IncidentManagement::TimelineEvent/132',
note: 'Dummy event 3',
noteHtml: '<p>Dummy event 3</p>',
occurredAt: '2022-03-23T15:59:00Z',
updatedAt: '2022-03-23T15:59:08Z',
__typename: 'TimelineEventType',
},
];
export const timelineEventsQueryListResponse = {
data: {
project: {
id: 'gid://gitlab/Project/8',
incidentManagementTimelineEvents: {
nodes: mockEvents,
},
},
},
};
export const timelineEventsQueryEmptyResponse = {
data: {
project: {
id: 'gid://gitlab/Project/8',
incidentManagementTimelineEvents: {
nodes: [],
},
},
},
};
export const timelineEventsCreateEventResponse = {
data: {
timelineEventCreate: {
timelineEvent: {
...mockEvents[0],
},
errors: [],
},
},
};
export const timelineEventsCreateEventError = {
data: {
timelineEventCreate: {
timelineEvent: {
...mockEvents[0],
},
errors: ['Create error'],
},
},
};
const timelineEventDeleteData = (errors = []) => {
return {
data: {
timelineEventDestroy: {
timelineEvent: { ...mockEvents[0] },
errors,
},
},
};
};
export const timelineEventsDeleteEventResponse = timelineEventDeleteData();
export const timelineEventsDeleteEventError = timelineEventDeleteData(['Item does not exist']);
export const mockGetTimelineData = {
project: {
id: 'gid://gitlab/Project/19',
incidentManagementTimelineEvents: {
nodes: [
{
id: 'gid://gitlab/IncidentManagement::TimelineEvent/8',
note: 'another one2',
noteHtml: '<p>another one2</p>',
action: 'comment',
occurredAt: '2022-07-01T12:47:00Z',
createdAt: '2022-07-20T12:47:40Z',
},
],
},
},
};