| OLD | NEW |
| (Empty) |
| 1 <!-- | |
| 2 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 3 // Use of this source code is governed by a BSD-style license that can be | |
| 4 // found in the LICENSE file. | |
| 5 --> | |
| 6 <import src="sky-element.sky" /> | |
| 7 <import src="sky-ink-splash.sky" /> | |
| 8 <script> | |
| 9 import "dart:sky"; | |
| 10 | |
| 11 HTMLStyleElement _kStyleElement; | |
| 12 | |
| 13 class MaterialElement extends SkyElement { | |
| 14 Set<SkyInkSplash> _activeSplashes = new Set(); | |
| 15 bool _didAddTransformHack = false; | |
| 16 | |
| 17 MaterialElement() { | |
| 18 addEventListener('pointerdown', _handlePointerDown); | |
| 19 addEventListener('gesturescrollstart', _handleScrollStart); | |
| 20 } | |
| 21 | |
| 22 void addTransformHack() { | |
| 23 if (_didAddTransformHack) | |
| 24 return; | |
| 25 if (style['transform'] != null) | |
| 26 return; | |
| 27 _didAddTransformHack = true; | |
| 28 // We set the transform here to become a container for absolutely positioned | |
| 29 // elements. We should either have a better way of becoming such a container | |
| 30 // or we should make every RenderBlock be such a container. | |
| 31 style['transform'] = 'translateX(0)'; | |
| 32 } | |
| 33 | |
| 34 void removeTransformHack() { | |
| 35 if (!_didAddTransformHack) | |
| 36 return; | |
| 37 style.removeProperty('transform'); | |
| 38 _didAddTransformHack = false; | |
| 39 } | |
| 40 | |
| 41 void _handlePointerDown(PointerEvent event) { | |
| 42 addTransformHack(); | |
| 43 ClientRect rect = getBoundingClientRect(); | |
| 44 SkyInkSplash splash = new SkyInkSplash(); | |
| 45 shadowRoot.prependChild(splash); | |
| 46 splash.start(event.x, event.y, rect).then(_handleSplashComplete); | |
| 47 _activeSplashes.add(splash); | |
| 48 } | |
| 49 | |
| 50 void _handleSplashComplete(SkyInkSplash splash) { | |
| 51 _activeSplashes.remove(splash); | |
| 52 if (_activeSplashes.isEmpty) | |
| 53 removeTransformHack(); | |
| 54 } | |
| 55 | |
| 56 void _handleScrollStart(GestureEvent event) { | |
| 57 for (SkyInkSplash splash in _activeSplashes) { | |
| 58 splash.cancel(); | |
| 59 } | |
| 60 } | |
| 61 } | |
| 62 </script> | |
| OLD | NEW |