-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainViewController.java
292 lines (247 loc) · 10.5 KB
/
MainViewController.java
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
import javafx.collections.FXCollections;
import javafx.fxml.FXML;
import javafx.scene.control.*;
import javafx.scene.image.ImageView;
import javafx.scene.paint.Color;
import javafx.scene.text.*;
import java.io.IOException;
import java.util.HashMap;
import java.util.List;
public class MainViewController {
private final HashMap<String, RatingInfo> ratingInfoHolder = new HashMap<>();
@FXML
private ChoiceBox<String> semesterChoices = new ChoiceBox<>();
@FXML
private TextField className = new TextField("e.g CSE110");
@FXML
private CheckBox openClasses = new CheckBox();
@FXML
private CheckBox allClasses = new CheckBox();
@FXML
private Button search = new Button();
@FXML
private Label SEMESTER_ERROR = new Label();
@FXML
private Label CLASS_NAME_ERROR = new Label();
@FXML
private TextFlow classFlow;
@FXML
private TextFlow titleFlow = new TextFlow();
@FXML
private TextFlow numberFlow = new TextFlow();
@FXML
private TextFlow instructorFlow = new TextFlow();
@FXML
private TextFlow dayFlow = new TextFlow();
@FXML
private TextFlow startTFlow = new TextFlow();
@FXML
private TextFlow endTFlow = new TextFlow();
@FXML
private TextFlow locationFlow = new TextFlow();
@FXML
private TextFlow seatFlow = new TextFlow();
@FXML
private TextFlow ratingFlow = new TextFlow();
@FXML
private Label numOfResults = new Label();
@FXML
private ImageView loading = new ImageView();
@FXML
private Label ratingInfoLabel = new Label();
@FXML
private ScrollPane ratingInfoPane = new ScrollPane();
@FXML
private TextFlow ratingInfoFlow = new TextFlow();
@FXML
public void setSemester() {
String[] arr = {"Fall 2020", "Spring 2021", "Fall 2021", "Spring 2022", "Fall 2022", "Spring 2023",
"Fall 2023", "Spring 2024", "Fall 2024", "Spring 2025", "Fall 2025"};
semesterChoices.setItems(FXCollections.observableArrayList(arr));
semesterChoices.setStyle("-fx-font: 15 system; -fx-font-weight: bold; -fx-text-alignment: left;");
}
@FXML
public void setClassName() {
className.setText("");
}
@FXML
public void setOpenClasses() {
if(allClasses.isSelected()) {
allClasses.setSelected(false);
}
if(!openClasses.isSelected()) {
openClasses.setSelected(true);
}
}
@FXML
public void setAllClasses() {
if(openClasses.isSelected()) {
openClasses.setSelected(false);
}
if(!allClasses.isSelected()) {
allClasses.setSelected(true);
}
}
@FXML
public void searchClass() throws IOException {
loading.setVisible(true);
resetLableVisibility(); resetTextFlows();
if(semesterChoices.getValue() == null) {
SEMESTER_ERROR.setStyle("-fx-opacity: 1");
return;
}
if(className.getText().equals("")) {
CLASS_NAME_ERROR.setStyle("-fx-opacity: 1");
return;
} else if(className.getText().length() < 6) {
CLASS_NAME_ERROR.setText("Invalid class name!");
CLASS_NAME_ERROR.setStyle("-fx-opacity: 1");
return;
}
ASUClassFinder finder = new ASUClassFinder(semesterChoices.getValue(), className.getText(), openClasses.isSelected());
List<ASUClass> classList = finder.getWebpage();
loadResult(classList);
loading.setVisible(false);
}
private void resetLableVisibility() {
SEMESTER_ERROR.setStyle("-fx-opacity: 0");
CLASS_NAME_ERROR.setText("Please enter the class name!");
CLASS_NAME_ERROR.setStyle("-fx-opacity: 0");
}
private void loadResult(List<ASUClass> classList) throws IOException {
numOfResults.setText( "Total " + classList.size() + " results found for class " + className.getText() );
int classTracker = 0;
for(ASUClass c : classList) {
Text classTxt = setResultText(c.getName() + "\n");
classFlow.getChildren().add(classTxt);
classFlow.setLineSpacing(5.92);
Text titleTxt = setResultText(c.getTitle() + "\n");
titleFlow.getChildren().add(titleTxt);
titleFlow.setLineSpacing(5.92);
Text numberTxt = setResultText(c.getNumber() + "\n");
numberFlow.getChildren().add(numberTxt);
numberFlow.setLineSpacing(5.92);
Hyperlink rmpLink = new Hyperlink(c.getInstructor());
rmpLink.setOnAction(event -> {
//RatingInfo info;
ratingInfoFlow.getChildren().clear();
for(ASUClass c1 : classList) {
if(c1.getInstructor().equals(rmpLink.getText())) {
if(ratingInfoHolder.containsKey(c1.getFullname())) {
setUpRatingInfo(ratingInfoHolder.get(c1.getFullname()));
} else {
Text text = new Text("\n\n\n\n\t\tNo Rating Information For This Professor");
text.setFill(Color.RED);
text.setFont(Font.font("Calibri", FontWeight.EXTRA_BOLD, 16));
ratingInfoFlow.getChildren().add(text);
}
ratingInfoFlow.setVisible(true);
ratingInfoLabel.setVisible(true);
ratingInfoPane.setVisible(true);
System.out.println("--Debug-- Showing rating info");
break;
}
}
});
instructorFlow.getChildren().add(rmpLink);
instructorFlow.getChildren().add(new Text("\n"));
Text dayTxt = setResultText(" " + c.getWeekdays() + "\n");
dayFlow.getChildren().add(dayTxt);
dayFlow.setLineSpacing(5.92);
Text startTimeTxt = setResultText(c.getStartTime() + "\n");
startTFlow.getChildren().add(startTimeTxt);
startTFlow.setLineSpacing(5.92);
Text endTTxt = setResultText(c.getEndTime() + "\n");
endTFlow.getChildren().add(endTTxt);
endTFlow.setLineSpacing(5.92);
Text locationTxt = setResultText(c.getLocation() + "\n");
locationFlow.getChildren().add(locationTxt);
locationFlow.setLineSpacing(5.92);
Text seatTxt = setResultText(c.getSeatsOpen() + "\n");
seatFlow.getChildren().add(seatTxt);
seatFlow.setLineSpacing(5.92);
String fullName = c.getFullname();
RatingInfo info;
//use map to check if the rating information is already exist
if(ratingInfoHolder.containsKey(fullName)) {
info = ratingInfoHolder.get(fullName);
} else {
ProfessorRating rating = new ProfessorRating(fullName);
info = rating.getRatingInfo();
}
if(info != null && !ratingInfoHolder.containsKey(fullName)) {
ratingInfoHolder.put(fullName, info);
}
Text ratingTxt = setResultText((info == null) ? "N/A\n" : info.getScore() + "\n");
ratingTxt.setFont(Font.font("Calibri", 14));
ratingTxt.setTextAlignment(TextAlignment.CENTER);
ratingFlow.getChildren().add(ratingTxt);
ratingFlow.setLineSpacing(5.92);
System.out.printf("--Debug-- Class %d Data loaded to textflow\n", classTracker++);
}
}
private void setUpRatingInfo(RatingInfo info) {
Text t = new Text("Professor name: ");
t.setFont(Font.font("Calibri", FontWeight.BOLD, 14));
Text name = new Text(info.getName() + "\n");
name.setFont(Font.font("Calibri", 14));
Text t1 = new Text("Department: ");
t1.setFont(Font.font("Calibri", FontWeight.BOLD, 14));
Text department = new Text(info.getDepartment() + "\n");
department.setFont(Font.font("Calibri", 14));
Text t2 = new Text("Overall score: ");
t2.setFont(Font.font("Calibri", FontWeight.BOLD, 14));
Text score = new Text(info.getScore() + "\n");
score.setFont(Font.font("Calibri", 14));
score.setFill(Color.RED);
Text t3 = new Text("Would take again: ");
t3.setFont(Font.font("Calibri", FontWeight.BOLD, 14));
Text takeAgain = new Text(info.getTakeAgain() + "\n");
takeAgain.setFont(Font.font("Calibri", 14));
takeAgain.setFill(Color.GREEN);
Text t4 = new Text("Level of difficulty: ");
t4.setFont(Font.font("Calibri", FontWeight.BOLD, 14));
Text levelDifficulty = new Text(info.getLevelOfDifficultly() + "\n");
levelDifficulty.setFont(Font.font("Calibri", 14));
levelDifficulty.setFill(Color.BLUE);
Text t5 = new Text("Top tags: ");
t5.setFont(Font.font("Calibri", FontWeight.BOLD, 14));
StringBuilder tags = new StringBuilder();
for(String tag : info.getHotTags()) {
tags.append(tag).append(" ");
}
Text topTags = new Text(tags.toString() + "\n");
topTags.setFont(Font.font("Calibri", 14));
Text t6 = new Text("Top Rating: ");
t6.setFont(Font.font("Calibri", FontWeight.BOLD, 14));
Text topRating = new Text(info.getTopRating());
topRating.setFont(Font.font("Calibri", 14));
ratingInfoFlow.getChildren().addAll(t, name, t1, department, t2, score, t3, takeAgain, t4, levelDifficulty, t5, topTags, t6, topRating);
ratingInfoFlow.setLineSpacing(8);
System.out.println("--Debug-- Rating Data loaded to textflow");
}
private Text setResultText(String text) {
Text txt = new Text(text);
txt.setFont(Font.font("Calibri", 14));
txt.setTextAlignment(TextAlignment.CENTER);
return txt;
}
private void resetTextFlows() {
numOfResults.setText("");
ratingInfoHolder.clear();
ratingInfoFlow.setVisible(false);
ratingInfoLabel.setVisible(false);
ratingInfoPane.setVisible(false);
ratingInfoFlow.getChildren().clear();
classFlow.getChildren().clear();
titleFlow.getChildren().clear();
numberFlow.getChildren().clear();
instructorFlow.getChildren().clear();
dayFlow.getChildren().clear();
startTFlow.getChildren().clear();
endTFlow.getChildren().clear();
locationFlow.getChildren().clear();
seatFlow.getChildren().clear();
ratingFlow.getChildren().clear();
}
}