All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gwt.material.design.client.ui.MaterialCollapsible Maven / Gradle / Ivy

There is a newer version: 2.8.3
Show newest version
package gwt.material.design.client.ui;

/*
 * #%L
 * GwtMaterial
 * %%
 * Copyright (C) 2015 GwtMaterialDesign
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import com.google.gwt.dom.client.Document;
import com.google.gwt.dom.client.Element;
import com.google.gwt.user.client.ui.Widget;
import com.google.web.bindery.event.shared.HandlerRegistration;
import gwt.material.design.client.base.HasSelectables;
import gwt.material.design.client.base.MaterialWidget;
import gwt.material.design.client.constants.CollapsibleType;
import gwt.material.design.client.events.ClearActiveEvent;
import gwt.material.design.client.events.ClearActiveEvent.ClearActiveHandler;

//@formatter:off

/**
 * Collapsibles are accordion elements that expand when clicked on.
 * They allow you to hide content that is not immediately relevant
 * to the user.
 *
 * 

UiBinder Usage:

* *
 *{@code
 * // Accordion
 * 
 *   
 *   
 *     
 *       
 *     
 *     
 *       
 *     
 *   
 * 
 *
 * // Expandable
 * 
 *   
 *   
 *     
 *       
 *     
 *     
 *       
 *     
 *   
 * 
 *
 * // Popout
 * 
 *   
 *     
 *     
 *       
 *     
 *     
 *       
 *     
 *   
 * 
 * }
 * 
* * @author kevzlou7979 * @author Ben Dol * @see Material Collapsibles */ //@formatter:on public class MaterialCollapsible extends MaterialWidget implements HasSelectables { protected interface HasCollapsibleParent { void setParent(MaterialCollapsible parent); } private boolean accordion = true; private int activeIndex = -1; private Widget activeWidget; /** * Creates an empty collapsible */ public MaterialCollapsible() { super(Document.get().createULElement(), "collapsible"); enableFeature(Feature.ONLOAD_ADD_QUEUE, true); } /** * Creates a list and adds the given widgets. */ public MaterialCollapsible(final MaterialCollapsibleItem... widgets){ this(); for(final MaterialCollapsibleItem item : widgets) { add(item); } } @Override protected void onLoad() { super.onLoad(); // Setup the expansion type if (isAccordion()) { getElement().setAttribute("data-collapsible", "accordion"); } else { getElement().setAttribute("data-collapsible", "expandable"); } // Activate preset activation index if(activeIndex != -1 && activeWidget == null) { setActive(activeIndex); } // Initialize collapsible after all elements // are attached and marked as active, etc. initCollapsible(getElement(), accordion); } @Override public void add(final Widget child) { if(child instanceof MaterialCollapsibleItem) { ((MaterialCollapsibleItem) child).setParent(this); } super.add(child); } @Override public boolean remove(Widget w) { if(w instanceof MaterialCollapsibleItem) { ((MaterialCollapsibleItem) w).setParent(null); } w.removeStyleName("active"); return super.remove(w); } /** * Initialize the collapsible material component. */ protected native void initCollapsible(final Element e, boolean accordion) /*-{ $wnd.jQuery(document).ready(function(){ $wnd.jQuery(e).collapsible({ accordion: accordion }); }) }-*/; public void setType(CollapsibleType type) { switch (type) { case POPOUT: addStyleName(type.getCssName()); break; default: break; } } /** * Configure if you want this collapsible container to * accordion its child elements or use expandable. */ public void setAccordion(boolean accordion) { this.accordion = accordion; if(isAttached()) { // Since we have attached already reinitialize collapsible. initCollapsible(getElement(), accordion); } } public boolean isAccordion() { return accordion; } /** * Providing the one-based index of the * {@link MaterialCollapsibleItem} to mark as active. */ public void setActive(int index) { clearActive(); activeIndex = index; if(isAttached()) { if(index < getWidgetCount()) { activeWidget = getWidget(index - 1); if (activeWidget != null && activeWidget instanceof MaterialCollapsibleItem) { ((MaterialCollapsibleItem) activeWidget).setActive(true); } } } } public HandlerRegistration addClearActiveHandler(final ClearActiveHandler handler) { return addHandler(new ClearActiveHandler() { @Override public void onClearActive(ClearActiveEvent event) { if(isEnabled()){ handler.onClearActive(event); } } }, ClearActiveEvent.TYPE); } @Override public void clearActive() { clearActiveClass(this); ClearActiveEvent.fire(this); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy