This repository has been archived by the owner on May 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
iron-swipeable-container.js
254 lines (213 loc) · 7.94 KB
/
iron-swipeable-container.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/**
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at
http://polymer.github.io/LICENSE.txt The complete set of authors may be found at
http://polymer.github.io/AUTHORS.txt The complete set of contributors may be
found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as
part of the polymer project is also subject to an additional IP rights grant
found at http://polymer.github.io/PATENTS.txt
*/
import '@polymer/polymer/polymer-legacy.js';
import {Polymer} from '@polymer/polymer/lib/legacy/polymer-fn.js';
import {dom} from '@polymer/polymer/lib/legacy/polymer.dom.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
/**
`<iron-swipeable-container>` is a container that allows any of its nested
children (native or custom elements) to be swiped away. By default it supports
a curved or horizontal transition, but the transition duration and properties
can be customized.
Example:
<iron-swipeable-container>
<div>I can be swiped</div>
<paper-card heading="Me too!"></paper-card>
</iron-swipeable-container>
To disable swiping on individual children, you must give them the
`.disable-swipe` class. Alternatively, to disable swiping on the whole
container, you can use its `disable-swipe` attribute:
<iron-swipeable-container>
<div class="disable-swipe">I cannot be swiped be swiped</div>
<paper-card heading="But I can!"></paper-card>
</iron-swipeable-container>
<iron-swipeable-container disable-swipe>
<div>I cannot be swiped</div>
<paper-card heading="Me neither :("></paper-card>
</iron-swipeable-container>
It is a good idea to disable text selection on any of the children that you
want to be swiped:
.swipe {
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
user-select: none;
cursor: default;
}
@group Iron Elements
@element iron-swipeable-container
@demo demo/index.html
*/
Polymer({
_template: html`
<style>
:host {
display: block;
}
</style>
<slot id="content"></slot>
`,
is: 'iron-swipeable-container',
/**
* Fired when a child element is swiped away.
*
* @event iron-swipe
*/
properties: {
/**
* The style in which to swipe the card. Currently supported
* options are `curve | horizontal`. If left unspecified, the default
* is assumed to be `horizontal`.
*/
swipeStyle: {type: String, value: 'horizontal'},
/**
* If true, then the container will not allow swiping.
*/
disabled: {type: Boolean, value: false, observer: '__NOOP_IE11'},
/**
* The ratio of the width of the element that the translation animation
* should happen over. For example, if the `widthRatio` is 3, the
* animation will take place on a distance 3 times the width of the
* element being swiped.
*/
widthRatio: {type: Number, value: 3},
/**
* The ratio of the total animation distance after which the opacity
* transformation begins. For example, if the `widthRatio` is 1 and
* the `opacityRate` is 0.5, then the element needs to travel half its
* width before its opacity starts decreasing.
*/
opacityRate: {type: Number, value: 0.2},
/**
* The CSS transition applied while swiping.
*/
transition: {type: String, value: '300ms cubic-bezier(0.4, 0.0, 1, 1)'}
},
// This observer is only here because it prevents a bug that occurs in IE11
// where attributes used to set boolean properties do not otherwise apply.
__NOOP_IE11: function() {},
ready: function() {
this._transitionProperty = 'opacity, transform';
this._swipeComplete = false;
this._direction = '';
},
attached: function() {
this._nodeObserver = dom(this.$.content).observeNodes(function(mutations) {
for (var i = 0; i < mutations.addedNodes.length; i++) {
this._addListeners(mutations.addedNodes[i]);
}
for (var i = 0; i < mutations.removedNodes.length; i++) {
this._removeListeners(mutations.removedNodes[i]);
}
}.bind(this));
},
_addListeners: function(node) {
if (node.nodeType === Node.TEXT_NODE || node.nodeType === Node.COMMENT_NODE)
return;
// Set up the animation.
node.style.transitionProperty = this._transitionProperty;
node.style.transition = this.transition;
this.listen(node, 'track', '_onTrack');
this.listen(node, 'transitionend', '_onTransitionEnd');
},
_removeListeners: function(node) {
if (node.nodeType === Node.TEXT_NODE)
return;
this.unlisten(node, 'track', '_onTrack');
this.unlisten(node, 'transitionend', '_onTransitionEnd');
},
detached: function() {
if (this._nodeObserver) {
dom(this.$.content).unobserveNodes(this._nodeObserver);
this._nodeObserver = null;
}
},
_onTrack: function(event) {
if (this.disabled)
return;
var target = event.currentTarget;
if (target.classList.contains('disable-swipe'))
return;
var track = event.detail;
if (track.state === 'start') {
this._trackStart(track, target);
} else if (track.state === 'track') {
this._trackMove(track, target);
} else if (track.state === 'end') {
this._trackEnd(track, target);
}
event.stopPropagation();
},
_trackStart: function(event, target) {
// Save the width of the element, so that we don't trigger a style
// recalc every time we need it.
this._nodeWidth = target.offsetWidth;
target.style.transition = 'none';
},
_trackMove: function(event, target) {
this._animate(event.dx, target);
},
_trackEnd: function(event, target) {
// The element is swiped away if it's moved halfway its total width.
this._swipeComplete = Math.abs(event.dx) > this._nodeWidth / 2;
this._direction = event.dx > 0;
this._swipeEnd(target);
},
_animate: function(x, target) {
var direction = x > 0 ? 1 : -1;
// This is the total distance the animation will take place over.
var totalDistance = this._nodeWidth * this.widthRatio;
// Opacity distance overflow. `this._nodeWidth * this.opacityRate` is the
// total distance the element needs to travel to become completely
// transparent, and `x` is how much the element has already travelled.
var opaqueDistance =
Math.max(0, Math.abs(x) - this._nodeWidth * this.opacityRate);
var opacity = Math.max(0, (totalDistance - opaqueDistance) / totalDistance);
target.style.opacity = opacity;
var translate, rotate;
if (this.swipeStyle === 'horizontal') {
translate = 'translate3d(' + x + 'px,' + 0 + 'px,0)';
rotate = '';
} else { // Default is assumed to be `curve`.
// Assume the element will be completely transparent at 90 degrees, so
// figure out the rotation and vertical displacement needed to
// achieve that.
var y = totalDistance -
Math.sqrt(
totalDistance * totalDistance - opaqueDistance * opaqueDistance);
var deg = (1 - opacity) * direction * 90;
translate = 'translate3d(' + x + 'px,' + y + 'px,0)';
rotate = ' rotate(' + deg + 'deg)';
}
this.transform(translate + rotate, target);
},
_swipeEnd: function(target) {
// Restore the original transition;
target.style.transition = this.transition;
if (this._swipeComplete) {
// If the element is ready to be swiped away, then translate it to the
// full transparency distance.
var totalDistance = this._nodeWidth * this.widthRatio;
this._animate(this._direction ? totalDistance : -totalDistance, target);
} else {
this._animate(0, target);
}
},
_onTransitionEnd: function(event) {
var target = event.currentTarget;
if (this._swipeComplete && event.propertyName === 'opacity') {
dom(this).removeChild(target);
this.fire(
'iron-swipe',
{direction: this._direction > 0 ? 'right' : 'left', target: target});
}
}
});