debian-mirror-gitlab/spec/frontend/work_items/mock_data.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

278 lines
6.8 KiB
JavaScript
Raw Normal View History

2021-12-11 22:18:48 +05:30
export const workItemQueryResponse = {
2022-06-21 17:19:12 +05:30
data: {
workItem: {
__typename: 'WorkItem',
id: 'gid://gitlab/WorkItem/1',
title: 'Test',
2022-07-16 23:28:13 +05:30
state: 'OPEN',
description: 'description',
2022-06-21 17:19:12 +05:30
workItemType: {
__typename: 'WorkItemType',
id: 'gid://gitlab/WorkItems::Type/5',
name: 'Task',
},
2022-07-16 23:28:13 +05:30
userPermissions: {
deleteWorkItem: false,
updateWorkItem: false,
},
2022-07-23 23:45:48 +05:30
widgets: [
{
__typename: 'WorkItemWidgetDescription',
type: 'DESCRIPTION',
description: 'some **great** text',
descriptionHtml:
'<p data-sourcepos="1:1-1:19" dir="auto">some <strong>great</strong> text</p>',
},
],
2021-12-11 22:18:48 +05:30
},
},
};
2022-01-26 12:08:38 +05:30
export const updateWorkItemMutationResponse = {
2022-05-07 20:08:51 +05:30
data: {
workItemUpdate: {
2022-06-21 17:19:12 +05:30
__typename: 'WorkItemUpdatePayload',
2022-05-07 20:08:51 +05:30
workItem: {
2022-06-21 17:19:12 +05:30
__typename: 'WorkItem',
id: 'gid://gitlab/WorkItem/1',
2022-05-07 20:08:51 +05:30
title: 'Updated title',
2022-07-16 23:28:13 +05:30
state: 'OPEN',
description: 'description',
2022-05-07 20:08:51 +05:30
workItemType: {
__typename: 'WorkItemType',
2022-06-21 17:19:12 +05:30
id: 'gid://gitlab/WorkItems::Type/5',
name: 'Task',
2022-05-07 20:08:51 +05:30
},
2022-07-16 23:28:13 +05:30
userPermissions: {
deleteWorkItem: false,
updateWorkItem: false,
},
2022-07-23 23:45:48 +05:30
widgets: [],
2022-05-07 20:08:51 +05:30
},
2022-01-26 12:08:38 +05:30
},
},
};
2022-04-04 11:22:00 +05:30
2022-07-23 23:45:48 +05:30
export const workItemResponseFactory = ({ canUpdate } = {}) => ({
data: {
workItem: {
__typename: 'WorkItem',
id: 'gid://gitlab/WorkItem/1',
title: 'Updated title',
state: 'OPEN',
description: 'description',
workItemType: {
__typename: 'WorkItemType',
id: 'gid://gitlab/WorkItems::Type/5',
name: 'Task',
},
userPermissions: {
deleteWorkItem: false,
updateWorkItem: canUpdate,
},
widgets: [
{
__typename: 'WorkItemWidgetDescription',
type: 'DESCRIPTION',
description: 'some **great** text',
descriptionHtml:
'<p data-sourcepos="1:1-1:19" dir="auto">some <strong>great</strong> text</p>',
},
],
},
},
});
export const updateWorkItemWidgetsResponse = {
data: {
workItemUpdateWidgets: {
workItem: {
id: 1234,
},
errors: [],
},
},
};
2022-04-04 11:22:00 +05:30
export const projectWorkItemTypesQueryResponse = {
data: {
workspace: {
2022-06-21 17:19:12 +05:30
id: 'gid://gitlab/WorkItem/1',
2022-04-04 11:22:00 +05:30
workItemTypes: {
nodes: [
2022-06-21 17:19:12 +05:30
{ id: 'gid://gitlab/WorkItems::Type/1', name: 'Issue' },
{ id: 'gid://gitlab/WorkItems::Type/2', name: 'Incident' },
2022-07-16 23:28:13 +05:30
{ id: 'gid://gitlab/WorkItems::Type/3', name: 'Task' },
2022-04-04 11:22:00 +05:30
],
},
},
},
};
2022-05-07 20:08:51 +05:30
export const createWorkItemMutationResponse = {
data: {
workItemCreate: {
__typename: 'WorkItemCreatePayload',
workItem: {
__typename: 'WorkItem',
2022-06-21 17:19:12 +05:30
id: 'gid://gitlab/WorkItem/1',
2022-05-07 20:08:51 +05:30
title: 'Updated title',
2022-07-16 23:28:13 +05:30
state: 'OPEN',
description: 'description',
2022-05-07 20:08:51 +05:30
workItemType: {
__typename: 'WorkItemType',
2022-06-21 17:19:12 +05:30
id: 'gid://gitlab/WorkItems::Type/5',
name: 'Task',
2022-05-07 20:08:51 +05:30
},
2022-07-16 23:28:13 +05:30
userPermissions: {
deleteWorkItem: false,
updateWorkItem: false,
},
2022-07-23 23:45:48 +05:30
widgets: [],
2022-05-07 20:08:51 +05:30
},
},
},
};
2022-06-21 17:19:12 +05:30
export const createWorkItemFromTaskMutationResponse = {
data: {
workItemCreateFromTask: {
__typename: 'WorkItemCreateFromTaskPayload',
errors: [],
workItem: {
descriptionHtml: '<p>New description</p>',
id: 'gid://gitlab/WorkItem/13',
__typename: 'WorkItem',
2022-07-16 23:28:13 +05:30
userPermissions: {
deleteWorkItem: false,
updateWorkItem: false,
},
2022-06-21 17:19:12 +05:30
},
},
},
};
export const deleteWorkItemResponse = {
data: { workItemDelete: { errors: [], __typename: 'WorkItemDeletePayload' } },
};
export const deleteWorkItemFailureResponse = {
data: { workItemDelete: null },
errors: [
{
message:
"The resource that you are attempting to access does not exist or you don't have permission to perform this action",
locations: [{ line: 2, column: 3 }],
path: ['workItemDelete'],
},
],
};
export const workItemTitleSubscriptionResponse = {
data: {
issuableTitleUpdated: {
id: 'gid://gitlab/WorkItem/1',
title: 'new title',
},
},
};
2022-07-23 23:45:48 +05:30
export const workItemHierarchyEmptyResponse = {
data: {
workItem: {
id: 'gid://gitlab/WorkItem/1',
workItemType: {
id: 'gid://gitlab/WorkItems::Type/6',
__typename: 'WorkItemType',
},
title: 'New title',
widgets: [
{
type: 'DESCRIPTION',
__typename: 'WorkItemWidgetDescription',
},
{
type: 'HIERARCHY',
parent: null,
children: {
nodes: [],
__typename: 'WorkItemConnection',
},
__typename: 'WorkItemWidgetHierarchy',
},
],
__typename: 'WorkItem',
},
},
};
export const workItemHierarchyResponse = {
data: {
workItem: {
id: 'gid://gitlab/WorkItem/1',
workItemType: {
id: 'gid://gitlab/WorkItems::Type/6',
__typename: 'WorkItemType',
},
title: 'New title',
widgets: [
{
type: 'DESCRIPTION',
__typename: 'WorkItemWidgetDescription',
},
{
type: 'HIERARCHY',
parent: null,
children: {
nodes: [
{
id: 'gid://gitlab/WorkItem/2',
workItemType: {
id: 'gid://gitlab/WorkItems::Type/5',
__typename: 'WorkItemType',
},
title: 'xyz',
state: 'OPEN',
__typename: 'WorkItem',
},
{
id: 'gid://gitlab/WorkItem/3',
workItemType: {
id: 'gid://gitlab/WorkItems::Type/5',
__typename: 'WorkItemType',
},
title: 'abc',
state: 'CLOSED',
__typename: 'WorkItem',
},
{
id: 'gid://gitlab/WorkItem/4',
workItemType: {
id: 'gid://gitlab/WorkItems::Type/5',
__typename: 'WorkItemType',
},
title: 'bar',
state: 'OPEN',
__typename: 'WorkItem',
},
{
id: 'gid://gitlab/WorkItem/5',
workItemType: {
id: 'gid://gitlab/WorkItems::Type/5',
__typename: 'WorkItemType',
},
title: 'foobar',
state: 'OPEN',
__typename: 'WorkItem',
},
],
__typename: 'WorkItemConnection',
},
__typename: 'WorkItemWidgetHierarchy',
},
],
__typename: 'WorkItem',
},
},
};