/* * Copyright 2011 Vaadin Ltd. * * 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. */ package com.vaadin.terminal.gwt.client.ui; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import com.google.gwt.dom.client.Document; import com.google.gwt.dom.client.Node; import com.google.gwt.dom.client.NodeList; import com.google.gwt.dom.client.ObjectElement; import com.google.gwt.dom.client.Style; import com.google.gwt.dom.client.Style.Unit; import com.google.gwt.event.dom.client.DomEvent.Type; import com.google.gwt.event.shared.EventHandler; import com.google.gwt.event.shared.HandlerRegistration; import com.google.gwt.user.client.DOM; import com.google.gwt.user.client.Element; import com.google.gwt.user.client.Event; import com.google.gwt.user.client.ui.HTML; import com.vaadin.terminal.gwt.client.ApplicationConnection; import com.vaadin.terminal.gwt.client.Paintable; import com.vaadin.terminal.gwt.client.UIDL; import com.vaadin.terminal.gwt.client.Util; import com.vaadin.terminal.gwt.client.VConsole; import com.vaadin.terminal.gwt.client.VTooltip; public class VEmbedded extends HTML implements Paintable { public static final String CLICK_EVENT_IDENTIFIER = "click"; public static final String ALTERNATE_TEXT = "alt"; private static String CLASSNAME = "v-embedded"; private String height; private String width; private Element browserElement; private String type; /** * The src of browser type embeddeds is set to about:blank on detach so * unload events are properly fired on the embedded page. Store the src here * so it can be restored on attach() (#6046) */ private String src; private ApplicationConnection client; private final ClickEventHandler clickEventHandler = new ClickEventHandler( this, CLICK_EVENT_IDENTIFIER) { @Override protected HandlerRegistration registerHandler( H handler, Type type) { return addDomHandler(handler, type); } }; public VEmbedded() { setStyleName(CLASSNAME); } public void updateFromUIDL(UIDL uidl, ApplicationConnection client) { if (client.updateComponent(this, uidl, true)) { return; } this.client = client; boolean clearBrowserElement = true; clickEventHandler.handleEventHandlerRegistration(client); if (uidl.hasAttribute("type")) { type = uidl.getStringAttribute("type"); if (type.equals("image")) { addStyleName(CLASSNAME + "-image"); Element el = null; boolean created = false; NodeList nodes = getElement().getChildNodes(); if (nodes != null && nodes.getLength() == 1) { Node n = nodes.getItem(0); if (n.getNodeType() == Node.ELEMENT_NODE) { Element e = (Element) n; if (e.getTagName().equals("IMG")) { el = e; } } } if (el == null) { setHTML(""); el = DOM.createImg(); created = true; client.addPngFix(el); DOM.sinkEvents(el, Event.ONLOAD); } // Set attributes Style style = el.getStyle(); String w = uidl.getStringAttribute("width"); if (w != null) { style.setProperty("width", w); } else { style.setProperty("width", ""); } String h = uidl.getStringAttribute("height"); if (h != null) { style.setProperty("height", h); } else { style.setProperty("height", ""); } DOM.setElementProperty(el, "src", getSrc(uidl, client)); if (uidl.hasAttribute(ALTERNATE_TEXT)) { el.setPropertyString(ALTERNATE_TEXT, uidl.getStringAttribute(ALTERNATE_TEXT)); } if (created) { // insert in dom late getElement().appendChild(el); } /* * Sink tooltip events so tooltip is displayed when hovering the * image. */ sinkEvents(VTooltip.TOOLTIP_EVENTS); } else if (type.equals("browser")) { addStyleName(CLASSNAME + "-browser"); if (browserElement == null) { setHTML(""); browserElement = DOM.getFirstChild(getElement()); } src = getSrc(uidl, client); DOM.setElementAttribute(browserElement, "src", src); clearBrowserElement = false; } else { VConsole.log("Unknown Embedded type '" + type + "'"); } } else if (uidl.hasAttribute("mimetype")) { final String mime = uidl.getStringAttribute("mimetype"); if (mime.equals("application/x-shockwave-flash")) { // Handle embedding of Flash addStyleName(CLASSNAME + "-flash"); setHTML(createFlashEmbed(uidl)); } else if (mime.equals("image/svg+xml")) { addStyleName(CLASSNAME + "-svg"); String data; Map parameters = getParameters(uidl); if (parameters.get("data") == null) { data = getSrc(uidl, client); } else { data = "data:image/svg+xml," + parameters.get("data"); } setHTML(""); ObjectElement obj = Document.get().createObjectElement(); obj.setType(mime); obj.setData(data); if (width != null) { obj.getStyle().setProperty("width", "100%"); } if (height != null) { obj.getStyle().setProperty("height", "100%"); } if (uidl.hasAttribute("classid")) { obj.setAttribute("classid", uidl.getStringAttribute("classid")); } if (uidl.hasAttribute("codebase")) { obj.setAttribute("codebase", uidl.getStringAttribute("codebase")); } if (uidl.hasAttribute("codetype")) { obj.setAttribute("codetype", uidl.getStringAttribute("codetype")); } if (uidl.hasAttribute("archive")) { obj.setAttribute("archive", uidl.getStringAttribute("archive")); } if (uidl.hasAttribute("standby")) { obj.setAttribute("standby", uidl.getStringAttribute("standby")); } getElement().appendChild(obj); if (uidl.hasAttribute(ALTERNATE_TEXT)) { obj.setInnerText(uidl.getStringAttribute(ALTERNATE_TEXT)); } } else { VConsole.log("Unknown Embedded mimetype '" + mime + "'"); } } else { VConsole.log("Unknown Embedded; no type or mimetype attribute"); } if (clearBrowserElement) { browserElement = null; } } /** * Creates the Object and Embed tags for the Flash plugin so it works * cross-browser * * @param uidl * The UIDL * @return Tags concatenated into a string */ private String createFlashEmbed(UIDL uidl) { /* * To ensure cross-browser compatibility we are using the twice-cooked * method to embed flash i.e. we add a OBJECT tag for IE ActiveX and * inside it a EMBED for all other browsers. */ StringBuilder html = new StringBuilder(); // Start the object tag html.append(""); // Ensure we have an movie parameter Map parameters = getParameters(uidl); if (parameters.get("movie") == null) { parameters.put("movie", getSrc(uidl, client)); } // Add parameters to OBJECT for (String name : parameters.keySet()) { html.append(""); } // Build inner EMBED tag html.append(""); if (uidl.hasAttribute(ALTERNATE_TEXT)) { html.append(uidl.getStringAttribute(ALTERNATE_TEXT)); } // End object tag html.append(""); return html.toString(); } /** * Returns a map (name -> value) of all parameters in the UIDL. * * @param uidl * @return */ private static Map getParameters(UIDL uidl) { Map parameters = new HashMap(); Iterator childIterator = uidl.getChildIterator(); while (childIterator.hasNext()) { Object child = childIterator.next(); if (child instanceof UIDL) { UIDL childUIDL = (UIDL) child; if (childUIDL.getTag().equals("embeddedparam")) { String name = childUIDL.getStringAttribute("name"); String value = childUIDL.getStringAttribute("value"); parameters.put(name, value); } } } return parameters; } /** * Helper to return translated src-attribute from embedded's UIDL * * @param uidl * @param client * @return */ private String getSrc(UIDL uidl, ApplicationConnection client) { String url = client.translateVaadinUri(uidl.getStringAttribute("src")); if (url == null) { return ""; } return url; } @Override public void setWidth(String width) { this.width = width; if (isDynamicHeight()) { int oldHeight = getOffsetHeight(); super.setWidth(width); int newHeight = getOffsetHeight(); /* * Must notify parent if the height changes as a result of a width * change */ if (oldHeight != newHeight) { Util.notifyParentOfSizeChange(this, false); } } else { super.setWidth(width); } } private boolean isDynamicWidth() { return width == null || width.equals(""); } private boolean isDynamicHeight() { return height == null || height.equals(""); } @Override public void setHeight(String height) { this.height = height; super.setHeight(height); } @Override protected void onDetach() { if (browserElement != null) { /* * Try to trigger an unload event on the embedded page. * * This tries to ensure e.g. that close listeners in an embedded * Vaadin application are properly invoked. (#6046) * * src was previously set to javascript:false, but this was not * enough to overcome a bug when detaching an iframe with a pdf * loaded in IE9. about:blank seems to cause the adobe reader plugin * to unload properly before the iframe is removed. (#7855) */ browserElement.setAttribute("src", "about:blank"); } super.onDetach(); } @Override protected void onAttach() { super.onAttach(); if (browserElement != null && src != null && !src.equals(browserElement.getAttribute("src"))) { // Restore the original src if detached, then re-attached browserElement.setAttribute("src", src); } } @Override public void onBrowserEvent(Event event) { super.onBrowserEvent(event); if (DOM.eventGetType(event) == Event.ONLOAD) { if ("image".equals(type)) { updateElementDynamicSizeFromImage(); } Util.notifyParentOfSizeChange(this, true); } client.handleTooltipEvent(event, this); } /** * Updates the size of the embedded component's element if size is * undefined. Without this embeddeds containing images will remain the wrong * size in certain cases (e.g. #6304). */ private void updateElementDynamicSizeFromImage() { if (isDynamicWidth()) { getElement().getStyle().setWidth( getElement().getFirstChildElement().getOffsetWidth(), Unit.PX); } if (isDynamicHeight()) { getElement().getStyle().setHeight( getElement().getFirstChildElement().getOffsetHeight(), Unit.PX); } } }