1 | |
package org.kuali.student.lum.common.client.widgets; |
2 | |
|
3 | |
import java.text.SimpleDateFormat; |
4 | |
import java.util.ArrayList; |
5 | |
import java.util.Date; |
6 | |
import java.util.HashMap; |
7 | |
import java.util.List; |
8 | |
import java.util.Map; |
9 | |
|
10 | |
import org.kuali.student.common.search.dto.SearchParam; |
11 | |
import org.kuali.student.common.ui.client.mvc.Callback; |
12 | |
import org.kuali.student.common.ui.client.reporting.ReportExportWidget; |
13 | |
import org.kuali.student.common.ui.client.util.ExportElement; |
14 | |
import org.kuali.student.common.ui.client.widgets.KSButton; |
15 | |
import org.kuali.student.common.ui.client.widgets.KSButtonAbstract.ButtonStyle; |
16 | |
import org.kuali.student.common.ui.client.widgets.KSLabel; |
17 | |
import org.kuali.student.common.ui.client.widgets.notification.KSNotification; |
18 | |
import org.kuali.student.common.ui.client.widgets.notification.KSNotifier; |
19 | |
import org.kuali.student.common.ui.client.widgets.progress.BlockingTask; |
20 | |
import org.kuali.student.common.ui.client.widgets.progress.KSBlockingProgressIndicator; |
21 | |
import org.kuali.student.common.ui.shared.IdAttributes.IdType; |
22 | |
import org.kuali.student.lum.lu.dto.CluSetInfo; |
23 | |
import org.kuali.student.lum.lu.dto.MembershipQueryInfo; |
24 | |
|
25 | |
import com.google.gwt.dom.client.Style; |
26 | |
import com.google.gwt.event.dom.client.ClickEvent; |
27 | |
import com.google.gwt.event.dom.client.ClickHandler; |
28 | |
import com.google.gwt.http.client.URL; |
29 | |
import com.google.gwt.user.client.Window; |
30 | |
import com.google.gwt.user.client.ui.Anchor; |
31 | |
import com.google.gwt.user.client.ui.Composite; |
32 | |
import com.google.gwt.user.client.ui.FlexTable; |
33 | |
import com.google.gwt.user.client.ui.HTML; |
34 | |
import com.google.gwt.user.client.ui.HTMLPanel; |
35 | |
import com.google.gwt.user.client.ui.HorizontalPanel; |
36 | |
import com.google.gwt.user.client.ui.SimplePanel; |
37 | |
|
38 | 0 | public class CluSetDetailsWidget extends Composite implements ReportExportWidget { |
39 | |
|
40 | |
private CluSetInformation cluSetInformation; |
41 | |
private SimplePanel mainPanel; |
42 | 0 | private FlexTable detailsTable = new FlexTable(); |
43 | |
private boolean showClus; |
44 | 0 | private Map<String, Boolean> showCluSetFlags = new HashMap<String, Boolean>(); |
45 | |
|
46 | |
private CluSetRetriever cluSetRetriever; |
47 | |
|
48 | 0 | private BlockingTask retrievingTask = new BlockingTask("Retrieving details"); |
49 | |
|
50 | 0 | public CluSetDetailsWidget(CluSetInformation cluSetInformation, CluSetRetriever cluSetRetriever) { |
51 | 0 | mainPanel = new SimplePanel(); |
52 | 0 | this.initWidget(mainPanel); |
53 | 0 | this.cluSetRetriever = cluSetRetriever; |
54 | 0 | setCluSetInformation(cluSetInformation); |
55 | 0 | redraw(); |
56 | 0 | } |
57 | |
|
58 | 0 | public CluSetDetailsWidget(String cluSetId, CluSetRetriever cluSetRetriever) { |
59 | 0 | mainPanel = new SimplePanel(); |
60 | 0 | this.initWidget(mainPanel); |
61 | 0 | this.cluSetRetriever = cluSetRetriever; |
62 | |
|
63 | 0 | KSBlockingProgressIndicator.addTask(retrievingTask); |
64 | 0 | cluSetRetriever.getCluSetInformation(cluSetId, new Callback<CluSetInformation>() { |
65 | |
@Override |
66 | |
public void exec(CluSetInformation result) { |
67 | 0 | if (result != null) { |
68 | 0 | setCluSetInformation(result); |
69 | 0 | redraw(); |
70 | |
} |
71 | 0 | KSBlockingProgressIndicator.removeTask(retrievingTask); |
72 | 0 | } |
73 | |
}); |
74 | 0 | } |
75 | |
|
76 | |
private void redraw() { |
77 | 0 | List<CluInformation> clus = null; |
78 | 0 | List<CluSetInfo> cluSets = null; |
79 | 0 | MembershipQueryInfo membershipQueryInfo = null; |
80 | 0 | List<CluInformation> clusInRange = null; |
81 | 0 | int rowIndex = 0; |
82 | 0 | mainPanel.clear(); |
83 | 0 | detailsTable.clear(); |
84 | 0 | if (cluSetInformation == null) { |
85 | 0 | return; |
86 | |
} else { |
87 | 0 | clus = cluSetInformation.getClus(); |
88 | 0 | cluSets = cluSetInformation.getCluSets(); |
89 | 0 | membershipQueryInfo = cluSetInformation.getMembershipQueryInfo(); |
90 | 0 | clusInRange = cluSetInformation.getClusInRange(); |
91 | |
} |
92 | 0 | StringBuilder titleTextSb = new StringBuilder(); |
93 | 0 | titleTextSb.append("INDIVIDUAL COURSE(S)"); |
94 | 0 | KSLabel coursesHeader = new KSLabel(titleTextSb.toString()); |
95 | |
|
96 | 0 | detailsTable.setWidget(rowIndex, 0, coursesHeader); |
97 | 0 | detailsTable.getFlexCellFormatter().setColSpan(rowIndex, 0, 2); |
98 | 0 | if (cluSets != null && cluSets.size() > 0 || clusInRange != null && clusInRange.size() > 0) { |
99 | 0 | coursesHeader.setVisible(true); |
100 | |
} else { |
101 | 0 | coursesHeader.setVisible(false); |
102 | |
} |
103 | |
{ |
104 | |
|
105 | 0 | int numClus = (clus == null) ? 0 : clus.size(); |
106 | 0 | StringBuilder hideClusTextSb = new StringBuilder(); |
107 | 0 | showClus = true; |
108 | 0 | if (showClus) { |
109 | 0 | hideClusTextSb.append("Hide courses(").append(numClus).append(")"); |
110 | |
} else { |
111 | 0 | hideClusTextSb.append("Show courses(").append(numClus).append(")"); |
112 | |
} |
113 | 0 | KSButton hideClusButton = new KSButton(hideClusTextSb.toString(), ButtonStyle.DEFAULT_ANCHOR); |
114 | 0 | detailsTable.setWidget(rowIndex, 1, hideClusButton); |
115 | 0 | hideClusButton.addClickHandler(new ClickHandler() { |
116 | |
@Override |
117 | |
public void onClick(ClickEvent event) { |
118 | 0 | showClus = !showClus; |
119 | 0 | redraw(); |
120 | 0 | } |
121 | |
}); |
122 | 0 | if (numClus > 10) { |
123 | 0 | hideClusButton.setVisible(true); |
124 | |
} else { |
125 | 0 | hideClusButton.setVisible(false); |
126 | |
} |
127 | |
} |
128 | |
|
129 | 0 | rowIndex++; |
130 | 0 | if (clus != null && showClus) { |
131 | 0 | for (CluInformation clu : clus) { |
132 | 0 | addClusDisplayToTable(rowIndex, clu); |
133 | 0 | rowIndex++; |
134 | |
} |
135 | |
} |
136 | 0 | if (cluSets != null) { |
137 | 0 | if (cluSets.size() > 0) { |
138 | 0 | KSLabel spacer = new KSLabel(); |
139 | 0 | spacer.getElement().getStyle().setPaddingTop(10, Style.Unit.PX); |
140 | 0 | detailsTable.setWidget(rowIndex, 0, spacer); |
141 | 0 | detailsTable.getFlexCellFormatter().setColSpan(rowIndex, 0, 3); |
142 | 0 | rowIndex++; |
143 | |
} |
144 | 0 | for (final CluSetInfo cluSet : cluSets) { |
145 | 0 | int columnIndex = 0; |
146 | 0 | final String cluSetId = cluSet.getId(); |
147 | 0 | HorizontalPanel cluSetNamePanel = new HorizontalPanel(); |
148 | 0 | Anchor cluSetNameLabel = new Anchor(cluSet.getName()); |
149 | 0 | cluSetNameLabel.addClickHandler(new ClickHandler() { |
150 | |
|
151 | |
@Override |
152 | |
public void onClick(ClickEvent event) { |
153 | 0 | String url = "http://" + Window.Location.getHost() + Window.Location.getPath() + "?view=" + AppLocations.Locations.VIEW_CLU_SET + "&docId=" + cluSetId; |
154 | 0 | String features = "height=600,width=960,dependent=0,directories=1," + "fullscreen=1,location=1,menubar=1,resizable=1,scrollbars=1,status=1,toolbar=1"; |
155 | 0 | Window.open(url, HTMLPanel.createUniqueId(), features); |
156 | |
|
157 | 0 | } |
158 | |
}); |
159 | 0 | KSLabel itemType = new KSLabel("Course Set"); |
160 | 0 | itemType.getElement().getStyle().setProperty("color", "grey"); |
161 | 0 | itemType.getElement().getStyle().setPaddingLeft(5, Style.Unit.PX); |
162 | 0 | cluSetNamePanel.add(cluSetNameLabel); |
163 | 0 | cluSetNamePanel.add(itemType); |
164 | 0 | boolean showCluSet = (showCluSetFlags.get(cluSet.getId()) == null) ? false : showCluSetFlags.get(cluSet.getId()).booleanValue(); |
165 | 0 | detailsTable.setWidget(rowIndex, columnIndex, cluSetNamePanel); |
166 | 0 | detailsTable.getFlexCellFormatter().setColSpan(rowIndex, columnIndex, 1); |
167 | 0 | columnIndex++; |
168 | |
|
169 | |
|
170 | |
|
171 | 0 | columnIndex++; |
172 | 0 | StringBuilder hideCluSetTextSb = new StringBuilder(); |
173 | 0 | if (showCluSet) { |
174 | 0 | hideCluSetTextSb.append("Hide Courses"); |
175 | |
} else { |
176 | 0 | hideCluSetTextSb.append("Show Courses"); |
177 | |
} |
178 | 0 | KSButton hideCluSetButton = new KSButton(hideCluSetTextSb.toString(), ButtonStyle.DEFAULT_ANCHOR); |
179 | 0 | detailsTable.setWidget(rowIndex, columnIndex, hideCluSetButton); |
180 | 0 | rowIndex++; |
181 | 0 | hideCluSetButton.addClickHandler(new ClickHandler() { |
182 | |
@Override |
183 | |
public void onClick(ClickEvent event) { |
184 | 0 | Boolean showCluSetDetails = showCluSetFlags.get(cluSet.getId()); |
185 | 0 | showCluSetDetails = (showCluSetDetails == null) ? false : showCluSetDetails; |
186 | 0 | showCluSetFlags.put(cluSet.getId(), !showCluSetDetails); |
187 | 0 | Boolean newShowCluSetDetails = !showCluSetDetails; |
188 | 0 | if (newShowCluSetDetails) { |
189 | 0 | CluSetInformation subCluSetInformation = cluSetInformation.getSubCluSetInformations().get(cluSet.getId()); |
190 | 0 | if (subCluSetInformation == null) { |
191 | 0 | cluSetRetriever.getCluSetInformation(cluSet.getId(), new Callback<CluSetInformation>() { |
192 | |
@Override |
193 | |
public void exec(CluSetInformation result) { |
194 | 0 | if (result != null) { |
195 | 0 | cluSetInformation.getSubCluSetInformations().put(cluSet.getId(), result); |
196 | 0 | redraw(); |
197 | |
} |
198 | 0 | } |
199 | |
}); |
200 | |
} else { |
201 | 0 | redraw(); |
202 | |
} |
203 | 0 | } else { |
204 | 0 | redraw(); |
205 | |
} |
206 | 0 | } |
207 | |
}); |
208 | 0 | if (showCluSet) { |
209 | 0 | CluSetInformation subCluSetInformation = cluSetInformation.getSubCluSetInformations().get(cluSet.getId()); |
210 | 0 | CluSetDetailsWidget subCluSetWidget = new CluSetDetailsWidget(subCluSetInformation, cluSetRetriever); |
211 | 0 | subCluSetWidget.getElement().getStyle().setPaddingLeft(20, Style.Unit.PX); |
212 | 0 | detailsTable.setWidget(rowIndex, 0, subCluSetWidget); |
213 | 0 | detailsTable.getFlexCellFormatter().setColSpan(rowIndex, 0, 3); |
214 | 0 | rowIndex++; |
215 | |
} |
216 | |
|
217 | 0 | } |
218 | |
} |
219 | 0 | if (membershipQueryInfo != null) { |
220 | 0 | List<SearchParam> searchParams = membershipQueryInfo.getQueryParamValueList(); |
221 | 0 | if (searchParams != null) { |
222 | 0 | HorizontalPanel queryDisplayPanel = new HorizontalPanel(); |
223 | 0 | for (SearchParam searchParam : searchParams) { |
224 | 0 | KSLabel paramDescLabel = new KSLabel(); |
225 | 0 | KSLabel paramValueLabel = new KSLabel(); |
226 | 0 | String paramDesc = translateSearchKey(searchParam.getKey()); |
227 | 0 | paramDescLabel.setText(paramDesc); |
228 | 0 | Object value = searchParam.getValue(); |
229 | 0 | String displayValue = ""; |
230 | 0 | if (value instanceof Date) { |
231 | 0 | SimpleDateFormat DT_FOMRAT = new SimpleDateFormat("MM/dd/yyyy"); |
232 | 0 | displayValue = DT_FOMRAT.format((Date) value); |
233 | 0 | } else { |
234 | 0 | displayValue = value.toString(); |
235 | |
} |
236 | 0 | paramDescLabel.getElement().getStyle().setProperty("color", "grey"); |
237 | 0 | paramDescLabel.getElement().getStyle().setPaddingRight(5, Style.Unit.PX); |
238 | 0 | paramValueLabel.setText(displayValue); |
239 | 0 | paramValueLabel.getElement().getStyle().setPaddingRight(10, Style.Unit.PX); |
240 | 0 | queryDisplayPanel.getElement().getStyle().setPaddingTop(10, Style.Unit.PX); |
241 | 0 | queryDisplayPanel.add(paramDescLabel); |
242 | 0 | queryDisplayPanel.add(paramValueLabel); |
243 | 0 | } |
244 | 0 | detailsTable.setWidget(rowIndex, 0, queryDisplayPanel); |
245 | 0 | detailsTable.getFlexCellFormatter().setColSpan(rowIndex, 0, 2); |
246 | 0 | rowIndex++; |
247 | |
} |
248 | 0 | if (clusInRange != null) { |
249 | 0 | for (CluInformation clu : clusInRange) { |
250 | 0 | addClusDisplayToTable(rowIndex, clu); |
251 | 0 | rowIndex++; |
252 | |
} |
253 | |
} else { |
254 | 0 | Window.alert("num clusInRange is null"); |
255 | |
} |
256 | |
} |
257 | 0 | mainPanel.setWidget(detailsTable); |
258 | 0 | } |
259 | |
|
260 | |
private void addClusDisplayToTable(int rowIndex, final CluInformation clu) { |
261 | 0 | int columnIndex = 0; |
262 | 0 | KSButton cluCodeLink = new KSButton(clu.getCode(), ButtonStyle.DEFAULT_ANCHOR); |
263 | 0 | cluCodeLink.getElement().getStyle().setPaddingLeft(10, Style.Unit.PX); |
264 | 0 | detailsTable.setWidget(rowIndex, columnIndex, cluCodeLink); |
265 | 0 | detailsTable.getFlexCellFormatter().setColSpan(rowIndex, columnIndex, 1); |
266 | 0 | cluCodeLink.addClickHandler(new ClickHandler() { |
267 | |
@Override |
268 | |
public void onClick(ClickEvent event) { |
269 | 0 | String url = "http://" + Window.Location.getHost() + Window.Location.getPath(); |
270 | 0 | if("kuali.lu.type.Variation".equals(clu.getType())){ |
271 | 0 | url += "?view=" + AppLocations.Locations.VIEW_VARIATION; |
272 | 0 | url += "&docId=" + URL.encodeQueryString(clu.getParentCluId()) + "&variationId=" + URL.encodeQueryString(clu.getVerIndependentId()); |
273 | 0 | url += "&idType=" + IdType.OBJECT_ID; |
274 | 0 | }else if("kuali.lu.type.MajorDiscipline".equals(clu.getType())){ |
275 | 0 | url += "?view=" + AppLocations.Locations.VIEW_PROGRAM; |
276 | 0 | url += "&docId=" + URL.encodeQueryString(clu.getVerIndependentId()); |
277 | 0 | url += "&idType=" + IdType.OBJECT_ID; |
278 | 0 | }else if("kuali.lu.type.CreditCourse".equals(clu.getType())){ |
279 | 0 | url += "?view=" + AppLocations.Locations.VIEW_COURSE; |
280 | 0 | url += "&docId=" + URL.encodeQueryString(clu.getVerIndependentId()); |
281 | 0 | url += "&idType=" + IdType.OBJECT_ID; |
282 | 0 | }else if("kuali.lu.type.CoreProgram".equals(clu.getType())){ |
283 | 0 | url += "?view=" + AppLocations.Locations.VIEW_CORE_PROGRAM; |
284 | 0 | url += "&docId=" + URL.encodeQueryString(clu.getVerIndependentId()); |
285 | 0 | url += "&idType=" + IdType.OBJECT_ID; |
286 | 0 | }else if("kuali.lu.type.credential.Baccalaureate".equals(clu.getType())){ |
287 | 0 | url += "?view=" + AppLocations.Locations.VIEW_BACC_PROGRAM; |
288 | 0 | url += "&docId=" + URL.encodeQueryString(clu.getVerIndependentId()); |
289 | 0 | url += "&idType=" + IdType.OBJECT_ID; |
290 | 0 | }else if("kuali.lu.type.credential.Doctoral".equals(clu.getType())){ |
291 | 0 | url += "?view=" + AppLocations.Locations.VIEW_BACC_PROGRAM; |
292 | 0 | url += "&docId=" + URL.encodeQueryString(clu.getVerIndependentId()); |
293 | 0 | url += "&idType=" + IdType.OBJECT_ID; |
294 | 0 | }else if("kuali.lu.type.credential.Masters".equals(clu.getType())){ |
295 | 0 | url += "?view=" + AppLocations.Locations.VIEW_BACC_PROGRAM; |
296 | 0 | url += "&docId=" + URL.encodeQueryString(clu.getVerIndependentId()); |
297 | 0 | url += "&idType=" + IdType.OBJECT_ID; |
298 | |
}else{ |
299 | |
|
300 | 0 | KSNotifier.add(new KSNotification("This widget does not know how to open learning units of type "+clu.getType(), false, true, 5000)); |
301 | 0 | return; |
302 | |
} |
303 | |
|
304 | 0 | String features = "height=600,width=960,dependent=0,directories=1," + "fullscreen=1,location=1,menubar=1,resizable=1,scrollbars=1,status=1,toolbar=1"; |
305 | 0 | Window.open(url, HTMLPanel.createUniqueId().replace("-", "_"), features); |
306 | 0 | } |
307 | |
}); |
308 | 0 | columnIndex++; |
309 | |
|
310 | 0 | HTML cluTitleLabel = new HTML("<h5>" + clu.getTitle() + "</h5>"); |
311 | 0 | detailsTable.setWidget(rowIndex, columnIndex, cluTitleLabel); |
312 | 0 | detailsTable.getFlexCellFormatter().setColSpan(rowIndex, columnIndex, 1); |
313 | 0 | columnIndex++; |
314 | |
|
315 | 0 | if (clu.getCredits() != null && !clu.getCredits().trim().isEmpty()) { |
316 | 0 | HTML cluCreditsLabel = new HTML("<h5>" + clu.getCredits() + " credits" + "</h5>"); |
317 | 0 | detailsTable.setWidget(rowIndex, columnIndex, cluCreditsLabel); |
318 | 0 | detailsTable.getFlexCellFormatter().setColSpan(rowIndex, columnIndex, 1); |
319 | 0 | columnIndex++; |
320 | |
} |
321 | 0 | } |
322 | |
|
323 | |
private String translateSearchKey(String searchKey) { |
324 | 0 | String result = ""; |
325 | 0 | if (searchKey != null && searchKey.equals("lu.queryParam.luOptionalDivision")) { |
326 | 0 | result = "Department"; |
327 | 0 | } else if (searchKey != null && searchKey.equals("lu.queryParam.luOptionalCrsNoRange")) { |
328 | 0 | result = "Course Number Range"; |
329 | 0 | } else if (searchKey != null && searchKey.equals("lo.queryParam.loDescPlain")) { |
330 | 0 | result = "Description"; |
331 | 0 | } else if (searchKey != null && searchKey.equals("lu.queryParam.luOptionalEffectiveDate1")) { |
332 | 0 | result = "Effective From"; |
333 | 0 | } else if (searchKey != null && searchKey.equals("lu.queryParam.luOptionalEffectiveDate2")) { |
334 | 0 | result = "Effective To"; |
335 | 0 | } else if (searchKey != null && searchKey.equals("lu.queryParam.luOptionalEffectiveDate2")) { |
336 | |
|
337 | |
} |
338 | |
|
339 | 0 | return result; |
340 | |
} |
341 | |
|
342 | |
public CluSetInformation getCluSetInformation() { |
343 | 0 | return cluSetInformation; |
344 | |
} |
345 | |
|
346 | |
public void setCluSetInformation(CluSetInformation cluSetInformation) { |
347 | 0 | this.cluSetInformation = cluSetInformation; |
348 | 0 | } |
349 | |
|
350 | |
public String toString() { |
351 | 0 | return detailsTable.toString(); |
352 | |
} |
353 | |
|
354 | |
@Override |
355 | |
public boolean isExportElement() { |
356 | 0 | return true; |
357 | |
} |
358 | |
|
359 | |
@Override |
360 | |
public List<ExportElement> getExportElementSubset(ExportElement parent) { |
361 | 0 | List<CluInformation> items = this.cluSetInformation.getClus(); |
362 | 0 | ArrayList<ExportElement> subItems = new ArrayList<ExportElement>(); |
363 | 0 | for (int i = 0; i < items.size(); i++) { |
364 | 0 | ExportElement subelement = new ExportElement(parent.getViewName(), parent.getSectionName()); |
365 | 0 | subelement.setFieldValue("<b>" + items.get(i).getCode() + " " + items.get(i).getTitle() + "</b>"); |
366 | 0 | subelement.setFieldValue2(items.get(i).getCredits() + " credits"); |
367 | 0 | subelement.setPrintType(ExportElement.PROPOSAL); |
368 | 0 | subItems.add(subelement); |
369 | |
} |
370 | 0 | return subItems; |
371 | |
} |
372 | |
|
373 | |
@Override |
374 | |
public String getExportFieldValue() { |
375 | 0 | return null; |
376 | |
} |
377 | |
|
378 | |
} |