/** * <a href="http://www.openolat.org"> * OpenOLAT - Online Learning and Training</a><br> * <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 the * <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a> * <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> * Initial code contributed and copyrighted by<br> * frentix GmbH, http://www.frentix.com * <p> */ package org.olat.modules.qpool.ui.admin; import org.olat.core.CoreSpringFactory; import org.olat.core.gui.UserRequest; import org.olat.core.gui.components.form.flexible.FormItemContainer; import org.olat.core.gui.components.form.flexible.elements.MultipleSelectionElement; import org.olat.core.gui.components.form.flexible.elements.TextElement; import org.olat.core.gui.components.form.flexible.impl.FormBasicController; 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.util.StringHelper; import org.olat.core.util.Util; import org.olat.modules.qpool.Pool; import org.olat.modules.qpool.QPoolService; import org.olat.modules.qpool.ui.QuestionsController; /** * * Initial date: 21.02.2013<br> * @author srosse, stephane.rosse@frentix.com, http://www.frentix.com * */ public class PoolEditController extends FormBasicController { private TextElement nameEl; private MultipleSelectionElement publicEl; private final Pool pool; private final QPoolService qpoolService; public PoolEditController(UserRequest ureq, WindowControl wControl, Pool pool) { super(ureq, wControl, Util.createPackageTranslator(QuestionsController.class, ureq.getLocale())); this.pool = pool; qpoolService = CoreSpringFactory.getImpl(QPoolService.class); initForm(ureq); } @Override protected void doDispose() { // } @Override protected void initForm(FormItemContainer formLayout, Controller listener, UserRequest ureq) { String name = pool == null ? "" : pool.getName(); nameEl = uifactory.addTextElement("pool.name", "pool.name", 128, name, formLayout); String[] keys = new String[]{"on"}; String[] values = new String[]{""}; publicEl = uifactory.addCheckboxesHorizontal("pool.public", formLayout, keys, values); boolean publicPool = pool == null ? false : pool.isPublicPool(); publicEl.select("on", publicPool); FormLayoutContainer buttonsCont = FormLayoutContainer.createButtonLayout("buttons", getTranslator()); buttonsCont.setRootForm(mainForm); formLayout.add(buttonsCont); uifactory.addFormSubmitButton("ok", "ok", buttonsCont); uifactory.addFormCancelButton("cancel", buttonsCont, ureq, getWindowControl()); } @Override protected boolean validateFormLogic(UserRequest ureq) { boolean allOk = true; nameEl.clearError(); if(!StringHelper.containsNonWhitespace(nameEl.getValue())) { nameEl.setErrorKey("form.mandatory.hover", null); allOk = false; } return allOk && super.validateFormLogic(ureq); } @Override protected void formOK(UserRequest ureq) { if(pool == null) { qpoolService.createPool(getIdentity(), nameEl.getValue(), publicEl.isAtLeastSelected(1)); } else { pool.setPublicPool(publicEl.isAtLeastSelected(1)); pool.setName(nameEl.getValue()); qpoolService.updatePool(pool); } fireEvent(ureq, Event.DONE_EVENT); } @Override protected void formCancelled(UserRequest ureq) { fireEvent(ureq, Event.CANCELLED_EVENT); } }