package org.activityinfo.ui.client.component.form.field; /* * #%L * ActivityInfo Server * %% * Copyright (C) 2009 - 2013 UNICEF * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. * #L% */ import com.google.common.collect.Sets; import com.google.gwt.cell.client.ValueUpdater; import com.google.gwt.event.dom.client.ChangeEvent; import com.google.gwt.event.dom.client.ChangeHandler; import com.google.gwt.user.client.ui.ListBox; import com.google.gwt.user.client.ui.Widget; import org.activityinfo.model.form.FormInstance; import org.activityinfo.model.form.FormInstanceLabeler; import org.activityinfo.model.resource.ResourceId; import org.activityinfo.model.type.FieldType; import org.activityinfo.model.type.ReferenceValue; import org.activityinfo.promise.Promise; import java.util.List; import java.util.Set; /** * @author yuriyz on 2/10/14. */ public class ComboBoxFieldWidget implements ReferenceFieldWidget { private final ListBox dropBox; private final List<FormInstance> range; public ComboBoxFieldWidget(final List<FormInstance> range, final ValueUpdater<ReferenceValue> valueUpdater) { dropBox = new ListBox(false); dropBox.addStyleName("form-control"); this.range = range; for (FormInstance instance : range) { dropBox.addItem( FormInstanceLabeler.getLabel(instance), instance.getId().asString()); } dropBox.addChangeHandler(new ChangeHandler() { @Override public void onChange(ChangeEvent event) { valueUpdater.update(updatedValue()); } }); } @Override public void setReadOnly(boolean readOnly) { dropBox.setEnabled(!readOnly); } private ReferenceValue updatedValue() { Set<ResourceId> value = Sets.newHashSet(); int selectedIndex = dropBox.getSelectedIndex(); if(selectedIndex != -1) { value.add(ResourceId.valueOf(dropBox.getValue(selectedIndex))); } return new ReferenceValue(value); } @Override public Promise<Void> setValue(ReferenceValue value) { for(int i=0;i!=dropBox.getSelectedIndex();++i) { ResourceId id = ResourceId.valueOf(dropBox.getValue(i)); if(value.getResourceIds().contains(id)) { dropBox.setSelectedIndex(i); break; } } return Promise.done(); } @Override public void clearValue() { setValue(ReferenceValue.EMPTY); } @Override public void setType(FieldType type) { } @Override public Widget asWidget() { return dropBox; } }