-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathAssignments.js
139 lines (135 loc) · 4.35 KB
/
Assignments.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import React, { Component } from 'react';
import { Link, Redirect } from 'react-router-dom';
import axios from 'axios';
import AssignmentCard from './AssignmentCard';
import ReactLoading from './../../common/Loading';
class Assignments extends Component {
constructor(props) {
super(props);
this.state = {
isLoading: true,
courses: [],
role: "student",
assignments: []
};
}
componentDidMount() {
var self = this;
var token = localStorage.getItem('token');
var userID = localStorage.getItem('user_id');
var apiPath = '/api/account/' + userID + '/details'
axios.get(apiPath, {
headers: {
'x-access-token': token,
'Content-Type': 'application/json'
}
})
.then(function (response) {
if (!response.data.success) {
// TODO: throw appropriate error and redirect
console.log("Error1: " + response.data);
return;
}
var data = response.data;
self.setState({
role: data.user.role
});
})
.catch(function (error) {
console.log(error);
if (error.response) {
if (error.response.status) {
alert("Session timed out.");
window.location.href = '/';
}
}
});
var apiPath = '/api/assignments/' + userID + '/courses';
axios.get(apiPath, {
headers: {
'x-access-token': token,
'Content-Type': 'application/json'
}
})
.then(function (response) {
if (!response.data.success) {
// TODO: throw appropriate error and redirect
console.log("Error1: " + response.data);
<Redirect to="/" />
}
var data = response.data;
// console.log(data);
self.setState({ isLoading: false });
self.setState({
courses: data.courses
});
var courses = data.courses;
for (var i = 0; i < courses.length; i++) {
var apiPath = '/api/assignments/' + courses[i]._id + '/' + userID + '/new';
axios.get(apiPath, {
headers: {
'x-access-token': token,
'Content-Type': 'application/json'
}
})
.then(function (response) {
if (!response.data.success) {
console.log("Error1: " + response.data);
}
var data = response.data;
self.setState({
assignments: self.state.assignments.concat(data.assignments.assignments)
});
console.log(response.data);
})
.catch(function (error) {
console.log('Error2: ', error);
});
}// End of for loop
})
}
render() {
let content;
const profContent = (
<div>
{
this.state.assignments.length < 1 &&
<div className="lead text-center mb-2">Sorry, no assignments found.</div>
}
{
this.state.assignments.map(function (each) {
return <AssignmentCard key={each.uniqueID} uniqueID={each.uniqueID} name={each.name} details={each.details} type={each.type.toUpperCase()} maxMarks={each.maxMarks} resourceUrl={each.resourceUrl} assignmentID={each._id} submissions={each.submissions} role='prof' />
})
}
<div className="text-center"><a href="/" className="btn btn-dark" role="button">Home</a></div>
</div>
);
const studContent = (
<div>
{
this.state.assignments.length < 1 &&
<div className="lead text-center mb-2" style={{ color: "white" }}>Sorry, no new assignments found.</div>
}
{
this.state.assignments.map(function (each) {
return <AssignmentCard key={each.uniqueID} uniqueID={each.uniqueID} name={each.name} details={each.details} type={each.type.toUpperCase()} maxMarks={each.maxMarks} resourceUrl={each.resourceUrl} assignmentID={each._id} submissions={each.submissions} role='student' />
})
}
<div className="text-center"><a href="/" className="btn btn-dark" role="button">Home</a></div>
</div>
);
if (this.state.role == "prof") {
content = profContent;
}
else {
content = studContent;
}
if (this.state.isLoading)
return <ReactLoading/>;
else
return (
<div>{content}</div>
);
}
}
export default Assignments;