1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.lum.lu.ui.course.client.controllers; |
17 | |
|
18 | |
import java.util.ArrayList; |
19 | |
import java.util.List; |
20 | |
|
21 | |
import org.kuali.student.common.assembly.data.Data; |
22 | |
import org.kuali.student.common.assembly.data.Metadata; |
23 | |
import org.kuali.student.common.dto.DtoConstants; |
24 | |
import org.kuali.student.common.rice.authorization.PermissionType; |
25 | |
import org.kuali.student.common.ui.client.application.Application; |
26 | |
import org.kuali.student.common.ui.client.application.KSAsyncCallback; |
27 | |
import org.kuali.student.common.ui.client.application.ViewContext; |
28 | |
import org.kuali.student.common.ui.client.configurable.mvc.layouts.DocumentLayoutController; |
29 | |
import org.kuali.student.common.ui.client.configurable.mvc.layouts.TabMenuController; |
30 | |
import org.kuali.student.common.ui.client.mvc.Callback; |
31 | |
import org.kuali.student.common.ui.client.mvc.DataModel; |
32 | |
import org.kuali.student.common.ui.client.mvc.DataModelDefinition; |
33 | |
import org.kuali.student.common.ui.client.mvc.ModelProvider; |
34 | |
import org.kuali.student.common.ui.client.mvc.ModelRequestCallback; |
35 | |
import org.kuali.student.common.ui.client.mvc.WorkQueue; |
36 | |
import org.kuali.student.common.ui.client.mvc.WorkQueue.WorkItem; |
37 | |
import org.kuali.student.common.ui.client.mvc.dto.ReferenceModel; |
38 | |
import org.kuali.student.common.ui.client.util.ExportElement; |
39 | |
import org.kuali.student.common.ui.client.util.ExportUtils; |
40 | |
import org.kuali.student.common.ui.client.util.WindowTitleUtils; |
41 | |
import org.kuali.student.common.ui.client.widgets.KSButton; |
42 | |
import org.kuali.student.common.ui.client.widgets.KSLabel; |
43 | |
import org.kuali.student.common.ui.client.widgets.KSLightBox; |
44 | |
import org.kuali.student.common.ui.client.widgets.KSButtonAbstract.ButtonStyle; |
45 | |
import org.kuali.student.common.ui.client.widgets.notification.KSNotification; |
46 | |
import org.kuali.student.common.ui.client.widgets.notification.KSNotifier; |
47 | |
import org.kuali.student.common.ui.client.widgets.progress.BlockingTask; |
48 | |
import org.kuali.student.common.ui.client.widgets.progress.KSBlockingProgressIndicator; |
49 | |
import org.kuali.student.common.ui.client.widgets.table.summary.SummaryTableSection; |
50 | |
import org.kuali.student.common.ui.shared.IdAttributes.IdType; |
51 | |
import org.kuali.student.core.statement.dto.StatementTypeInfo; |
52 | |
import org.kuali.student.lum.common.client.helpers.RecentlyViewedHelper; |
53 | |
import org.kuali.student.lum.lu.ui.course.client.configuration.AbstractCourseConfigurer; |
54 | |
import org.kuali.student.lum.lu.ui.course.client.configuration.CourseProposalConfigurer; |
55 | |
import org.kuali.student.lum.lu.ui.course.client.configuration.ViewCourseConfigurer; |
56 | |
import org.kuali.student.lum.lu.ui.course.client.configuration.ViewCourseConfigurer.ViewCourseSections; |
57 | |
import org.kuali.student.lum.lu.ui.course.client.requirements.CourseRequirementsDataModel; |
58 | |
import org.kuali.student.lum.lu.ui.course.client.requirements.HasRequirements; |
59 | |
import org.kuali.student.lum.lu.ui.course.client.service.CourseRpcService; |
60 | |
import org.kuali.student.lum.lu.ui.course.client.service.CourseRpcServiceAsync; |
61 | |
import org.kuali.student.lum.lu.ui.course.client.widgets.CourseWorkflowActionList; |
62 | |
|
63 | |
import com.google.gwt.core.client.GWT; |
64 | |
import com.google.gwt.event.dom.client.ClickEvent; |
65 | |
import com.google.gwt.event.dom.client.ClickHandler; |
66 | |
import com.google.gwt.event.logical.shared.CloseEvent; |
67 | |
import com.google.gwt.event.logical.shared.CloseHandler; |
68 | |
import com.google.gwt.user.client.Window; |
69 | |
import com.google.gwt.user.client.ui.Widget; |
70 | |
|
71 | |
|
72 | |
|
73 | |
|
74 | |
|
75 | |
|
76 | |
|
77 | 0 | public class ViewCourseController extends TabMenuController implements DocumentLayoutController, HasRequirements{ |
78 | 0 | private final DataModel cluModel = new DataModel(); |
79 | |
|
80 | |
private WorkQueue modelRequestQueue; |
81 | |
|
82 | 0 | private String cluType = "kuali.lu.type.CreditCourse"; |
83 | 0 | private String courseId = null; |
84 | |
|
85 | |
private static final String CLU_STATE = DtoConstants.STATE_ACTIVE; |
86 | |
private static final String MSG_GROUP = "course"; |
87 | |
|
88 | 0 | private final String REFERENCE_TYPE = "referenceType.clu"; |
89 | 0 | private boolean initialized = false; |
90 | 0 | CourseRpcServiceAsync rpcServiceAsync = GWT.create(CourseRpcService.class); |
91 | |
|
92 | 0 | private final BlockingTask loadDataTask = new BlockingTask("Retrieving Data...."); |
93 | 0 | private final BlockingTask initTask = new BlockingTask("Initializing...."); |
94 | 0 | private final KSLabel statusLabel = new KSLabel(""); |
95 | |
|
96 | 0 | private final List<CourseWorkflowActionList> actionDropDownWidgets = new ArrayList<CourseWorkflowActionList>(); |
97 | |
|
98 | |
private final CourseRequirementsDataModel reqDataModel; |
99 | |
|
100 | 0 | final ViewCourseConfigurer cfg = GWT.create(ViewCourseConfigurer.class); |
101 | |
|
102 | |
public ViewCourseController(Enum<?> viewType){ |
103 | 0 | super(CourseProposalController.class.getName()); |
104 | 0 | initialize(); |
105 | 0 | addStyleName("courseView"); |
106 | 0 | reqDataModel = new CourseRequirementsDataModel(this); |
107 | 0 | this.tabPanel.addStyleName("standard-content-padding"); |
108 | 0 | this.setViewEnum(viewType); |
109 | 0 | } |
110 | |
|
111 | |
@Override |
112 | |
public void setViewContext(ViewContext viewContext) { |
113 | 0 | super.setViewContext(viewContext); |
114 | 0 | if(viewContext.getId() != null && !viewContext.getId().isEmpty()){ |
115 | 0 | viewContext.setPermissionType(PermissionType.OPEN); |
116 | 0 | this.setCourseId(viewContext.getId()); |
117 | |
} |
118 | 0 | } |
119 | |
|
120 | |
private void initialize() { |
121 | 0 | super.setDefaultModelId(CourseProposalConfigurer.COURSE_PROPOSAL_MODEL); |
122 | 0 | super.registerModel(CourseProposalConfigurer.COURSE_PROPOSAL_MODEL, new ModelProvider<DataModel>() { |
123 | |
|
124 | |
@Override |
125 | |
public void requestModel(final ModelRequestCallback<DataModel> callback) { |
126 | 0 | if (modelRequestQueue == null){ |
127 | 0 | modelRequestQueue = new WorkQueue(); |
128 | |
} |
129 | |
|
130 | 0 | WorkItem workItem = new WorkItem(){ |
131 | |
@Override |
132 | |
public void exec(Callback<Boolean> workCompleteCallback) { |
133 | 0 | if (cluModel.getRoot() == null || cluModel.getRoot().size() == 0){ |
134 | 0 | if (courseId != null){ |
135 | 0 | getCourseFromCluId(callback, workCompleteCallback); |
136 | |
} else{ |
137 | 0 | createNewCluModel(callback, workCompleteCallback); |
138 | |
} |
139 | |
} else { |
140 | 0 | callback.onModelReady(cluModel); |
141 | 0 | workCompleteCallback.exec(true); |
142 | |
} |
143 | 0 | } |
144 | |
}; |
145 | 0 | modelRequestQueue.submit(workItem); |
146 | |
|
147 | 0 | } |
148 | |
|
149 | |
}); |
150 | |
|
151 | |
|
152 | 0 | } |
153 | |
|
154 | |
|
155 | |
public Widget generateActionDropDown(){ |
156 | 0 | CourseWorkflowActionList actionList = new CourseWorkflowActionList(this.getMessage("cluActionsLabel"), getViewContext(), "/HOME/CURRICULUM_HOME/COURSE_PROPOSAL", cluModel, new Callback<String>() { |
157 | |
@Override |
158 | |
public void exec(String newState) { |
159 | 0 | if (newState != null) { |
160 | 0 | KSNotifier.add(new KSNotification(getMessage("cluStateChangeNotification" + newState), false, 5000)); |
161 | |
|
162 | 0 | statusLabel.setText("Status: " + newState); |
163 | |
} else { |
164 | 0 | KSNotifier.add(new KSNotification(getMessage("cluStateChangeFailedNotification"), false, 5000)); |
165 | |
} |
166 | 0 | } |
167 | |
}); |
168 | 0 | actionDropDownWidgets.add(actionList); |
169 | |
|
170 | 0 | return actionList; |
171 | |
} |
172 | |
|
173 | |
private void init(final Callback<Boolean> onReadyCallback) { |
174 | |
|
175 | 0 | if (initialized) { |
176 | 0 | onReadyCallback.exec(true); |
177 | |
} else { |
178 | 0 | KSBlockingProgressIndicator.addTask(initTask); |
179 | 0 | this.setContentTitle("View Course"); |
180 | 0 | this.setName("Course"); |
181 | 0 | String idType = null; |
182 | 0 | String viewContextId = null; |
183 | |
|
184 | |
|
185 | 0 | if(getViewContext().getIdType() != null){ |
186 | 0 | idType = getViewContext().getIdType().toString(); |
187 | 0 | viewContextId = getViewContext().getId(); |
188 | 0 | if(getViewContext().getIdType()==IdType.COPY_OF_OBJECT_ID){ |
189 | 0 | viewContextId = null; |
190 | |
} |
191 | |
|
192 | |
} |
193 | |
|
194 | 0 | rpcServiceAsync.getMetadata("", null, new KSAsyncCallback<Metadata>(){ |
195 | |
|
196 | |
@Override |
197 | |
public void handleFailure(Throwable caught) { |
198 | 0 | initialized = false; |
199 | 0 | onReadyCallback.exec(false); |
200 | 0 | KSBlockingProgressIndicator.removeTask(initTask); |
201 | 0 | throw new RuntimeException("Failed to get model definition.", caught); |
202 | |
} |
203 | |
|
204 | |
public void onSuccess(Metadata result) { |
205 | 0 | DataModelDefinition def = new DataModelDefinition(result); |
206 | 0 | cluModel.setDefinition(def); |
207 | 0 | init(def, onReadyCallback); |
208 | 0 | } |
209 | |
}); |
210 | |
|
211 | |
} |
212 | 0 | } |
213 | |
|
214 | |
private void updateCourseActionItems() { |
215 | |
|
216 | 0 | for(CourseWorkflowActionList widget: actionDropDownWidgets){ |
217 | 0 | widget.updateCourseActionItems(cluModel); |
218 | 0 | widget.setEnabled(true); |
219 | 0 | if(widget.isEmpty()) { |
220 | 0 | widget.setVisible(false); |
221 | |
} |
222 | |
else{ |
223 | 0 | widget.setVisible(true); |
224 | |
} |
225 | |
} |
226 | 0 | } |
227 | |
|
228 | |
private void init(final DataModelDefinition modelDefinition, final Callback<Boolean> onReadyCallback){ |
229 | |
|
230 | 0 | CourseRequirementsDataModel.getStatementTypes(new Callback<List<StatementTypeInfo>>() { |
231 | |
|
232 | |
@Override |
233 | |
public void exec(List<StatementTypeInfo> stmtTypes) { |
234 | 0 | List<StatementTypeInfo> stmtTypesOut = new ArrayList<StatementTypeInfo>(); |
235 | 0 | if (stmtTypes != null) { |
236 | 0 | for (StatementTypeInfo stmtType : stmtTypes) { |
237 | 0 | if (stmtType.getId().contains("kuali.statement.type.course.enrollmentEligibility") || |
238 | |
stmtType.getId().contains("kuali.statement.type.course.creditConstraints")) { |
239 | 0 | continue; |
240 | |
} |
241 | 0 | stmtTypesOut.add(stmtType); |
242 | |
} |
243 | |
} |
244 | 0 | if(!initialized){ |
245 | 0 | initialized = true; |
246 | 0 | cfg.setStatementTypes(stmtTypesOut); |
247 | 0 | cfg.setModelDefinition(modelDefinition); |
248 | 0 | cfg.generateLayout(ViewCourseController.this); |
249 | |
} |
250 | 0 | onReadyCallback.exec(true); |
251 | 0 | KSBlockingProgressIndicator.removeTask(initTask); |
252 | 0 | } |
253 | |
}); |
254 | 0 | } |
255 | |
|
256 | |
@SuppressWarnings("unchecked") |
257 | |
@Override |
258 | |
public void requestModel(Class modelType, final ModelRequestCallback callback) { |
259 | 0 | if(modelType == ReferenceModel.class){ |
260 | 0 | if (cluModel != null){ |
261 | 0 | ReferenceModel ref = new ReferenceModel(); |
262 | |
|
263 | 0 | if(cluModel.get("course/id") != null){ |
264 | 0 | ref.setReferenceId((String)cluModel.get("course/id")); |
265 | |
} else{ |
266 | 0 | ref.setReferenceId(null); |
267 | |
} |
268 | |
|
269 | 0 | ref.setReferenceTypeKey(REFERENCE_TYPE); |
270 | 0 | ref.setReferenceType(cluType); |
271 | 0 | ref.setReferenceState(CLU_STATE); |
272 | |
|
273 | 0 | callback.onModelReady(ref); |
274 | 0 | } |
275 | 0 | }else if (modelType == Data.class){ |
276 | 0 | requestModel(CourseProposalConfigurer.COURSE_PROPOSAL_MODEL, callback); |
277 | |
} else { |
278 | 0 | super.requestModel(modelType, callback); |
279 | |
} |
280 | 0 | } |
281 | |
|
282 | |
@SuppressWarnings("unchecked") |
283 | |
private void getCourseFromCluId(final ModelRequestCallback callback, final Callback<Boolean> workCompleteCallback){ |
284 | 0 | KSBlockingProgressIndicator.addTask(loadDataTask); |
285 | |
|
286 | 0 | rpcServiceAsync.getData(courseId, new KSAsyncCallback<Data>(){ |
287 | |
|
288 | |
@Override |
289 | |
public void handleFailure(Throwable caught) { |
290 | 0 | Window.alert("Error loading Course: "+caught.getMessage()); |
291 | 0 | createNewCluModel(callback, workCompleteCallback); |
292 | 0 | KSBlockingProgressIndicator.removeTask(loadDataTask); |
293 | 0 | } |
294 | |
|
295 | |
@Override |
296 | |
public void onSuccess(Data result) { |
297 | 0 | cluModel.setRoot(result); |
298 | |
|
299 | 0 | setHeaderTitle(); |
300 | 0 | updateCourseActionItems(); |
301 | 0 | callback.onModelReady(cluModel); |
302 | 0 | workCompleteCallback.exec(true); |
303 | 0 | reqDataModel.retrieveStatementTypes(cluModel.<String>get("id"), new Callback<Boolean>() { |
304 | |
@Override |
305 | |
public void exec(Boolean result) { |
306 | 0 | if (result) { |
307 | 0 | KSBlockingProgressIndicator.removeTask(loadDataTask); |
308 | |
} |
309 | 0 | } |
310 | |
}); |
311 | |
|
312 | 0 | } |
313 | |
|
314 | |
}); |
315 | 0 | } |
316 | |
|
317 | |
@SuppressWarnings("unchecked") |
318 | |
private void getCurrentVersion(final ModelRequestCallback callback, final Callback<Boolean> workCompleteCallback) { |
319 | 0 | rpcServiceAsync.getData(courseId, new KSAsyncCallback<Data>(){ |
320 | |
|
321 | |
@Override |
322 | |
public void handleFailure(Throwable caught) { |
323 | 0 | Window.alert("Error loading Course: "+caught.getMessage()); |
324 | 0 | createNewCluModel(callback, workCompleteCallback); |
325 | 0 | KSBlockingProgressIndicator.removeTask(loadDataTask); |
326 | 0 | } |
327 | |
|
328 | |
@Override |
329 | |
public void onSuccess(Data result) { |
330 | 0 | cluModel.setRoot(result); |
331 | |
|
332 | 0 | setHeaderTitle(); |
333 | 0 | updateCourseActionItems(); |
334 | 0 | callback.onModelReady(cluModel); |
335 | 0 | workCompleteCallback.exec(true); |
336 | 0 | KSBlockingProgressIndicator.removeTask(loadDataTask); |
337 | 0 | } |
338 | |
|
339 | |
}); |
340 | 0 | } |
341 | |
|
342 | |
@SuppressWarnings("unchecked") |
343 | |
private void createNewCluModel(final ModelRequestCallback callback, final Callback<Boolean> workCompleteCallback){ |
344 | 0 | cluModel.setRoot(new Data()); |
345 | 0 | callback.onModelReady(cluModel); |
346 | 0 | workCompleteCallback.exec(true); |
347 | 0 | } |
348 | |
|
349 | |
public String getCourseId() { |
350 | 0 | return courseId; |
351 | |
} |
352 | |
|
353 | |
public String getVersionIndId() { |
354 | 0 | return (String)cluModel.get("versionInfo/versionIndId"); |
355 | |
} |
356 | |
|
357 | |
public void setCourseId(String courseId) { |
358 | 0 | this.courseId = courseId; |
359 | 0 | this.cluModel.setRoot(new Data()); |
360 | 0 | } |
361 | |
|
362 | |
public void clear(String cluType){ |
363 | 0 | super.clear(); |
364 | 0 | this.cluType = cluType; |
365 | 0 | if (cluModel != null){ |
366 | 0 | this.cluModel.setRoot(new Data()); |
367 | |
} |
368 | 0 | this.courseId = null; |
369 | 0 | } |
370 | |
|
371 | |
@Override |
372 | |
public void showDefaultView(final Callback<Boolean> onReadyCallback) { |
373 | 0 | init(new Callback<Boolean>() { |
374 | |
|
375 | |
@Override |
376 | |
public void exec(Boolean result) { |
377 | 0 | if (result) { |
378 | 0 | ViewCourseController.super.showDefaultView(onReadyCallback); |
379 | |
} else { |
380 | 0 | onReadyCallback.exec(false); |
381 | |
} |
382 | 0 | } |
383 | |
}); |
384 | 0 | } |
385 | |
|
386 | |
@Override |
387 | |
public void beforeShow(Callback<Boolean> onReadyCallback) { |
388 | 0 | showDefaultView(onReadyCallback); |
389 | 0 | } |
390 | |
|
391 | |
private KSButton getQuitButton(){ |
392 | 0 | return new KSButton("Quit", new ClickHandler(){ |
393 | |
public void onClick(ClickEvent event) { |
394 | 0 | Application.navigate("/HOME/CURRICULUM_HOME"); |
395 | 0 | } |
396 | |
}); |
397 | |
} |
398 | |
|
399 | |
|
400 | |
protected void setHeaderTitle() { |
401 | |
|
402 | |
String title; |
403 | 0 | if (cluModel.get("transcriptTitle") != null){ |
404 | 0 | title = getCourseTitle(); |
405 | |
} |
406 | |
else{ |
407 | 0 | title = "Course"; |
408 | |
} |
409 | |
|
410 | 0 | updateStatus(); |
411 | |
|
412 | 0 | this.setContentTitle(title); |
413 | 0 | this.setName(title); |
414 | 0 | WindowTitleUtils.setContextTitle(title); |
415 | 0 | } |
416 | |
|
417 | |
private void updateStatus() { |
418 | 0 | if(cluModel.get("state") != null){ |
419 | 0 | statusLabel.setText("Status: " + cluModel.get("state")); |
420 | |
} |
421 | 0 | } |
422 | |
|
423 | |
private CloseHandler<KSLightBox> createActionSubmitSuccessHandler() { |
424 | 0 | CloseHandler<KSLightBox> handler = new CloseHandler<KSLightBox>(){ |
425 | |
@Override |
426 | |
public void onClose(CloseEvent<KSLightBox> event) { |
427 | |
|
428 | 0 | Window.Location.reload(); |
429 | 0 | } |
430 | |
}; |
431 | 0 | return handler; |
432 | |
} |
433 | |
|
434 | |
public String getMessage(String courseMessageKey) { |
435 | 0 | String msg = Application.getApplicationContext().getMessage(MSG_GROUP, courseMessageKey); |
436 | 0 | if (msg == null) { |
437 | 0 | msg = courseMessageKey; |
438 | |
} |
439 | 0 | return msg; |
440 | |
} |
441 | |
|
442 | |
public Widget getStatusLabel() { |
443 | 0 | statusLabel.setStyleName("courseStatusLabel"); |
444 | 0 | return statusLabel; |
445 | |
} |
446 | |
|
447 | |
public Widget getVersionHistoryWidget(){ |
448 | 0 | KSButton button = new KSButton("Version History", ButtonStyle.DEFAULT_ANCHOR, new ClickHandler(){ |
449 | |
|
450 | |
@Override |
451 | |
public void onClick(ClickEvent event) { |
452 | 0 | parentController.showView(ViewCourseParentController.Views.VERSIONS); |
453 | 0 | } |
454 | |
}); |
455 | 0 | button.addStyleName("versionHistoryLink"); |
456 | 0 | return button; |
457 | |
|
458 | |
} |
459 | |
|
460 | |
@Override |
461 | |
public void onHistoryEvent(String historyStack) { |
462 | 0 | super.onHistoryEvent(historyStack); |
463 | 0 | if (cluModel.get("courseTitle") != null){ |
464 | 0 | RecentlyViewedHelper.addCurrentDocument(getCourseTitle()); |
465 | |
} |
466 | 0 | } |
467 | |
|
468 | |
public String getCourseTitle(){ |
469 | 0 | return cluModel.get("courseTitle"); |
470 | |
} |
471 | |
|
472 | |
|
473 | |
public String getCurrentId() { |
474 | 0 | return cluModel.get("id"); |
475 | |
} |
476 | |
|
477 | |
@Override |
478 | |
public CourseRequirementsDataModel getReqDataModel() { |
479 | 0 | return reqDataModel; |
480 | |
} |
481 | |
|
482 | |
@Override |
483 | |
public DataModel getExportDataModel() { |
484 | 0 | return cluModel; |
485 | |
} |
486 | |
|
487 | |
@Override |
488 | |
public boolean isExportButtonActive() { |
489 | 0 | if (this.getCurrentViewEnum() != null && this.getCurrentViewEnum().equals(ViewCourseSections.DETAILED)) { |
490 | 0 | return true; |
491 | |
} |
492 | 0 | return false; |
493 | |
} |
494 | |
|
495 | |
@Override |
496 | |
public ArrayList<ExportElement> getExportElementsFromView() { |
497 | 0 | ArrayList<ExportElement> exportElements = new ArrayList<ExportElement>(); |
498 | 0 | if (this.getCurrentViewEnum().equals(ViewCourseSections.DETAILED)) { |
499 | 0 | SummaryTableSection tableSection = this.cfg.getSummaryConfigurer().getTableSection(); |
500 | 0 | ExportElement heading = new ExportElement(); |
501 | 0 | heading.setFieldLabel(""); |
502 | 0 | heading.setFieldValue(tableSection.getTitle()); |
503 | 0 | exportElements.add(heading); |
504 | 0 | exportElements = ExportUtils.getDetailsForWidget(tableSection, exportElements); |
505 | |
} |
506 | 0 | return exportElements; |
507 | |
} |
508 | |
} |