-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathAssignmentCard.js
155 lines (142 loc) · 4.66 KB
/
AssignmentCard.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
import React, { Component } from 'react';
import axios from 'axios';
import { Link, Redirect } from 'react-router-dom';
import viewSubmissions from './viewSubmissions';
class AssignmentCard extends Component {
constructor(props) {
super(props);
this.state = ({
file: null,
showUpload: true
})
this.onSubmit = this.onSubmit.bind(this);
this.onChange = this.onChange.bind(this);
this.fileInput = React.createRef();
}
componentDidMount() {
var userID = localStorage.getItem('user_id');
var success = 0;
if (this.props.submissions.length) {
for (var i = 0; i < this.props.submissions.length; i++) {
var submission = this.props.submissions[i];
if (submission.user == userID) {
this.setState({
showUpload: false
})
}
}
}
else {
this.setState({
showUpload: true
})
}
}
onChange(e) {
this.setState({
file: e.target.files[0]
});
}
onSubmit(event) {
event.preventDefault();
var self = this
var userID = localStorage.getItem('user_id');
var token = 'Bearer ' + localStorage.getItem('token');
var assignmentID = this.props.assignmentID;
var inputData = new FormData();
inputData.append("inputFile", this.state.file);
var config = {
headers: {
'Content-Type': 'multipart/form-data',
'Authorization': token
}
}
var apiPath = 'api/assignments/' + userID + '/' + assignmentID + '/upload'
axios.post(apiPath, inputData, config)
.then(res => {
console.log(res.data)
if (res.data.success) {
self.setState({
showUpload: false
})
}
else {
alert('Assignment failed to upload!')
}
})
}
render() {
const toUpload = (
<div className="row">
<div className="custom-file col-4">
{/* <input type="file" className="custom-file-input" id="validatedCustomFile" onChange={this.onChange}/>
<label className="custom-file-label" for="validatedCustomFile">Choose file</label> */}
<input type="file" onChange={this.onChange} /><br />
</div>
<div className="col-8">
<button className="btn btn-dark" onClick={this.onSubmit}> Submit </button>
</div>
</div>
);
let content;
const profContent = (
<div id="AssignmentCard">
<div className="card bg-light mx-auto">
<div className="card-body text-left">
<div className="card-title"><h3><i>{this.props.uniqueID}</i>: <strong>{this.props.name}</strong></h3></div>
Description: {this.props.details}<br />
Type: {this.props.type}<br />
Due Date: {this.props.dueDate}<br />
Maximum Marks: {this.props.maxMarks}<br />
Resource URL: <a href={'//' + this.props.resourceUrl}>{this.props.resourceUrl}</a><br /><br />
<Link className='btn btn-dark mx-2' to={{
pathname: '/assignments/' + this.props.assignmentID,
state: {
uniqueID: this.props.uniqueID,
name: this.props.name,
details: this.props.details,
type: this.props.type,
dueDate: this.props.dueDate,
maxMarks: this.props.maxMarks,
resourceUrl: this.props.resourceUrl
}
}}> View Assignment </Link>
<Link className='btn btn-dark mx-2' to={{
pathname: '/assignments/submissions/' + this.props.uniqueID,
state: {
assignmentID: this.props.assignmentID
}
}}> View Submissions </Link>
</div>
</div>
<br />
</div>
);
const studContent = (
<div id="AssignmentCard">
<div className="card bg-light mx-auto">
<div className="card-title"><h3><i>{this.props.uniqueID}</i>: <strong>{this.props.name}</strong></h3></div>
<div className="card-body text-left">
Description: {this.props.details}<br />
Type: {this.props.type}<br />
Due Date: {this.props.dueDate}<br />
Maximum Marks: {this.props.maxMarks}<br />
Resource URL: <a href={'//' + this.props.resourceUrl}>{this.props.resourceUrl}</a><br /><br />
{this.state.showUpload ? toUpload : <h6 className="text-info">Assignment Submitted!</h6>}
</div>
</div>
<br />
</div>
);
if (this.props.role == "prof") {
content = profContent;
}
else {
content = studContent;
}
return (
<div>{content}</div>
)
}
}
export default AssignmentCard;