/** * 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. * <hr> * <a href="http://www.openolat.org"> * OpenOLAT - Online Learning and Training</a><br> * This file has been modified by the OpenOLAT community. Changes are licensed * under the Apache 2.0 license as the original file. * <p> * Initial code contributed and copyrighted by<br> * Technische Universitaet Chemnitz Lehrstuhl Technische Informatik<br> * <br> * Author Marcel Karras (toka@freebits.de)<br> * Author Norbert Englisch (norbert.englisch@informatik.tu-chemnitz.de)<br> * Author Sebastian Fritzsche (seb.fritzsche@googlemail.com) */ package de.tuchemnitz.wizard.workflows.coursecreation.steps; import org.olat.core.gui.UserRequest; import org.olat.core.gui.components.form.flexible.FormItem; import org.olat.core.gui.components.form.flexible.FormItemContainer; import org.olat.core.gui.components.form.flexible.impl.Form; import org.olat.core.gui.components.form.flexible.impl.FormEvent; import org.olat.core.gui.components.form.flexible.impl.FormLayoutContainer; 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.generic.wizard.BasicStep; import org.olat.core.gui.control.generic.wizard.PrevNextFinishConfig; import org.olat.core.gui.control.generic.wizard.StepFormBasicController; import org.olat.core.gui.control.generic.wizard.StepFormController; import org.olat.core.gui.control.generic.wizard.StepsEvent; import org.olat.core.gui.control.generic.wizard.StepsRunContext; import org.olat.core.gui.translator.Translator; import org.olat.core.util.Util; import org.olat.course.CourseFactory; import org.olat.course.ICourse; import org.olat.repository.CatalogEntry; import org.olat.repository.RepositoryEntry; import org.olat.repository.RepositoryManager; import de.tuchemnitz.wizard.helper.catalog.CatalogInsertController; import de.tuchemnitz.wizard.workflows.coursecreation.CourseCreationHelper; import de.tuchemnitz.wizard.workflows.coursecreation.model.CourseCreationConfiguration; /** * * Description:<br> * Second step of course creation wizard: * <br/>- choose catalog path * * <P> * @author Marcel Karras (toka@freebits.de) * @author Norbert Englisch (norbert.englisch@informatik.tu-chemnitz.de) * @author Sebastian Fritzsche (seb.fritzsche@googlemail.com) * @author skoeber */ class CcStep01 extends BasicStep { private PrevNextFinishConfig prevNextConfig; private final RepositoryEntry repoEntry; private final CourseCreationConfiguration courseConfig; /** * Second step of the course creation wizard * @param ureq * @param courseConfig * @param repoEntry */ public CcStep01(UserRequest ureq, CourseCreationConfiguration courseConfig, final RepositoryEntry repoEntry) { super(ureq); this.repoEntry = repoEntry; this.courseConfig = courseConfig; setI18nTitleAndDescr("coursecreation.catalog.title", "coursecreation.catalog.description"); setNextStep(new CcStep02(ureq, courseConfig)); prevNextConfig = PrevNextFinishConfig.BACK_NEXT; } @Override public PrevNextFinishConfig getInitialPrevNextFinishConfig() { return prevNextConfig; } @Override public StepFormController getStepController(UserRequest ureq, WindowControl windowControl, StepsRunContext stepsRunContext, Form form) { StepFormController stepP = new CcStep01Form(ureq, windowControl, form, stepsRunContext, null); return stepP; } public CourseCreationConfiguration getCourseConfig() { return courseConfig; } public RepositoryEntry getRepoEntry() { return repoEntry; } class CcStep01Form extends StepFormBasicController { private Translator translator; private FormLayoutContainer fic; private CatalogInsertController cic; public CcStep01Form(UserRequest ureq, WindowControl wControl, Form rootForm, StepsRunContext runContext, String customLayoutPageName) { super(ureq, wControl, rootForm, runContext, LAYOUT_VERTICAL, customLayoutPageName); translator = Util.createPackageTranslator(CourseCreationHelper.class, ureq.getLocale()); super.setTranslator(translator); initForm(ureq); } @Override protected void formInnerEvent(UserRequest ureq, FormItem source, FormEvent event) { super.formInnerEvent(ureq, source, event); if (source.getName().equals(Event.BACK_EVENT.getCommand())) { cic.init(); } else { // save item finishWorkflowItem(); } } @Override protected void doDispose() { // nothing to do here } @Override protected boolean validateFormLogic(UserRequest ureq) { return true; } @Override protected void formOK(UserRequest ureq) { fireEvent(ureq, StepsEvent.ACTIVATE_NEXT); } @Override protected void initForm(FormItemContainer formLayout, Controller listener, UserRequest ureq) { fic = FormLayoutContainer.createCustomFormLayout("cc01", this.getTranslator(), this.velocity_root + "/CcStep01_form.html"); formLayout.add(fic); // load course ICourse course = CourseFactory.loadCourse(getRepoEntry()); // show catalog selection tree if (course != null) { cic = new CatalogInsertController(ureq, getWindowControl(), RepositoryManager.getInstance().lookupRepositoryEntry(course, false), getCourseConfig()); cic.addControllerListener(this); fic.put("cc", cic.getInitialComponent()); } cic.init(); } public void finishWorkflowItem() { if (cic != null) { // close selection tree and remember selection CatalogEntry ce = cic.getSelectedParent(); getCourseConfig().setSelectedCatalogEntry(ce); } } public boolean isValid(UserRequest ureq) { return validateFormLogic(ureq); } } }