]> source.dussan.org Git - vaadin-framework.git/commitdiff
Audio component requests audio content on each client poll when in Window (#14785)
authorSergey Budkin <sergey@vaadin.com>
Wed, 1 Oct 2014 12:02:44 +0000 (15:02 +0300)
committerMarkus Koivisto <markus@vaadin.com>
Tue, 14 Oct 2014 14:58:10 +0000 (17:58 +0300)
Changed cloning implementation.

Change-Id: Ic909551e6f78a0171f87f1f432b554abb900744c

client/src/com/vaadin/client/ui/window/WindowConnector.java

index 4ee9f0c7327aa6b5a92a07f73069de054a3cbf1f..b3e3c9f70ffeacd2f4cee6b503657334d32b10e4 100644 (file)
@@ -28,6 +28,7 @@ import com.google.gwt.event.dom.client.ClickEvent;
 import com.google.gwt.event.dom.client.ClickHandler;
 import com.google.gwt.event.dom.client.DoubleClickEvent;
 import com.google.gwt.event.dom.client.DoubleClickHandler;
+import com.google.gwt.user.client.DOM;
 import com.google.gwt.user.client.Event;
 import com.google.gwt.user.client.Window;
 import com.vaadin.client.ApplicationConnection;
@@ -291,37 +292,51 @@ public class WindowConnector extends AbstractSingleComponentContainerConnector
             // the contents visible for the duration of a possible
             // 'out-animation')
 
-            // Fix for #14645 - as soon as we clone audio and video tags with
-            // autoplay attribute, they start playing immediately in background,
-            // so we have to clear them before cloning. And we can't just erase
-            // them, because there are corresponding player widgets to animate
-            Node content = getWidget().getElement().getFirstChild();
-            toggleAutoPlay(content);
-            windowClone = content.cloneNode(true);
-            toggleAutoPlay(content);
+            // Fix for #14645 and #14785 - as soon as we clone audio and video
+            // tags, they start fetching data, and playing immediately in
+            // background, in case autoplay attribute is present. Therefore we
+            // have to replace them with stubs in the clone. And we can't just
+            // erase them, because there are corresponding player widgets to
+            // animate
+            windowClone = cloneNodeFilteringMedia(getWidget().getElement()
+                    .getFirstChild());
         }
     }
 
-    private void toggleAutoPlay(Node node) {
+    private Node cloneNodeFilteringMedia(Node node) {
         if (node instanceof Element) {
-            Element el = (Element) node;
-            if ("audio".equalsIgnoreCase(el.getTagName())
-                    || "video".equalsIgnoreCase(el.getTagName())) {
-                if (el.hasAttribute("autoplay")) {
-                    el.removeAttribute("autoplay");
-                    el.setAttribute("_autoplay", "");
-                } else if (el.hasAttribute("_autoplay")) {
-                    el.removeAttribute("_autoplay");
-                    el.setAttribute("autoplay", "");
+            Element old = (Element) node;
+            if ("audio".equalsIgnoreCase(old.getTagName())
+                    || "video".equalsIgnoreCase(old.getTagName())) {
+                if (!old.hasAttribute("controls")
+                        && "audio".equalsIgnoreCase(old.getTagName())) {
+                    return null; // nothing to animate, so we won't add this to
+                                 // the clone
                 }
+                Element newEl = DOM.createElement(old.getTagName());
+                if (old.hasAttribute("controls")) {
+                    newEl.setAttribute("controls", old.getAttribute("controls"));
+                }
+                if (old.hasAttribute("style")) {
+                    newEl.setAttribute("style", old.getAttribute("style"));
+                }
+                if (old.hasAttribute("class")) {
+                    newEl.setAttribute("class", old.getAttribute("class"));
+                }
+                return newEl;
             }
         }
+        Node res = node.cloneNode(false);
         if (node.hasChildNodes()) {
             NodeList<Node> nl = node.getChildNodes();
             for (int i = 0; i < nl.getLength(); i++) {
-                toggleAutoPlay(nl.getItem(i));
+                Node clone = cloneNodeFilteringMedia(nl.getItem(i));
+                if (clone != null) {
+                    res.appendChild(clone);
+                }
             }
         }
+        return res;
     }
 
     @Override