Skip to content

Commit

Permalink
chore: data updates
Browse files Browse the repository at this point in the history
  • Loading branch information
silviyaboteva committed Mar 1, 2025
1 parent 16f4788 commit 57994f3
Showing 1 changed file with 130 additions and 52 deletions.
182 changes: 130 additions & 52 deletions examples/kendo-react-freemium/src/pages/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import Avatar7 from "../assets/Avatar-7.png";
import Avatar8 from "../assets/Avatar-8.png";
import Avatar9 from "../assets/Avatar-9.png";

// HOME PAGE
export const listData = [
{ text: "Review LMS project timelines and milestones." },
{ text: "Research new investment possibilities for your portfolio." },
Expand Down Expand Up @@ -37,53 +38,8 @@ export const listData = [
},
];

export const gridData = [
{
taskName: "#2213 Define project scope and objectives.",
status: "🕒 Postponed",
},
{
taskName: "#2214 Conduct market research to assess existing LMS solutions.",
status: "✅ Completed",
},
{
taskName: "#5342 Identify target audience and their specific needs.",
status: "⚠ Delayed",
},
{
taskName:
"#7211 Create a project timeline with milestones and deliverables.",
status: "⏳ In Progress",
},
{
taskName:
"#2811 Gather requirements from stakeholders through interviews or surveys.",
status: "❌ Cancelled",
},
{
taskName: "#2213 Define project scope and objectives.",
status: "🕒 Postponed",
},
{
taskName: "#2214 Conduct market research to assess existing LMS solutions.",
status: "✅ Completed",
},
{
taskName: "#5342 Identify target audience and their specific needs.",
status: "⚠ Delayed",
},
{
taskName:
"#7211 Create a project timeline with milestones and deliverables.",
status: "⏳ In Progress",
},
{
taskName:
"#2811 Gather requirements from stakeholders through interviews or surveys.",
status: "❌ Cancelled",
},
];

// PROJECTS PAGE
export interface ProjectData {
ProjectID: number;
ProjectName?: string;
Expand All @@ -95,11 +51,11 @@ export interface ProjectData {
}

export const priorities = [
"Urgent" ,
"Medium priority",
"Low priority",
"High priority",
"Routine" ,
"Urgent" ,
"Medium priority",
"Low priority",
"High priority",
"Routine" ,
];

export const projectManagers = [
Expand Down Expand Up @@ -658,6 +614,128 @@ export const projectsData = [
},
];

// TASKS PAGE
export const tasksData = [
{
taskId: '#2213',
taskName: 'Define project scope and objectives.',
assignedTo: 'Fabiola.Cassin90',
dueDate: '07/31/2025',
status: '🕒 Postponed',
tags: ['Feature Development', 'Phase 1'],
priority: 'High priority'
},
{
taskId: '#2213',
taskName: 'Conduct market research to assess existing LMS solutions.',
assignedTo: 'Marlon66',
dueDate: '08/11/2025',
status: '✅ Completed',
tags: ['Research', 'Q1 Release'],
priority: 'Medium priority'
},
{
taskId: '#5342',
taskName: 'Identify target audience and their specific needs.',
assignedTo: 'Maegan_Dietrich56',
dueDate: '08/21/2025',
status: '⚠ Delayed',
tags: ['Research', 'Client'],
priority: 'Urgent'
},
{
taskId: '#7211',
taskName: 'Create a project timeline with milestones and deliverables.',
assignedTo: 'Howell69',
dueDate: '07/17/2025',
status: '⏳ In Progress',
tags: ['Feature Development', 'Sprint 1'],
priority: 'High priority'
},
{
taskId: '#2213',
taskName: 'Review and update the incident response plan to incorporate new threats and vulnerabilities.',
assignedTo: 'Kory.Lockman',
dueDate: '05/24/2025',
status: '❌ Cancelled',
tags: ['Feature Development', 'Internal'],
priority: 'Low priority'
},
{
taskId: '#2811',
taskName: 'Gather requirements from stakeholders through interviews or surveys.',
assignedTo: 'Nolan.Kling13',
dueDate: '07/01/2025',
status: '🔄 Pending Review',
tags: ['Feature Development', 'Innovation'],
priority: 'Medium priority'
},
{
taskId: '#2811',
taskName: 'Set up monitoring tools and analyze system performance metrics to identify and address potential bottlenecks.',
assignedTo: 'Antoinette_Hills',
dueDate: '12/15/2025',
status: '⚠ Delayed',
tags: ['Research', 'Innovation'],
priority: 'Low priority'
},
{
taskId: '#3516',
taskName: 'Develop a budget for the project, including potential software and hardware needs.',
assignedTo: 'Alden_Upton',
dueDate: '05/03/2025',
status: '🚧 On Hold',
tags: ['Feature Development', 'Maintenance'],
priority: 'Routine'
},
{
taskId: '#1415',
taskName: 'Conduct a SWOT analysis to assess strengths, weaknesses, opportunities, and threats.',
assignedTo: 'Travis.Gerhold80',
dueDate: '09/05/2025',
status: '✔ Approved',
tags: ['Feature Development', 'Java, Python, JavaScript, React, Node.js, SQL'],
priority: 'Medium priority'
},
{
taskId: '#1536',
taskName: 'Implement Content Management Features for Instructors.',
assignedTo: 'Jamaal41',
dueDate: '07/12/2025',
status: '✅ Completed',
tags: ['Bug Fix', 'Feature Development'],
priority: 'High priority'
},
{
taskId: '#1541',
taskName: 'Select a suitable technology stack or platform for the LMS.',
assignedTo: 'Fabiola.Cassin90',
dueDate: '07/31/2025',
status: '🕒 Postponed',
tags: ['Feature Development', 'Innovation'],
priority: 'High priority'
},
{
taskId: '#2213',
taskName: 'Evaluate potential third-party integrations (e.g., payment gateways, content libraries).',
assignedTo: 'Fabiola.Cassin90',
dueDate: '08/11/2025',
status: '✅ Completed',
tags: ['Feature Development', 'Innovation'],
priority: 'Urgent'
},
{
taskId: '#2213',
taskName: 'Create wireframes for user interface (UI) elements and navigation.',
assignedTo: 'Marlon66',
dueDate: '08/21/2025',
status: '⏳ In Progress',
tags: ['Feature Development', 'Sprint 1'],
priority: 'Medium priority'
}
];

// TEAMS PAGE
export const teamsChips = [
{ text: "All", value: "all", disabled: false },
{ text: "Technology and Developement", value: "technology", disabled: true },
Expand All @@ -669,7 +747,7 @@ export const teamsChips = [
export const teamsData = [
{
teamCode: "FE",
teamName: "Frontend team",
teamName: "Frontend Team",
avatarColor: "#9C38FF",
group: "technology",
teamMembers: [
Expand Down

0 comments on commit 57994f3

Please sign in to comment.