101 lines
3.3 KiB
TypeScript
101 lines
3.3 KiB
TypeScript
import { DashboardProjectActivityItem } from '@interfaces';
|
|
|
|
export const MOCK_PROJECT_ACTIVITY: DashboardProjectActivityItem[] = [
|
|
{
|
|
id: '1',
|
|
project_id: '28',
|
|
staff_id: '5',
|
|
contact_id: '0',
|
|
fullname: 'John Doe',
|
|
dateadded: '2026-07-31 10:15:30',
|
|
description: 'Marked task as completed',
|
|
additional_data: 'Task: Design database structure',
|
|
project_name: 'CRM Mobile App Development',
|
|
fullname_formatted: 'John Doe',
|
|
actor_url: 'https://your-crm-domain.com/admin/profile/5',
|
|
date_title: '2026-07-31 10:15:30',
|
|
date_time_ago: '2 hours ago',
|
|
project_url: 'https://your-crm-domain.com/admin/projects/view/28',
|
|
},
|
|
{
|
|
id: '2',
|
|
project_id: '14',
|
|
staff_id: '3',
|
|
contact_id: '0',
|
|
fullname: 'Sarah Mitchell',
|
|
dateadded: '2026-07-31 08:45:00',
|
|
description: 'Added a new comment',
|
|
additional_data: 'Task: Review API endpoints documentation',
|
|
project_name: 'E-Commerce Platform Redesign',
|
|
fullname_formatted: 'Sarah Mitchell',
|
|
actor_url: 'https://your-crm-domain.com/admin/profile/3',
|
|
date_title: '2026-07-31 08:45:00',
|
|
date_time_ago: '4 hours ago',
|
|
project_url: 'https://your-crm-domain.com/admin/projects/view/14',
|
|
},
|
|
{
|
|
id: '3',
|
|
project_id: '7',
|
|
staff_id: '9',
|
|
contact_id: '0',
|
|
fullname: 'Alex Rivera',
|
|
dateadded: '2026-07-30 17:30:00',
|
|
description: 'Changed task status',
|
|
additional_data: 'Task: Integrate payment gateway — moved to In Progress',
|
|
project_name: 'FinTech Dashboard v2',
|
|
fullname_formatted: 'Alex Rivera',
|
|
actor_url: 'https://your-crm-domain.com/admin/profile/9',
|
|
date_title: '2026-07-30 17:30:00',
|
|
date_time_ago: '1 day ago',
|
|
project_url: 'https://your-crm-domain.com/admin/projects/view/7',
|
|
},
|
|
{
|
|
id: '4',
|
|
project_id: '21',
|
|
staff_id: '2',
|
|
contact_id: '0',
|
|
fullname: 'Priya Sharma',
|
|
dateadded: '2026-07-30 14:00:00',
|
|
description: 'Uploaded project file',
|
|
additional_data: 'File: UI_Wireframes_v3.fig',
|
|
project_name: 'Healthcare Portal',
|
|
fullname_formatted: 'Priya Sharma',
|
|
actor_url: 'https://your-crm-domain.com/admin/profile/2',
|
|
date_title: '2026-07-30 14:00:00',
|
|
date_time_ago: '1 day ago',
|
|
project_url: 'https://your-crm-domain.com/admin/projects/view/21',
|
|
},
|
|
{
|
|
id: '5',
|
|
project_id: '33',
|
|
staff_id: '11',
|
|
contact_id: '0',
|
|
fullname: 'Marcus Webb',
|
|
dateadded: '2026-07-29 11:20:00',
|
|
description: 'Created a new milestone',
|
|
additional_data: 'Milestone: Beta Release — Q3 2026',
|
|
project_name: 'SaaS Analytics Suite',
|
|
fullname_formatted: 'Marcus Webb',
|
|
actor_url: 'https://your-crm-domain.com/admin/profile/11',
|
|
date_title: '2026-07-29 11:20:00',
|
|
date_time_ago: '2 days ago',
|
|
project_url: 'https://your-crm-domain.com/admin/projects/view/33',
|
|
},
|
|
{
|
|
id: '6',
|
|
project_id: '28',
|
|
staff_id: '7',
|
|
contact_id: '0',
|
|
fullname: 'Emily Chen',
|
|
dateadded: '2026-07-29 09:05:00',
|
|
description: 'Left a note on project',
|
|
additional_data: 'Note: Awaiting client approval on color palette',
|
|
project_name: 'CRM Mobile App Development',
|
|
fullname_formatted: 'Emily Chen',
|
|
actor_url: 'https://your-crm-domain.com/admin/profile/7',
|
|
date_title: '2026-07-29 09:05:00',
|
|
date_time_ago: '2 days ago',
|
|
project_url: 'https://your-crm-domain.com/admin/projects/view/28',
|
|
},
|
|
];
|