Skip to content

Instantly share code, notes, and snippets.

@obulaworld
Created September 4, 2020 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save obulaworld/9e507b4a2600ed135d5a316cd64bbbfa to your computer and use it in GitHub Desktop.
Save obulaworld/9e507b4a2600ed135d5a316cd64bbbfa to your computer and use it in GitHub Desktop.
Mock data
export const stageMockData = {
stages: [
{
id: 'requested',
title: 'Requested',
className: 'requestedCount',
cardData: [
{
id: 1,
title: 'Flow Meter Measurement E',
description: 'https://blog.gesrepair.com/',
tag: 'Longform 10X',
dueDate: '09/15/2019',
assignee: 'Chisom Obuladike',
},
{
id: 2,
title: 'Flow Meter M Errors',
description: 'https://blog.gesrepair.com/',
tag: 'Longform',
dueDate: '09/15/2019',
assignee: '',
},
{
id: 3,
title: 'F Meter Measurement Errors',
description: 'https://blog.gesrepair.com/',
tag: 'Longform',
dueDate: '09/15/2019',
assignee: '',
},
{
id: 4,
title: 'Flow Meter Measurement Errors',
description: 'https://blog.gesrepair.com/',
tag: 'Longform',
dueDate: '09/15/2019',
assignee: '',
},
],
},
{
id: 'editRequested',
title: 'Edit Requested',
className: 'editRequestedCount',
cardData: [],
},
{
id: 'inRevision',
title: 'In Revision',
className: 'inRevisionCount',
cardData: [
{
id: 5,
title: 'Flow Meter Measurement Errors',
description: 'https://blog.gesrepair.com/',
tag: 'Longform',
dueDate: '09/15/2019',
assignee: '',
},
],
},
{
id: 'pendingApproval',
title: 'Pending Approval',
className: 'pendingApprovalCount',
cardData: [
{
id: 6,
title: 'Flow Meter Measurement Errors',
description: 'https://blog.gesrepair.com/',
tag: 'Longform',
dueDate: '09/15/2019',
assignee: '',
},
{
id: 7,
title: 'Flow Meter Measurement Errors',
description: 'https://blog.gesrepair.com/',
tag: 'Longform',
dueDate: '09/15/2019',
assignee: '',
},
{
id: 8,
title: 'Flow Meter Measurement Errors',
description: 'https://blog.gesrepair.com/',
tag: 'Longform',
dueDate: '09/15/2019',
assignee: '',
},
{
id: 9,
title: 'Flow Meter Measurement Errors',
description: 'https://blog.gesrepair.com/',
tag: 'Longform',
dueDate: '09/15/2019',
assignee: '',
},
{
id: 10,
title: 'Flow Meter Measurement Errors',
description: 'https://blog.gesrepair.com/',
tag: 'Longform',
dueDate: '09/15/2019',
assignee: '',
},
],
},
{
id: 'pendingImplementation',
title: 'Pending Implementation',
className: 'pendingImplementationCount',
cardData: [
{
id: 11,
title: 'Flow Meter Measurement Errors',
description: 'https://blog.gesrepair.com/',
tag: 'Longform',
dueDate: '09/15/2019',
assignee: 'Ademola',
},
],
},
],
};
export const filters = [
{ id: 1, name: 'Longform', checked: false },
{ id: 2, name: 'Longform 10X', checked: false },
{ id: 3, name: 'Micrographic', checked: false },
{ id: 4, name: 'SEO Article', checked: false },
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment