Package org.olat.course.nodes.st

Source Code of org.olat.course.nodes.st.PeekViewWrapperController

/**
* 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) frentix GmbH<br>
* http://www.frentix.com<br>
* <p>
*/
package org.olat.course.nodes.st;

import org.olat.core.gui.UserRequest;
import org.olat.core.gui.components.Component;
import org.olat.core.gui.components.htmlsite.OlatCmdEvent;
import org.olat.core.gui.components.link.Link;
import org.olat.core.gui.components.link.LinkFactory;
import org.olat.core.gui.components.velocity.VelocityContainer;
import org.olat.core.gui.control.Controller;
import org.olat.core.gui.control.Event;
import org.olat.core.gui.control.WindowControl;
import org.olat.core.gui.control.controller.BasicController;
import org.olat.course.nodes.CourseNode;
import org.olat.course.nodes.CourseNodeFactory;

/**
* <h3>Description:</h3>
* <p>
* The PeekViewWrapperController displays the course node type icon, the node
* title and description and an optional peekview controller if provided.
* <p>
* <h4>Events fired by this Controller</h4>
* <ul>
* <li>none</li>
* </ul>
* <p>
* Initial Date: 15.09.2009 <br>
*
* @author gnaegi, gnaegi@frentix.com, www.frentix.com
*/
public class PeekViewWrapperController extends BasicController {
  private VelocityContainer peekViewWrapperVC;
  private Link nodeLink;
  private Controller peekViewController;
 
  /**
   * Constructor
   *
   * @param ureq
   * @param wControl
   * @param courseNode
   * @param peekViewController an optional peek view implementation for this
   *          node or NULL if not available
   */
  public PeekViewWrapperController(UserRequest ureq, WindowControl wControl, CourseNode courseNode, Controller peekViewController) {
    super(ureq, wControl);

    peekViewWrapperVC = createVelocityContainer("peekViewWrapper");
    // Add course node to get title etc
    peekViewWrapperVC.contextPut("coursenode", courseNode);
    // Add link to jump to course node
    nodeLink = LinkFactory.createLink("nodeLink", peekViewWrapperVC, this);
    nodeLink.setCustomDisplayText(courseNode.getShortTitle());
    // Add css class for course node type
    String iconCSSClass = CourseNodeFactory.getInstance().getCourseNodeConfiguration(courseNode.getType()).getIconCSSClass();
    nodeLink.setCustomEnabledLinkCSS("b_with_small_icon_left o_gotoNode " + iconCSSClass);
    nodeLink.setUserObject(courseNode.getIdent());
    // Add optional peekViewController
    if (peekViewController != null) {
      this.peekViewController = peekViewController;
      peekViewWrapperVC.put("peekViewController", this.peekViewController.getInitialComponent());
      // register for auto cleanup on dispose
      listenTo(this.peekViewController);
    }
    //
    putInitialPanel(peekViewWrapperVC);
  }

  /**
   * @see org.olat.core.gui.control.DefaultController#doDispose()
   */
  @Override
  protected void doDispose() {
  // nothing to dispose
  }

  /**
   * @see org.olat.core.gui.control.DefaultController#event(org.olat.core.gui.UserRequest,
   *      org.olat.core.gui.components.Component,
   *      org.olat.core.gui.control.Event)
   */
  @Override
  protected void event(UserRequest ureq, Component source, Event event) {
    if (source == nodeLink) {
      // get node ID and fire activation event
      String nodeID = (String) nodeLink.getUserObject();
      fireEvent(ureq, new OlatCmdEvent(OlatCmdEvent.GOTONODE_CMD, nodeID));
    }
  }

  @Override
  protected void event(UserRequest ureq, Controller source, Event event) {
    if (source == peekViewController) {
      // forward event to ST controller
      fireEvent(ureq, event);
    }
  }
 
 
}
TOP

Related Classes of org.olat.course.nodes.st.PeekViewWrapperController

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.