forked from nstudio/nativescript-floatingactionbutton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfab-common.js
202 lines (183 loc) · 8.85 KB
/
fab-common.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
/**************************************************************************************
* Made for the {N} community by Brad Martin @BradWayneMartin
* Thanks to Lazaro Danillo for his contributions - https://github.com/lazaromenezes
* Thanks to Steve McNiven-Scott for his contributions - https://github.com/sitefinitysteve
* Thanks to Gabriel Marinho for his contributions - https://github.com/gabrielbiga
* https://twitter.com/BradWayneMartin
* https://github.com/bradmartin
* Pull requests are welcome. Enjoy!
*************************************************************************************/
var view = require("ui/core/view");
var color = require("color");
var frameModule = require("ui/frame");
var dObservable = require("ui/core/dependency-observable");
var proxy = require("ui/core/proxy");
var FloatingActionButton = (function (_super) {
global.__extends(FloatingActionButton, _super);
function FloatingActionButton() {
_super.call(this);
this.swipeEventAttached = false;
this.getDurationDefault = function (animationType) {
switch (animationType) {
case "scale":
return 100;
default:
return 300;
}
};
}
FloatingActionButton.prototype.onLoaded = function () {
_super.prototype.onLoaded.call(this);
if (this.swipeEventAttached === false) {
var fab = this;
var viewToAttachTo = this.hideOnSwipeOfView;
if (viewToAttachTo !== undefined) {
var swipeItem = frameModule.topmost().getViewById(viewToAttachTo);
var animationType = (this.swipeAnimation) ? this.swipeAnimation : "slideDown"
if (swipeItem !== undefined) {
var duration = (this.hideAnimationDuration) ? this.hideAnimationDuration : this.getDurationDefault(animationType);
swipeItem.on("pan", function (args) {
//Swipe up
if (args.deltaY < -10) {
switch (animationType) {
case "slideUp":
fab.animate({
translate: {
x: 0,
y: -200
},
opacity: 0,
duration: duration
});
break;
case "slideDown":
fab.animate({
translate: {
x: 0,
y: 200
},
opacity: 0,
duration: duration
});
break;
case "slideRight":
fab.animate({
translate: {
x: 200,
y: 0
},
opacity: 0,
duration: duration
});
break;
case "slideLeft":
fab.animate({
translate: {
x: -200,
y: 0
},
opacity: 0,
duration: duration
});
break;
case "scale":
fab.animate({
scale: {
x: 0,
y: 0
},
duration: duration
});
break;
}
}
//Swipe Down
else if (args.deltaY > 0) {
switch (animationType) {
case "slideUp":
fab.animate({
translate: {
x: 0,
y: 0
},
opacity: 1,
duration: duration
});
break;
case "slideDown":
fab.animate({
translate: {
x: 0,
y: 0
},
opacity: 1,
duration: duration
});
break;
case "slideRight":
fab.animate({
translate: {
x: 0,
y: 0
},
opacity: 1,
duration: duration
});
break;
case "slideLeft":
fab.animate({
translate: {
x: 0,
y: 0
},
opacity: 1,
duration: duration
});
break;
case "scale":
fab.animate({
scale: {
x: 1,
y: 1
},
duration: duration
});
break;
}
};
});
this.swipeEventAttached = true;
}
}
}
};
Object.defineProperty(FloatingActionButton.prototype, "rippleColor", {
get: function () {
return this._getValue(FloatingActionButton.rippleColorProperty);
},
set: function (value) {
this._setValue(FloatingActionButton.rippleColorProperty, value);
}
});
Object.defineProperty(FloatingActionButton.prototype, "backColor", {
get: function () {
return this._getValue(FloatingActionButton.backColorProperty);
},
set: function (value) {
this._setValue(FloatingActionButton.backColorProperty, value);
}
});
Object.defineProperty(FloatingActionButton.prototype, "icon", {
get: function () {
return this._getValue(FloatingActionButton.iconProperty);
},
set: function (value) {
this._setValue(FloatingActionButton.iconProperty, value);
}
});
FloatingActionButton.backColorProperty = new dObservable.Property("backColor", "FloatingActionButton", new proxy.PropertyMetadata(0, dObservable.PropertyMetadataSettings.AffectsLayout));
FloatingActionButton.iconProperty = new dObservable.Property("icon", "FloatingActionButton", new proxy.PropertyMetadata(0, dObservable.PropertyMetadataSettings.AffectsLayout));
FloatingActionButton.rippleColorProperty = new dObservable.Property("rippleColor", "FloatingActionButton", new proxy.PropertyMetadata(0, dObservable.PropertyMetadataSettings.AffectsLayout));
return FloatingActionButton;
})(view.View);
exports.Fab = FloatingActionButton;