View Javadoc
1   /**
2    * This file Copyright (c) 2018 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.ui.field;
35  
36  import com.vaadin.ui.Button;
37  import com.vaadin.ui.ComboBox;
38  import com.vaadin.ui.Component;
39  import com.vaadin.ui.CustomField;
40  import com.vaadin.ui.HorizontalLayout;
41  import com.vaadin.ui.NativeButton;
42  import com.vaadin.ui.VerticalLayout;
43  
44  
45  /**
46   * A custom field displaying a text field and a button for bringing up a component enabling to choose an item.
47   */
48  public class LinkField<T> extends CustomField<T> {
49  
50      private final VerticalLayout rootLayout = new VerticalLayout();
51      private final HorizontalLayout linkLayout = new HorizontalLayout();
52      private final Button selectButton = new NativeButton();
53      private final ComboBox<T> itemSelectField;
54  
55      private boolean editable;
56      private Component contentPreview;
57      private String buttonCaptionNew;
58      private String buttonCaptionOther;
59      private T value;
60  
61      public LinkField(ComboBox<T> innerComponent) {
62          this.itemSelectField = (ComboBox<T>) innerComponent;
63      }
64  
65      @Override
66      protected Component initContent() {
67          addStyleName("linkfield");
68  
69          rootLayout.setMargin(false);
70          rootLayout.setSizeFull();
71          rootLayout.setSpacing(true);
72  
73          itemSelectField.setCaption(null);
74          itemSelectField.setRequiredIndicatorVisible(false);
75          itemSelectField.setWidth(100, Unit.PERCENTAGE);
76          itemSelectField.addValueChangeListener(event -> {
77              // null value means "remove the currently selected link"
78              setValue(event.getValue());
79          });
80  
81          linkLayout.setSizeFull();
82          linkLayout.addComponent(itemSelectField);
83          linkLayout.setExpandRatio(itemSelectField, 1);
84          linkLayout.setSpacing(false);
85  
86          if (!isReadOnly()) {
87              selectButton.addStyleName("magnoliabutton");
88              linkLayout.addComponent(selectButton);
89              linkLayout.setExpandRatio(selectButton, 0);
90          }
91  
92          rootLayout.addComponent(linkLayout);
93  
94          addValueChangeListener(event -> updateComponents());
95          updateComponents();
96  
97          return rootLayout;
98      }
99  
100     @Override
101     protected void doSetValue(T value) {
102         this.value = value;
103         this.itemSelectField.setValue(value);
104     }
105 
106     @Override
107     public T getValue() {
108         return value;
109     }
110 
111     @Override
112     public boolean isEmpty() {
113         return getValue() == null;
114     }
115 
116     public boolean isEditable() {
117         return editable;
118     }
119 
120     public void setEditable(boolean editable) {
121         this.editable = editable;
122     }
123 
124     public void setButtonCaptionNew(String buttonCaptionNew) {
125         this.buttonCaptionNew = buttonCaptionNew;
126     }
127 
128     public void setButtonCaptionOther(String buttonCaptionOther) {
129         this.buttonCaptionOther = buttonCaptionOther;
130     }
131 
132     public void setDisableOnClick(boolean disable) {
133         selectButton.setDisableOnClick(disable);
134     }
135 
136     public void addClickListener(Button.ClickListener buttonClickListener) {
137         selectButton.addClickListener(buttonClickListener);
138     }
139 
140     @Override
141     public void setEnabled(boolean enabled) {
142         super.setEnabled(enabled);
143         itemSelectField.setEnabled(enabled);
144         selectButton.setEnabled(enabled);
145     }
146 
147     public void setContentPreview(Component contentPreviewComponent) {
148         if (contentPreview != null) {
149             rootLayout.removeComponent(contentPreview);
150         }
151         rootLayout.addComponentAsFirst(contentPreviewComponent);
152         contentPreview = contentPreviewComponent;
153     }
154 
155     /*
156      * Set text field as read only if desired. In this case, remove the add button, else update the button label.
157      */
158     private void updateComponents() {
159         if (!isEditable() && !isEmpty()) {
160             itemSelectField.setReadOnly(true);
161             if (linkLayout.getComponentIndex(selectButton) != -1) {
162                 linkLayout.removeComponent(selectButton);
163             }
164         } else {
165             setButtonCaptionAndDescription();
166 
167         }
168     }
169 
170     private void setButtonCaptionAndDescription() {
171         final String caption = isEmpty() ? buttonCaptionNew : buttonCaptionOther;
172         selectButton.setCaption(caption);
173         selectButton.setDescription(caption);
174     }
175 }