Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Side by Side Diff: sky/framework/elements/material-element.sky

Issue 1132063007: Rationalize Dart mojo and sky package structure (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/framework/elements/animation/timer.dart ('k') | sky/framework/elements/shadow.sky » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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>
OLDNEW
« no previous file with comments | « sky/framework/elements/animation/timer.dart ('k') | sky/framework/elements/shadow.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698