1 | |
package org.kuali.student.lum.program.client.major.edit; |
2 | |
|
3 | |
import java.util.ArrayList; |
4 | |
import java.util.HashMap; |
5 | |
import java.util.Iterator; |
6 | |
import java.util.List; |
7 | |
import java.util.Map; |
8 | |
import java.util.Set; |
9 | |
import java.util.TreeSet; |
10 | |
|
11 | |
import org.kuali.student.common.assembly.data.Data; |
12 | |
import org.kuali.student.common.assembly.data.Data.Property; |
13 | |
import org.kuali.student.common.assembly.data.Metadata; |
14 | |
import org.kuali.student.common.assembly.data.QueryPath; |
15 | |
import org.kuali.student.common.dto.DtoConstants; |
16 | |
import org.kuali.student.common.ui.client.application.Application; |
17 | |
import org.kuali.student.common.ui.client.application.KSAsyncCallback; |
18 | |
import org.kuali.student.common.ui.client.application.ViewContext; |
19 | |
import org.kuali.student.common.ui.client.configurable.mvc.views.SectionView; |
20 | |
import org.kuali.student.common.ui.client.mvc.Callback; |
21 | |
import org.kuali.student.common.ui.client.mvc.DataModel; |
22 | |
import org.kuali.student.common.ui.client.mvc.DataModelDefinition; |
23 | |
import org.kuali.student.common.ui.client.mvc.HasCrossConstraints; |
24 | |
import org.kuali.student.common.ui.client.mvc.ModelProvider; |
25 | |
import org.kuali.student.common.ui.client.mvc.ModelRequestCallback; |
26 | |
import org.kuali.student.common.ui.client.mvc.View; |
27 | |
import org.kuali.student.common.ui.client.mvc.history.HistoryManager; |
28 | |
import org.kuali.student.common.ui.client.service.DataSaveResult; |
29 | |
import org.kuali.student.common.ui.client.validator.ValidatorClientUtils; |
30 | |
import org.kuali.student.common.ui.client.widgets.KSButton; |
31 | |
import org.kuali.student.common.ui.client.widgets.KSButtonAbstract; |
32 | |
import org.kuali.student.common.ui.client.widgets.notification.KSNotification; |
33 | |
import org.kuali.student.common.ui.client.widgets.notification.KSNotifier; |
34 | |
import org.kuali.student.common.ui.shared.IdAttributes; |
35 | |
import org.kuali.student.common.ui.shared.IdAttributes.IdType; |
36 | |
import org.kuali.student.common.validation.dto.ValidationResultInfo; |
37 | |
import org.kuali.student.lum.common.client.configuration.LUMViews; |
38 | |
import org.kuali.student.lum.common.client.helpers.RecentlyViewedHelper; |
39 | |
import org.kuali.student.lum.common.client.widgets.AppLocations; |
40 | |
import org.kuali.student.lum.program.client.ProgramConstants; |
41 | |
import org.kuali.student.lum.program.client.ProgramRegistry; |
42 | |
import org.kuali.student.lum.program.client.ProgramSections; |
43 | |
import org.kuali.student.lum.program.client.ProgramStatus; |
44 | |
import org.kuali.student.lum.program.client.ProgramUtils; |
45 | |
import org.kuali.student.lum.program.client.events.AddSpecializationEvent; |
46 | |
import org.kuali.student.lum.program.client.events.AfterSaveEvent; |
47 | |
import org.kuali.student.lum.program.client.events.ChangeViewEvent; |
48 | |
import org.kuali.student.lum.program.client.events.MetadataLoadedEvent; |
49 | |
import org.kuali.student.lum.program.client.events.ModelLoadedEvent; |
50 | |
import org.kuali.student.lum.program.client.events.SpecializationCreatedEvent; |
51 | |
import org.kuali.student.lum.program.client.events.SpecializationSaveEvent; |
52 | |
import org.kuali.student.lum.program.client.events.SpecializationUpdateEvent; |
53 | |
import org.kuali.student.lum.program.client.events.StateChangeEvent; |
54 | |
import org.kuali.student.lum.program.client.events.StoreRequirementIDsEvent; |
55 | |
import org.kuali.student.lum.program.client.events.UpdateEvent; |
56 | |
import org.kuali.student.lum.program.client.major.MajorController; |
57 | |
import org.kuali.student.lum.program.client.properties.ProgramProperties; |
58 | |
import org.kuali.student.lum.program.client.requirements.ProgramRequirementsDataModel; |
59 | |
import org.kuali.student.lum.program.client.rpc.AbstractCallback; |
60 | |
import org.kuali.student.lum.program.client.widgets.ProgramSideBar; |
61 | |
|
62 | |
import com.google.gwt.core.client.GWT; |
63 | |
import com.google.gwt.event.dom.client.ClickEvent; |
64 | |
import com.google.gwt.event.dom.client.ClickHandler; |
65 | |
import com.google.gwt.event.shared.HandlerManager; |
66 | |
import com.google.gwt.user.client.Window; |
67 | |
|
68 | |
|
69 | |
|
70 | |
|
71 | 0 | public class MajorEditController extends MajorController { |
72 | |
|
73 | 0 | private final KSButton saveButton = new KSButton(ProgramProperties.get().common_save()); |
74 | 0 | private final KSButton cancelButton = new KSButton(ProgramProperties.get().common_cancel(), KSButtonAbstract.ButtonStyle.ANCHOR_LARGE_CENTERED); |
75 | 0 | private final Set<String> existingVariationIds = new TreeSet<String>(); |
76 | |
|
77 | 0 | protected final DataModel comparisonModel = new DataModel("Original Program"); |
78 | 0 | private String comparisonModelId = "ComparisonModel"; |
79 | |
|
80 | |
private ProgramRequirementsDataModel reqDataModel; |
81 | |
private ProgramRequirementsDataModel reqDataModelComp; |
82 | |
|
83 | |
|
84 | |
|
85 | |
|
86 | |
|
87 | |
|
88 | |
public MajorEditController(DataModel programModel, ViewContext viewContext, HandlerManager eventBus) { |
89 | 0 | super(programModel, viewContext, eventBus); |
90 | 0 | programModel.setModelName("New Program"); |
91 | 0 | initializeComparisonModel(); |
92 | 0 | configurer = GWT.create(MajorEditConfigurer.class); |
93 | 0 | sideBar.setState(ProgramSideBar.State.EDIT); |
94 | 0 | initHandlers(); |
95 | |
|
96 | 0 | reqDataModel = new ProgramRequirementsDataModel(eventBus); |
97 | 0 | reqDataModelComp = new ProgramRequirementsDataModel(eventBus); |
98 | 0 | } |
99 | |
|
100 | |
@Override |
101 | |
protected void configureView() { |
102 | 0 | super.configureView(); |
103 | 0 | if (!initialized) { |
104 | 0 | eventBus.fireEvent(new MetadataLoadedEvent(programModel.getDefinition(), this)); |
105 | 0 | List<Enum<?>> excludedViews = new ArrayList<Enum<?>>(); |
106 | 0 | excludedViews.add(ProgramSections.PROGRAM_REQUIREMENTS_EDIT); |
107 | 0 | excludedViews.add(ProgramSections.SUPPORTING_DOCUMENTS_EDIT); |
108 | 0 | excludedViews.add(ProgramSections.SUMMARY); |
109 | 0 | addCommonButton(ProgramProperties.get().program_menu_sections(), saveButton, excludedViews); |
110 | 0 | addCommonButton(ProgramProperties.get().program_menu_sections(), cancelButton, excludedViews); |
111 | 0 | initialized = true; |
112 | |
} |
113 | 0 | } |
114 | |
|
115 | |
private void initHandlers() { |
116 | 0 | saveButton.addClickHandler(new ClickHandler() { |
117 | |
|
118 | |
@Override |
119 | |
public void onClick(ClickEvent event) { |
120 | 0 | doSave(); |
121 | 0 | } |
122 | |
}); |
123 | 0 | cancelButton.addClickHandler(new ClickHandler() { |
124 | |
|
125 | |
@Override |
126 | |
public void onClick(ClickEvent event) { |
127 | 0 | doCancel(); |
128 | 0 | } |
129 | |
}); |
130 | 0 | eventBus.addHandler(UpdateEvent.TYPE, new UpdateEvent.Handler() { |
131 | |
@Override |
132 | |
public void onEvent(UpdateEvent event) { |
133 | 0 | Enum<?> view = event.getCurrentView(); |
134 | 0 | if (view != null) { |
135 | 0 | setCurrentViewEnum(view); |
136 | |
} |
137 | 0 | doSave(event.getOkCallback()); |
138 | |
|
139 | 0 | } |
140 | |
}); |
141 | 0 | eventBus.addHandler(StateChangeEvent.TYPE, new StateChangeEvent.Handler() { |
142 | |
@Override |
143 | |
public void onEvent(final StateChangeEvent event) { |
144 | |
|
145 | |
|
146 | |
|
147 | 0 | programRemoteService.validate(programModel.getRoot(), new KSAsyncCallback<List<ValidationResultInfo>>(){ |
148 | |
@Override |
149 | |
public void onSuccess(final List<ValidationResultInfo> currentStateResults) { |
150 | 0 | programModel.validateNextState(new Callback<List<ValidationResultInfo>>() { |
151 | |
@Override |
152 | |
public void exec(List<ValidationResultInfo> nextStateResults) { |
153 | |
|
154 | 0 | Application.getApplicationContext().clearValidationWarnings(); |
155 | 0 | Application.getApplicationContext().addValidationWarnings(currentStateResults); |
156 | 0 | isValid(Application.getApplicationContext().getValidationWarnings(), false); |
157 | |
|
158 | 0 | boolean isSectionValid = isValid(nextStateResults, true) |
159 | |
&& Application.getApplicationContext().getValidationWarnings().isEmpty(); |
160 | 0 | if (isSectionValid) { |
161 | 0 | Callback<Boolean> callback = new Callback<Boolean>() { |
162 | |
@Override |
163 | |
public void exec(Boolean result) { |
164 | 0 | if (result) { |
165 | 0 | reloadMetadata = true; |
166 | 0 | loadMetadata(new Callback<Boolean>() { |
167 | |
@Override |
168 | |
public void exec(Boolean result) { |
169 | 0 | if (result) { |
170 | 0 | ProgramUtils.syncMetadata(configurer, programModel.getDefinition()); |
171 | 0 | HistoryManager.navigate(AppLocations.Locations.VIEW_PROGRAM.getLocation(), context); |
172 | |
} |
173 | 0 | } |
174 | |
}); |
175 | |
}else{ |
176 | 0 | KSNotifier.add(new KSNotification("Unable to save, please check fields for errors.", false, true, 5000)); |
177 | |
} |
178 | 0 | } |
179 | |
}; |
180 | 0 | updateState(event.getProgramStatus().getValue(), callback); |
181 | 0 | } else { |
182 | 0 | KSNotifier.add(new KSNotification("Unable to save, please check fields for errors.", false, true, 5000)); |
183 | |
} |
184 | 0 | } |
185 | |
}); |
186 | |
|
187 | |
|
188 | 0 | } |
189 | |
|
190 | |
}); |
191 | 0 | } |
192 | |
}); |
193 | |
|
194 | 0 | eventBus.addHandler(SpecializationSaveEvent.TYPE, new SpecializationSaveEvent.Handler() { |
195 | |
@Override |
196 | |
public void onEvent(SpecializationSaveEvent event) { |
197 | |
|
198 | 0 | Data currentVariations = getDataProperty(ProgramConstants.VARIATIONS); |
199 | |
|
200 | 0 | existingVariationIds.clear(); |
201 | |
|
202 | 0 | for (Data.Property prop : currentVariations) { |
203 | 0 | String existingId = (String) ((Data) prop.getValue()).get(ProgramConstants.ID); |
204 | 0 | existingVariationIds.add(existingId); |
205 | 0 | } |
206 | 0 | String updatedId = event.getData().get(ProgramConstants.ID); |
207 | 0 | Integer updatedKey = null; |
208 | |
|
209 | |
|
210 | |
|
211 | |
|
212 | |
|
213 | 0 | if (updatedId != null) { |
214 | 0 | for (Data.Property prop : currentVariations) { |
215 | 0 | String id = (String) ((Data) prop.getValue()).get(ProgramConstants.ID); |
216 | 0 | if (updatedId.equals(id)) { |
217 | 0 | updatedKey = prop.getKey(); |
218 | 0 | Data currentMetaInfo = ((Data) prop.getValue()).get("metaInfo"); |
219 | 0 | String latestVersionInd = currentMetaInfo.get("versionInd"); |
220 | 0 | Data newMetaInfo = event.getData().get("metaInfo"); |
221 | 0 | if (newMetaInfo == null) { |
222 | 0 | newMetaInfo = new Data(); |
223 | 0 | event.getData().set("metaInfo", newMetaInfo); |
224 | |
} |
225 | 0 | newMetaInfo.set("versionInd", latestVersionInd); |
226 | 0 | break; |
227 | |
} |
228 | 0 | } |
229 | |
|
230 | 0 | currentVariations.set(updatedKey, event.getData()); |
231 | |
} else { |
232 | 0 | currentVariations.add(event.getData()); |
233 | |
|
234 | |
} |
235 | 0 | doSave(); |
236 | 0 | } |
237 | |
}); |
238 | 0 | eventBus.addHandler(AddSpecializationEvent.TYPE, new AddSpecializationEvent.Handler() { |
239 | |
@Override |
240 | |
public void onEvent(AddSpecializationEvent event) { |
241 | 0 | String id = getStringProperty(ProgramConstants.ID); |
242 | 0 | ProgramRegistry.setRow((getDataProperty(ProgramConstants.VARIATIONS)).size()); |
243 | 0 | ProgramRegistry.setData(ProgramUtils.createNewSpecializationBasedOnMajor(programModel)); |
244 | 0 | ViewContext viewContext = new ViewContext(); |
245 | 0 | viewContext.setId(id); |
246 | 0 | viewContext.setIdType(IdAttributes.IdType.OBJECT_ID); |
247 | 0 | HistoryManager.navigate(AppLocations.Locations.EDIT_VARIATION.getLocation(), viewContext); |
248 | |
|
249 | 0 | } |
250 | |
}); |
251 | |
|
252 | 0 | eventBus.addHandler(StoreRequirementIDsEvent.TYPE, new StoreRequirementIDsEvent.Handler() { |
253 | |
@Override |
254 | |
public void onEvent(StoreRequirementIDsEvent event) { |
255 | 0 | List<String> ids = event.getProgramRequirementIds(); |
256 | |
|
257 | 0 | programModel.set(QueryPath.parse(ProgramConstants.PROGRAM_REQUIREMENTS), new Data()); |
258 | 0 | Data programRequirements = programModel.get(ProgramConstants.PROGRAM_REQUIREMENTS); |
259 | |
|
260 | 0 | if (programRequirements == null) { |
261 | 0 | Window.alert("Cannot find program requirements in data model."); |
262 | 0 | GWT.log("Cannot find program requirements in data model", null); |
263 | 0 | return; |
264 | |
} |
265 | |
|
266 | 0 | for (String id : ids) { |
267 | 0 | programRequirements.add(id); |
268 | |
} |
269 | 0 | doSave(); |
270 | 0 | } |
271 | |
}); |
272 | 0 | eventBus.addHandler(ChangeViewEvent.TYPE, new ChangeViewEvent.Handler() { |
273 | |
@Override |
274 | |
public void onEvent(ChangeViewEvent event) { |
275 | 0 | showView(event.getViewToken()); |
276 | 0 | } |
277 | |
}); |
278 | 0 | } |
279 | |
|
280 | |
|
281 | |
|
282 | |
|
283 | |
private void initializeComparisonModel() { |
284 | 0 | super.registerModel(comparisonModelId, new ModelProvider<DataModel>() { |
285 | |
@Override |
286 | |
public void requestModel(final ModelRequestCallback<DataModel> callback) { |
287 | 0 | if(comparisonModel.getRoot() != null && comparisonModel.getRoot().size() != 0){ |
288 | 0 | callback.onModelReady(comparisonModel); |
289 | |
} |
290 | |
else{ |
291 | 0 | callback.onModelReady(null); |
292 | |
} |
293 | 0 | } |
294 | |
}); |
295 | 0 | } |
296 | |
|
297 | |
@Override |
298 | |
protected void loadMetadata(final Callback<Boolean> onReadyCallback) { |
299 | 0 | Map<String, String> idAttributes = new HashMap<String, String>(); |
300 | 0 | ViewContext viewContext = getViewContext(); |
301 | 0 | IdType idType = viewContext.getIdType(); |
302 | 0 | String viewContextId = null; |
303 | 0 | if (idType != null) { |
304 | 0 | idAttributes.put(IdAttributes.ID_TYPE, idType.toString()); |
305 | 0 | viewContextId = viewContext.getId(); |
306 | 0 | if (idType == IdType.COPY_OF_OBJECT_ID) { |
307 | 0 | viewContextId = null; |
308 | |
} |
309 | |
} |
310 | 0 | if (programModel.getRoot() != null) { |
311 | 0 | ProgramStatus programStatus = ProgramStatus.of(programModel); |
312 | 0 | idAttributes.put(DtoConstants.DTO_STATE, programStatus.getValue()); |
313 | 0 | if (programStatus.getNextStatus() != null) { |
314 | 0 | idAttributes.put(DtoConstants.DTO_NEXT_STATE, programStatus.getNextStatus().getValue()); |
315 | |
} |
316 | |
} |
317 | 0 | programRemoteService.getMetadata(viewContextId, idAttributes, new AbstractCallback<Metadata>() { |
318 | |
|
319 | |
@Override |
320 | |
public void onSuccess(Metadata result) { |
321 | 0 | super.onSuccess(result); |
322 | 0 | DataModelDefinition def = new DataModelDefinition(result); |
323 | 0 | programModel.setDefinition(def); |
324 | 0 | comparisonModel.setDefinition(def); |
325 | 0 | lastLoadedStatus = ProgramStatus.of(programModel); |
326 | 0 | afterMetadataLoaded(onReadyCallback); |
327 | 0 | } |
328 | |
|
329 | |
@Override |
330 | |
public void onFailure(Throwable caught) { |
331 | 0 | super.onFailure(caught); |
332 | 0 | onReadyCallback.exec(false); |
333 | 0 | } |
334 | |
}); |
335 | 0 | } |
336 | |
|
337 | |
@Override |
338 | |
protected void loadModel(final ModelRequestCallback<DataModel> callback) { |
339 | 0 | ViewContext viewContext = getViewContext(); |
340 | 0 | if (viewContext.getIdType() == IdType.COPY_OF_OBJECT_ID) |
341 | |
{ |
342 | 0 | ModelRequestCallback<DataModel> comparisonModelCallback = new ModelRequestCallback<DataModel>() { |
343 | |
@Override |
344 | |
public void onModelReady(DataModel model) { |
345 | 0 | programRemoteService.getData(getViewContext().getId(), new AbstractCallback<Data>(ProgramProperties.get().common_retrievingData()) { |
346 | |
@Override |
347 | |
public void onSuccess(Data result) { |
348 | 0 | super.onSuccess(result); |
349 | 0 | comparisonModel.setRoot(result); |
350 | 0 | reqDataModel.retrieveProgramRequirements(MajorEditController.this, ProgramConstants.PROGRAM_MODEL_ID, new Callback<Boolean>() { |
351 | |
@Override |
352 | |
public void exec(Boolean result) { |
353 | 0 | if (result) { |
354 | 0 | reqDataModelComp.retrieveProgramRequirements(MajorEditController.this, comparisonModelId, new Callback<Boolean>() { |
355 | |
@Override |
356 | |
public void exec(Boolean result) { |
357 | 0 | if (result) { |
358 | 0 | callback.onModelReady(comparisonModel); |
359 | |
} |
360 | 0 | } |
361 | |
}); |
362 | |
} |
363 | 0 | } |
364 | |
}); |
365 | 0 | } |
366 | |
|
367 | |
@Override |
368 | |
public void onFailure(Throwable caught) { |
369 | 0 | super.onFailure(caught); |
370 | 0 | callback.onRequestFail(caught); |
371 | 0 | } |
372 | |
}); |
373 | 0 | } |
374 | |
|
375 | |
@Override |
376 | |
public void onRequestFail(Throwable cause) { |
377 | 0 | GWT.log("Unable to retrieve comparison model", cause); |
378 | 0 | } |
379 | |
}; |
380 | |
|
381 | 0 | createNewVersionAndLoadModel(comparisonModelCallback, viewContext); |
382 | 0 | } |
383 | 0 | else if (viewContext.getIdType() == IdType.OBJECT_ID) |
384 | |
{ |
385 | 0 | ModelRequestCallback<DataModel> comparisonModelCallback = new ModelRequestCallback<DataModel>() { |
386 | |
@Override |
387 | |
public void onModelReady(DataModel model) { |
388 | 0 | programRemoteService.getData(getViewContext().getId(), new AbstractCallback<Data>(ProgramProperties.get().common_retrievingData()) { |
389 | |
|
390 | |
@Override |
391 | |
public void onFailure(Throwable caught) { |
392 | 0 | super.onFailure(caught); |
393 | 0 | callback.onRequestFail(caught); |
394 | 0 | } |
395 | |
|
396 | |
@Override |
397 | |
public void onSuccess(Data result) { |
398 | 0 | super.onSuccess(result); |
399 | 0 | comparisonModel.setRoot(result); |
400 | 0 | reqDataModel.retrieveProgramRequirements(MajorEditController.this, ProgramConstants.PROGRAM_MODEL_ID, new Callback<Boolean>() { |
401 | |
@Override |
402 | |
public void exec(Boolean result) { |
403 | 0 | if (result) { |
404 | 0 | reqDataModelComp.retrieveProgramRequirements(MajorEditController.this, comparisonModelId, new Callback<Boolean>() { |
405 | |
@Override |
406 | |
public void exec(Boolean result) { |
407 | 0 | if (result) { |
408 | 0 | callback.onModelReady(comparisonModel); |
409 | |
} |
410 | 0 | } |
411 | |
}); |
412 | |
} |
413 | 0 | } |
414 | |
}); |
415 | 0 | } |
416 | |
}); |
417 | 0 | } |
418 | |
|
419 | |
@Override |
420 | |
public void onRequestFail(Throwable cause) { |
421 | 0 | GWT.log("Unable to retrieve comparison model", cause); |
422 | 0 | } |
423 | |
}; |
424 | |
|
425 | 0 | super.loadModel(comparisonModelCallback); |
426 | 0 | } else |
427 | 0 | super.loadModel(callback); |
428 | 0 | } |
429 | |
|
430 | |
protected void createNewVersionAndLoadModel(final ModelRequestCallback<DataModel> callback, final ViewContext viewContext) { |
431 | 0 | Data data = new Data(); |
432 | 0 | Data versionData = new Data(); |
433 | 0 | versionData.set(new Data.StringKey("versionIndId"), getViewContext().getId()); |
434 | 0 | versionData.set(new Data.StringKey("versionComment"), "Major Disicpline Version"); |
435 | 0 | data.set(new Data.StringKey("versionInfo"), versionData); |
436 | |
|
437 | 0 | programRemoteService.saveData(data, new AbstractCallback<DataSaveResult>(ProgramProperties.get().common_retrievingData()) { |
438 | |
@Override |
439 | |
public void onSuccess(DataSaveResult result) { |
440 | 0 | super.onSuccess(result); |
441 | 0 | refreshModelAndView(result); |
442 | 0 | viewContext.setId(ProgramUtils.getProgramId(programModel)); |
443 | 0 | viewContext.setIdType(IdType.OBJECT_ID); |
444 | 0 | callback.onModelReady(programModel); |
445 | 0 | eventBus.fireEvent(new ModelLoadedEvent(programModel)); |
446 | 0 | } |
447 | |
|
448 | |
@Override |
449 | |
public void onFailure(Throwable caught) { |
450 | 0 | super.onFailure(caught); |
451 | 0 | callback.onRequestFail(caught); |
452 | 0 | } |
453 | |
}); |
454 | |
|
455 | 0 | } |
456 | |
|
457 | |
private void doSave(final Callback<Boolean> okCallback) { |
458 | 0 | requestModel(new ModelRequestCallback<DataModel>() { |
459 | |
@Override |
460 | |
public void onModelReady(DataModel model) { |
461 | 0 | MajorEditController.this.updateModelFromCurrentView(); |
462 | 0 | model.validate(new Callback<List<ValidationResultInfo>>() { |
463 | |
@Override |
464 | |
public void exec(List<ValidationResultInfo> result) { |
465 | 0 | boolean isSectionValid = isValid(result, true); |
466 | 0 | if (isSectionValid) { |
467 | 0 | saveData(okCallback); |
468 | |
} else { |
469 | 0 | okCallback.exec(false); |
470 | 0 | KSNotifier.add(new KSNotification("Unable to save, please check fields for errors.", false, true, 5000)); |
471 | |
} |
472 | 0 | } |
473 | |
}); |
474 | |
|
475 | 0 | } |
476 | |
|
477 | |
@Override |
478 | |
public void onRequestFail(Throwable cause) { |
479 | 0 | GWT.log("Unable to retrieve model for validation and save", cause); |
480 | 0 | } |
481 | |
}); |
482 | 0 | } |
483 | |
|
484 | |
private void doCancel() { |
485 | 0 | Application.navigate(AppLocations.Locations.CURRICULUM_MANAGEMENT.getLocation()); |
486 | 0 | } |
487 | |
|
488 | |
@Override |
489 | |
protected void doSave() { |
490 | 0 | doSave(NO_OP_CALLBACK); |
491 | 0 | } |
492 | |
|
493 | |
private void saveData(final Callback<Boolean> okCallback) { |
494 | 0 | programRemoteService.saveData(programModel.getRoot(), new AbstractCallback<DataSaveResult>(ProgramProperties.get().common_savingData()) { |
495 | |
@Override |
496 | |
public void onSuccess(DataSaveResult result) { |
497 | 0 | super.onSuccess(result); |
498 | |
|
499 | |
|
500 | 0 | clearAllWarnings(); |
501 | 0 | Application.getApplicationContext().clearValidationWarnings(); |
502 | |
|
503 | 0 | List<ValidationResultInfo> validationResults = result.getValidationResults(); |
504 | 0 | Application.getApplicationContext().addValidationWarnings(validationResults); |
505 | 0 | if (ValidatorClientUtils.hasErrors(validationResults)) { |
506 | 0 | ProgramUtils.retrofitValidationResults(validationResults); |
507 | 0 | isValid(validationResults, false, true); |
508 | 0 | ProgramUtils.handleValidationErrorsForSpecializations(validationResults, programModel); |
509 | |
|
510 | |
|
511 | 0 | Data currentVariations = getDataProperty(ProgramConstants.VARIATIONS); |
512 | |
|
513 | 0 | existingVariationIds.clear(); |
514 | |
|
515 | 0 | for (Iterator<Property> iter = currentVariations.iterator();iter.hasNext();) { |
516 | 0 | Property prop = iter.next(); |
517 | 0 | String existingId = (String) ((Data) prop.getValue()).get(ProgramConstants.ID); |
518 | 0 | if(existingId==null){ |
519 | 0 | iter.remove(); |
520 | |
}else{ |
521 | 0 | existingVariationIds.add(existingId); |
522 | |
} |
523 | 0 | } |
524 | |
|
525 | 0 | okCallback.exec(false); |
526 | 0 | } else { |
527 | 0 | resetFieldInteractionFlag(); |
528 | 0 | configurer.applyPermissions(); |
529 | 0 | handleSpecializations(); |
530 | 0 | throwAfterSaveEvent(); |
531 | 0 | HistoryManager.logHistoryChange(); |
532 | 0 | ViewContext viewContext = getViewContext(); |
533 | 0 | boolean newProgram = true; |
534 | 0 | if (viewContext.getIdType() == IdType.COPY_OF_OBJECT_ID || viewContext.getIdType() == IdType.OBJECT_ID) |
535 | 0 | newProgram = false; |
536 | 0 | viewContext.setId(getStringProperty(ProgramConstants.ID)); |
537 | 0 | viewContext.setIdType(IdType.OBJECT_ID); |
538 | |
|
539 | 0 | if (ValidatorClientUtils.hasWarnings(validationResults)){ |
540 | |
|
541 | 0 | isValid(result.getValidationResults(), false, true); |
542 | 0 | KSNotifier.show("Saved with Warnings"); |
543 | |
} else { |
544 | 0 | KSNotifier.show(ProgramProperties.get().common_successfulSave()); |
545 | |
} |
546 | |
|
547 | |
|
548 | 0 | ViewContext docContext = new ViewContext(); |
549 | 0 | docContext.setId(getStringProperty(ProgramConstants.ID)); |
550 | 0 | docContext.setIdType(IdType.OBJECT_ID); |
551 | 0 | docContext.setAttribute(ProgramConstants.TYPE, ProgramConstants.MAJOR_LU_TYPE_ID + '/' + ProgramSections.PROGRAM_DETAILS_VIEW); |
552 | 0 | RecentlyViewedHelper.addDocument(getProgramName(), |
553 | |
HistoryManager.appendContext(AppLocations.Locations.VIEW_PROGRAM.getLocation(), docContext)); |
554 | |
|
555 | 0 | if (newProgram) |
556 | |
{ |
557 | 0 | refreshModelAndView(result); |
558 | 0 | okCallback.exec(true); |
559 | 0 | processCurrentView(); |
560 | |
} else |
561 | |
{ |
562 | 0 | programRemoteService.getData(getViewContext().getId(), new AbstractCallback<Data>(ProgramProperties.get().common_retrievingData()) { |
563 | |
|
564 | |
@Override |
565 | |
public void onFailure(Throwable caught) { |
566 | 0 | super.onFailure(caught); |
567 | 0 | okCallback.exec(false); |
568 | 0 | } |
569 | |
|
570 | |
@Override |
571 | |
public void onSuccess(Data result) { |
572 | 0 | super.onSuccess(result); |
573 | 0 | if (result != null) { |
574 | 0 | programModel.setRoot(result); |
575 | |
} |
576 | 0 | setHeaderTitle(); |
577 | 0 | setStatus(); |
578 | 0 | reqDataModel.retrieveProgramRequirements(MajorEditController.this, ProgramConstants.PROGRAM_MODEL_ID, new Callback<Boolean>() { |
579 | |
@Override |
580 | |
public void exec(Boolean result) { |
581 | 0 | okCallback.exec(true); |
582 | 0 | processCurrentView(); |
583 | 0 | } |
584 | |
}); |
585 | 0 | } |
586 | |
}); |
587 | |
} |
588 | |
} |
589 | 0 | } |
590 | |
}); |
591 | 0 | } |
592 | |
|
593 | |
private void processCurrentView() { |
594 | 0 | Enum<?> currentView = getCurrentViewEnum(); |
595 | 0 | if (currentView.name().equals(ProgramSections.VIEW_ALL.name())) { |
596 | 0 | HistoryManager.navigate(AppLocations.Locations.VIEW_PROGRAM.getLocation(), getViewContext()); |
597 | |
} else { |
598 | 0 | showView(currentView); |
599 | |
} |
600 | 0 | } |
601 | |
|
602 | |
|
603 | |
|
604 | |
|
605 | |
private void handleSpecializations() { |
606 | 0 | String newVariationId = null; |
607 | 0 | Data variations = programModel.get(ProgramConstants.VARIATIONS); |
608 | 0 | for (Data.Property prop : variations) { |
609 | 0 | String varId = (String) ((Data) prop.getValue()).get(ProgramConstants.ID); |
610 | 0 | if (!existingVariationIds.contains(varId)) { |
611 | 0 | newVariationId = varId; |
612 | 0 | existingVariationIds.add(newVariationId); |
613 | 0 | break; |
614 | |
} |
615 | 0 | } |
616 | 0 | if (newVariationId != null) { |
617 | 0 | eventBus.fireEvent(new SpecializationCreatedEvent(newVariationId)); |
618 | |
} else { |
619 | 0 | eventBus.fireEvent(new SpecializationUpdateEvent(variations)); |
620 | |
} |
621 | 0 | } |
622 | |
|
623 | |
private void throwAfterSaveEvent() { |
624 | 0 | eventBus.fireEvent(new AfterSaveEvent(programModel, this)); |
625 | 0 | } |
626 | |
|
627 | |
@Override |
628 | |
public void onModelLoadedEvent() { |
629 | 0 | Enum<?> changeSection = ProgramRegistry.getSection(); |
630 | 0 | if (changeSection != null) { |
631 | 0 | showView(changeSection); |
632 | 0 | ProgramRegistry.setSection(null); |
633 | |
} else { |
634 | 0 | String id = getStringProperty(ProgramConstants.ID); |
635 | 0 | if (id == null) { |
636 | 0 | showView(ProgramSections.PROGRAM_DETAILS_EDIT); |
637 | |
} else { |
638 | 0 | showView(ProgramSections.SUMMARY); |
639 | |
} |
640 | |
} |
641 | |
|
642 | 0 | } |
643 | |
|
644 | |
@Override |
645 | |
public void beforeShow(final Callback<Boolean> onReadyCallback) { |
646 | 0 | if(!initialized){ |
647 | 0 | Application.getApplicationContext().clearCrossConstraintMap(null); |
648 | 0 | Application.getApplicationContext().clearPathToFieldMapping(null); |
649 | |
} |
650 | |
|
651 | 0 | Application.getApplicationContext().setParentPath(""); |
652 | 0 | super.beforeShow(onReadyCallback); |
653 | 0 | } |
654 | |
|
655 | |
|
656 | |
|
657 | |
@Override |
658 | |
public <V extends Enum<?>> void showView(V viewType, |
659 | |
final Callback<Boolean> onReadyCallback) { |
660 | 0 | Callback<Boolean> updateCrossConstraintsCallback = new Callback<Boolean>(){ |
661 | |
public void exec(Boolean result) { |
662 | 0 | onReadyCallback.exec(result); |
663 | 0 | for(HasCrossConstraints crossConstraint:Application.getApplicationContext().getCrossConstraints(null)){ |
664 | 0 | crossConstraint.reprocessWithUpdatedConstraints(); |
665 | |
} |
666 | 0 | showWarnings(); |
667 | 0 | } |
668 | |
}; |
669 | 0 | super.showView(viewType, updateCrossConstraintsCallback); |
670 | 0 | } |
671 | |
|
672 | |
|
673 | |
@Override |
674 | |
public void beforeViewChange(final Enum<?> viewChangingTo, final Callback<Boolean> okToChangeCallback){ |
675 | 0 | final Callback<Boolean> reallyOkToChange = new Callback<Boolean>() { |
676 | |
|
677 | |
@Override |
678 | |
public void exec(Boolean result) { |
679 | 0 | if (result) { |
680 | 0 | if (LUMViews.VARIATION_EDIT.equals(viewChangingTo)) { |
681 | 0 | getView(ProgramSections.MANAGE_BODIES_EDIT, new Callback<View>() { |
682 | |
@Override |
683 | |
public void exec(final View view) { |
684 | 0 | if (view != null && view instanceof SectionView) { |
685 | 0 | requestModel(new ModelRequestCallback<DataModel>() { |
686 | |
public void onModelReady(DataModel model) { |
687 | 0 | ((SectionView) view).updateWidgetData(model); |
688 | 0 | okToChangeCallback.exec(true); |
689 | 0 | } |
690 | |
|
691 | |
public void onRequestFail(Throwable cause) { |
692 | 0 | okToChangeCallback.exec(false); |
693 | 0 | } |
694 | |
}); |
695 | |
} else { |
696 | 0 | okToChangeCallback.exec(true); |
697 | |
} |
698 | 0 | } |
699 | |
}); |
700 | |
} else { |
701 | 0 | okToChangeCallback.exec(true); |
702 | |
} |
703 | |
} |
704 | 0 | } |
705 | |
}; |
706 | 0 | super.beforeViewChange(viewChangingTo, reallyOkToChange); |
707 | 0 | this.showExport(isExportButtonActive()); |
708 | 0 | } |
709 | |
|
710 | |
public ProgramRequirementsDataModel getReqDataModel() { |
711 | 0 | return reqDataModel; |
712 | |
} |
713 | |
|
714 | |
public ProgramRequirementsDataModel getReqDataModelComp() { |
715 | 0 | return reqDataModelComp; |
716 | |
} |
717 | |
} |