Package org.olat.commons.calendar.ui

Source Code of org.olat.commons.calendar.ui.CalendarSelectionModel

/**
* OLAT - Online Learning and Training<br>
* http://www.olat.org
* <p>
* Licensed under the Apache License, Version 2.0 (the "License"); <br>
* you may not use this file except in compliance with the License.<br>
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing,<br>
* software distributed under the License is distributed on an "AS IS" BASIS, <br>
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
* See the License for the specific language governing permissions and <br>
* limitations under the License.
* <p>
* Copyright (c) since 2004 at Multimedia- & E-Learning Services (MELS),<br>
* University of Zurich, Switzerland.
* <p>
*/

package org.olat.commons.calendar.ui;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;

import org.olat.commons.calendar.CalendarManager;
import org.olat.commons.calendar.CalendarManagerFactory;
import org.olat.commons.calendar.model.Kalendar;
import org.olat.commons.calendar.model.KalendarEvent;
import org.olat.commons.calendar.ui.components.KalendarRenderWrapper;
import org.olat.core.gui.UserRequest;
import org.olat.core.gui.components.Component;
import org.olat.core.gui.components.tree.GenericTreeModel;
import org.olat.core.gui.components.tree.GenericTreeNode;
import org.olat.core.gui.components.tree.SelectionTree;
import org.olat.core.gui.components.tree.TreeEvent;
import org.olat.core.gui.components.tree.TreeModel;
import org.olat.core.gui.components.velocity.VelocityContainer;
import org.olat.core.gui.control.DefaultController;
import org.olat.core.gui.control.Event;
import org.olat.core.gui.control.WindowControl;
import org.olat.core.gui.translator.Translator;
import org.olat.core.util.Util;
import org.olat.core.util.xml.XStreamHelper;

public class CopyEventToCalendarController extends DefaultController {

  private static final String VELOCITY_ROOT = Util.getPackageVelocityRoot(CalendarManager.class);
 
  private Translator translator;
  private VelocityContainer mainVC;
  private SelectionTree calendarSelectionTree;
  private KalendarEvent kalendarEvent;

  public CopyEventToCalendarController(KalendarEvent kalendarEvent, Collection calendars, Translator translator, WindowControl wControl) {
    super(wControl);
    this.translator = translator;
    this.kalendarEvent = kalendarEvent;
   
    mainVC = new VelocityContainer("calCopy", VELOCITY_ROOT + "/calCopy.html", translator, this);
    calendarSelectionTree = new SelectionTree("calSelection", translator);
    calendarSelectionTree.addListener(this);
    calendarSelectionTree.setMultiselect(true);
    calendarSelectionTree.setFormButtonKey("cal.copy.submit");
    calendarSelectionTree.setShowCancelButton(true);
    calendarSelectionTree.setTreeModel(new CalendarSelectionModel(calendars, kalendarEvent.getCalendar(), translator));
    mainVC.put("tree", calendarSelectionTree);
   
    setInitialComponent(mainVC);
  }

 
  public void event(UserRequest ureq, Component source, Event event) {
    if (source == calendarSelectionTree) {
      TreeEvent te = (TreeEvent) event;
      if (event.getCommand().equals(TreeEvent.COMMAND_TREENODES_SELECTED)) {
        // rebuild kalendar event links
        List selectedNodesIDS = te.getNodeIds();
        TreeModel model = calendarSelectionTree.getTreeModel();
        CalendarManager calendarManager = CalendarManagerFactory.getInstance().getCalendarManager();
        for (Iterator iter = selectedNodesIDS.iterator(); iter.hasNext();) {
          String nodeId = (String)iter.next();
          GenericTreeNode node = (GenericTreeNode)model.getNodeById(nodeId);
          KalendarRenderWrapper calendarWrapper = (KalendarRenderWrapper)node.getUserObject();
          Kalendar cal = calendarWrapper.getKalendar();
          KalendarEvent clonedKalendarEvent = (KalendarEvent)XStreamHelper.xstreamClone(kalendarEvent);
          if (clonedKalendarEvent.getKalendarEventLinks().size() != 0)
            clonedKalendarEvent.setKalendarEventLinks(new ArrayList());
          calendarManager.addEventTo(cal, clonedKalendarEvent);
//          calendarManager.persistCalendar(cal);     
        }
        fireEvent(ureq, Event.DONE_EVENT);
      } else {
        fireEvent(ureq, Event.CANCELLED_EVENT);
      }
    }
  }

  protected void doDispose() {
    // nothing to do here
  }


}

class CalendarSelectionModel extends GenericTreeModel {

  public CalendarSelectionModel(Collection calendars, Kalendar excludeKalendar, Translator translator) {
    GenericTreeNode rootNode = new GenericTreeNode(translator.translate("cal.copy.rootnode"), null);
    for (Iterator iter_calendars = calendars.iterator(); iter_calendars.hasNext();) {
      KalendarRenderWrapper calendarWrapper = (KalendarRenderWrapper) iter_calendars.next();
      GenericTreeNode node = new GenericTreeNode(calendarWrapper.getKalendarConfig().getDisplayName(), calendarWrapper);
      node.setIdent(calendarWrapper.getKalendar().getCalendarID());
      if (calendarWrapper.getKalendar().getCalendarID().equals(excludeKalendar.getCalendarID())) {
        // this is the calendar, the event comes from
        node.setSelected(true);
        node.setAccessible(false);
      } else {
        node.setAccessible(calendarWrapper.getAccess() == KalendarRenderWrapper.ACCESS_READ_WRITE);
      }
      rootNode.addChild(node);
    }
    setRootNode(rootNode);
  }
 
}
TOP

Related Classes of org.olat.commons.calendar.ui.CalendarSelectionModel

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.