Coverage Report - org.kuali.student.lum.program.client.credential.view.CredentialViewController
 
Classes in this File Line Coverage Branch Coverage Complexity
CredentialViewController
0%
0/22
0%
0/2
1.375
CredentialViewController$1
0%
0/12
0%
0/4
1.375
CredentialViewController$2
0%
0/3
N/A
1.375
CredentialViewController$3
0%
0/3
N/A
1.375
CredentialViewController$4
0%
0/3
N/A
1.375
 
 1  
 package org.kuali.student.lum.program.client.credential.view;
 2  
 
 3  
 import com.google.gwt.core.client.GWT;
 4  
 import com.google.gwt.event.dom.client.ChangeEvent;
 5  
 import com.google.gwt.event.dom.client.ChangeHandler;
 6  
 import com.google.gwt.event.shared.HandlerManager;
 7  
 import org.kuali.student.common.ui.client.application.KSAsyncCallback;
 8  
 import org.kuali.student.common.ui.client.application.ViewContext;
 9  
 import org.kuali.student.common.ui.client.mvc.DataModel;
 10  
 import org.kuali.student.common.ui.client.mvc.history.HistoryManager;
 11  
 import org.kuali.student.common.ui.shared.IdAttributes.IdType;
 12  
 import org.kuali.student.lum.common.client.widgets.AppLocations;
 13  
 import org.kuali.student.lum.common.client.widgets.DropdownList;
 14  
 import org.kuali.student.lum.program.client.ProgramConstants;
 15  
 import org.kuali.student.lum.program.client.ProgramRegistry;
 16  
 import org.kuali.student.lum.program.client.ProgramSections;
 17  
 import org.kuali.student.lum.program.client.ProgramStatus;
 18  
 import org.kuali.student.lum.program.client.credential.CredentialController;
 19  
 import org.kuali.student.lum.program.client.events.ModelLoadedEvent;
 20  
 import org.kuali.student.lum.program.client.events.ProgramViewEvent;
 21  
 import org.kuali.student.lum.program.client.major.ActionType;
 22  
 
 23  
 /**
 24  
  * @author Igor
 25  
  */
 26  0
 public class CredentialViewController extends CredentialController {
 27  
     /**
 28  
      * Initialize the action drop-down with a list of values.  Note that these values
 29  
      * will be changed further down in the code depending on if we are working with the latest 
 30  
      * version of the program.
 31  
      */
 32  0
     private final DropdownList actionBox = new DropdownList(ActionType.getValuesForCredentialProgram(false));
 33  
 
 34  
     /**
 35  
      * Constructor.
 36  
      *
 37  
      * @param programModel
 38  
      */
 39  
     public CredentialViewController(DataModel programModel, ViewContext viewContext, HandlerManager eventBus) {
 40  0
         super(programModel, viewContext, eventBus);
 41  0
         configurer = GWT.create(CredentialViewConfigurer.class);
 42  0
         bind();
 43  0
     }
 44  
 
 45  
     private void bind() {
 46  0
         actionBox.addChangeHandler(new ChangeHandler() {
 47  
             @Override
 48  
             public void onChange(ChangeEvent event) {
 49  0
                 ActionType actionType = ActionType.of(actionBox.getSelectedValue());
 50  0
                 ViewContext viewContext = getViewContext();
 51  0
                 if (actionType == ActionType.MODIFY) {
 52  0
                     ProgramRegistry.setSection(ProgramSections.getEditSection(getCurrentViewEnum()));
 53  0
                     HistoryManager.navigate(AppLocations.Locations.EDIT_BACC_PROGRAM.getLocation(), getViewContext());
 54  0
                 } else if (actionType == ActionType.MODIFY_VERSION) {
 55  0
                     String versionIndId = getStringProperty(ProgramConstants.VERSION_IND_ID);
 56  0
                     viewContext.setId(versionIndId);
 57  0
                     viewContext.setIdType(IdType.COPY_OF_OBJECT_ID);
 58  0
                     HistoryManager.navigate(AppLocations.Locations.EDIT_BACC_PROGRAM.getLocation(), viewContext);
 59  
                 }
 60  0
             }
 61  
         });
 62  0
         eventBus.addHandler(ProgramViewEvent.TYPE, new ProgramViewEvent.Handler() {
 63  
             @Override
 64  
             public void onEvent(ProgramViewEvent event) {
 65  0
                 actionBox.setSelectedIndex(0);
 66  0
             }
 67  
         });
 68  0
         eventBus.addHandler(ModelLoadedEvent.TYPE, new ModelLoadedEvent.Handler() {
 69  
             @Override
 70  
             public void onEvent(ModelLoadedEvent event) {
 71  0
                 resetActionList();
 72  0
             }
 73  
         });
 74  0
     }
 75  
 
 76  
     @Override
 77  
     protected void configureView() {
 78  0
         super.configureView();
 79  0
         addContentWidget(actionBox);
 80  0
         initialized = true;
 81  0
     }
 82  
 
 83  
     protected void resetActionList() {
 84  
         //Only allow modify with version option for an active course that id also the latest version
 85  0
         ProgramStatus status = ProgramStatus.of(programModel);
 86  0
         String versionIndId = getStringProperty(ProgramConstants.VERSION_IND_ID);
 87  0
         Long sequenceNumber = programModel.get(ProgramConstants.VERSION_SEQUENCE_NUMBER);
 88  
 
 89  0
         actionBox.clear();
 90  0
         if (status == ProgramStatus.ACTIVE) {
 91  0
             programRemoteService.isLatestVersion(versionIndId, sequenceNumber, new KSAsyncCallback<Boolean>() {
 92  
                 public void onSuccess(Boolean isLatest) {
 93  0
                     actionBox.setList(ActionType.getValuesForCredentialProgram(isLatest));
 94  0
                 }
 95  
             });
 96  
         } else {
 97  0
             actionBox.setList(ActionType.getValuesForCredentialProgram(false));
 98  
         }
 99  0
     }
 100  
 }