93 lines
2.5 KiB
JavaScript
93 lines
2.5 KiB
JavaScript
import avatar1 from '@images/avatars/avatar-1.png'
|
|
import avatar2 from '@images/avatars/avatar-2.png'
|
|
import avatar3 from '@images/avatars/avatar-3.png'
|
|
import treePot from '@images/pages/tree-pot.png'
|
|
|
|
export const database = {
|
|
boards: [
|
|
{
|
|
id: 1,
|
|
title: 'In Progress',
|
|
itemsIds: [1, 2],
|
|
},
|
|
{
|
|
id: 2,
|
|
title: 'In Review',
|
|
itemsIds: [3, 4],
|
|
},
|
|
{
|
|
id: 3,
|
|
title: 'Done',
|
|
itemsIds: [5, 6],
|
|
},
|
|
],
|
|
items: [
|
|
{
|
|
id: 1,
|
|
title: 'Research FAQ page UX',
|
|
dueDate: '',
|
|
labels: ['UX'],
|
|
members: [{ img: avatar1, name: 'John Doe' }, { img: avatar2, name: 'Jane Smith' }, { img: avatar3, name: 'Robert Johnson' }],
|
|
comments: 'FAQ page design is ready and needs to be implemented.',
|
|
attachments: 2,
|
|
commentsCount: 1,
|
|
image: '',
|
|
},
|
|
{
|
|
id: 2,
|
|
title: 'Review JavaScript code',
|
|
dueDate: '',
|
|
labels: ['Code Review'],
|
|
members: [{ img: avatar1, name: 'John Doe' }, { img: avatar2, name: 'Jane Smith' }],
|
|
comments: 'JavaScript code needs to be reviewed and refactored.',
|
|
attachments: 2,
|
|
commentsCount: 4,
|
|
image: '',
|
|
},
|
|
{
|
|
id: 3,
|
|
title: 'Review completed Apps',
|
|
dueDate: '',
|
|
labels: ['Dashboard'],
|
|
members: [{ img: avatar1, name: 'John Doe' }, { img: avatar2, name: 'Jane Smith' }],
|
|
comments: 'Apps design is ready and needs to be implemented.',
|
|
image: '',
|
|
attachments: 5,
|
|
commentsCount: 10,
|
|
},
|
|
{
|
|
id: 4,
|
|
title: 'Find new images for pages',
|
|
dueDate: '',
|
|
labels: ['Image'],
|
|
members: [{ img: avatar1, name: 'John Doe' }, { img: avatar2, name: 'Jane Smith' }, { img: avatar3, name: 'Robert Johnson' }],
|
|
comments: 'New images need to be found for the new pages.',
|
|
image: treePot,
|
|
attachments: 5,
|
|
commentsCount: 4,
|
|
},
|
|
{
|
|
id: 5,
|
|
title: 'Forms & tables section',
|
|
dueDate: '',
|
|
labels: ['App'],
|
|
members: [{ img: avatar1, name: 'John Doe' }, { img: avatar2, name: 'Jane Smith' }],
|
|
comments: 'Forms and tables need to be updated.',
|
|
attachments: 7,
|
|
commentsCount: 2,
|
|
image: '',
|
|
},
|
|
{
|
|
id: 6,
|
|
title: 'Completed charts & maps',
|
|
dueDate: '',
|
|
labels: ['Charts & Maps'],
|
|
members: [{ img: avatar1, name: 'John Doe' }],
|
|
comments: 'Charts and maps need to be updated.',
|
|
attachments: 1,
|
|
commentsCount: 10,
|
|
image: '',
|
|
},
|
|
],
|
|
}
|