Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 62 additions & 24 deletions src/db/fakeData.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,27 @@ export const users = [
week2: null,
week3: null
},

attended: {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The class attendance object should be like this:
,
classAttendance: {
'HTML/CSS': {
week1: 'yes',
week2: null,
week3: null
},
'JS Quizz 1': {
week1: null,
week2: 'no',
week3: null
},
'JavaScript 1': {
week1: null,
week2: null,
week3: null
},
'JavaScript 2': {
week1: null,
week2: null,
week3: null
},
'JavaScript 3': {
week1: null,
week2: null,
week3: null
}
}

Is no need for that attended:{
0: yes
1: no
3: late
}

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sadat has done these amendments in the next pull request.

0: 'yes',
1: 'no',
2: 'late'
}

}
},
PDSkills: {
'Communication': 'Very Good',
'Motivation': null,
'Collaboration & Team Work': null,
'Resilience': null,
'Growth Mindset': null,
'Organization': null,
'Attention to detail': null,
'Punctuality': null,
'Focus': null,
'Language Proficiency': null,
'Self-confidence': null,
'Pro-active Learning': null
}
},

{
Expand Down Expand Up @@ -130,20 +148,20 @@ export const users = [
2: 'late'
}
},
pdSkills: {
skill: {
0: "motivation",
1: "communication",
2:"confidence"
},
skillLevel: {
0: "Excellent",
1: "Very good",
2: "Average",
3: "Below Average",
4: "Poor"
}
}
PDSkills: {
'Communication': 'Very Good',
'Motivation': null,
'Collaboration & Team Work': null,
'Resilience': null,
'Growth Mindset': null,
'Organization': null,
'Attention to detail': null,
'Punctuality': null,
'Focus ': null,
'Language Proficiency': null,
'Self-confidence': null,
'Pro-active Learning': null
}
},

{
Expand Down Expand Up @@ -207,10 +225,20 @@ export const users = [
},


pdSkills: {
skill: ["motivation", "communication", "confidence"],
skillLevel: ["Excellent", "Very good", "Average", "Below Average", "Poor"]
}
PDSkills: {
'Communication': 'Very Good',
'Motivation': null,
'Collaboration & Team Work': null,
'Resilience': null,
'Growth Mindset': null,
'Organization': null,
'Attention to detail': null,
'Punctuality': null,
'Focus ': null,
'Language Proficiency': null,
'Self-confidence': null,
'Pro-active Learning': null
}
}


Expand Down Expand Up @@ -247,10 +275,20 @@ export const users = [
}
},
{
pdSkills: {
skill: ["motivation", "communication", "confidence"],
skillLevel: ["Excellent", "Very good", "Average", "Below Average", "Poor"]
}
PDSkills: {
'Communication': 'Very Good',
'Motivation': null,
'Collaboration & Team Work': null,
'Resilience': null,
'Growth Mindset': null,
'Organization': null,
'Attention to detail': null,
'Punctuality': null,
'Focus ': null,
'Language Proficiency': null,
'Self-confidence': null,
'Pro-active Learning': null
}
},

{
Expand Down