-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAnimated.js
1328 lines (1168 loc) · 33.3 KB
/
Animated.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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule Animated
*/
'use strict';
var Animated = (function() {
// Note(vjeux): this would be better as an interface but flow doesn't
// support them yet
class Animated {
attach(): void {}
detach(): void {}
getValue(): any {}
getAnimatedValue(): any { return this.getValue(); }
addChild(child: Animated) {}
removeChild(child: Animated) {}
getChildren(): Array<Animated> { return []; }
}
// Important note: start() and stop() will only be called at most once.
// Once an animation has been stopped or finished its course, it will
// not be reused.
class Animation {
start(
fromValue: number,
onUpdate: (value: number) => void,
onEnd: ?((finished: bool) => void),
previousAnimation: ?Animation
): void {}
stop(): void {}
}
class AnimatedWithChildren extends Animated {
_children: Array<Animated>;
constructor() {
super();
this._children = [];
}
addChild(child: Animated): void {
if (this._children.length === 0) {
this.attach();
}
this._children.push(child);
}
removeChild(child: Animated): void {
var index = this._children.indexOf(child);
if (index === -1) {
console.warn('Trying to remove a child that doesn\'t exist');
return;
}
this._children.splice(index, 1);
if (this._children.length === 0) {
this.detach();
}
}
getChildren(): Array<Animated> {
return this._children;
}
}
/**
* Animated works by building a directed acyclic graph of dependencies
* transparently when you render your Animated components.
*
* new Animated.Value(0)
* .interpolate() .interpolate() new Animated.Value(1)
* opacity translateY scale
* style transform
* View#234 style
* View#123
*
* A) Top Down phase
* When an Animated.Value is updated, we recursively go down through this
* graph in order to find leaf nodes: the views that we flag as needing
* an update.
*
* B) Bottom Up phase
* When a view is flagged as needing an update, we recursively go back up
* in order to build the new value that it needs. The reason why we need
* this two-phases process is to deal with composite props such as
* transform which can receive values from multiple parents.
*/
function _flush(node: AnimatedValue): void {
var animatedStyles = new Set();
function findAnimatedStyles(theNode) {
if ('update' in theNode) {
animatedStyles.add(theNode);
} else {
theNode.getChildren().forEach(findAnimatedStyles);
}
}
findAnimatedStyles(node);
animatedStyles.forEach(animatedStyle => animatedStyle.update());
}
type TimingAnimationConfig = {
toValue: number;
easing?: (value: number) => number;
duration?: number;
delay?: number;
};
class TimingAnimation extends Animation {
_startTime: number;
_fromValue: number;
_toValue: number;
_duration: number;
_delay: number;
_easing: (value: number) => number;
_onUpdate: (value: number) => void;
_onEnd: ?((finished: bool) => void);
_animationFrame: any;
_timeout: any;
constructor(
config: TimingAnimationConfig
) {
super();
this._toValue = config.toValue;
this._easing = config.easing || Easing.inOut(Easing.ease);
this._duration = config.duration !== undefined ? config.duration : 500;
this._delay = config.delay || 0;
}
start(
fromValue: number,
onUpdate: (value: number) => void,
onEnd: ?((finished: bool) => void)
): void {
this._fromValue = fromValue;
this._onUpdate = onUpdate;
this._onEnd = onEnd;
var start = () => {
this._startTime = Date.now();
this._animationFrame = window.requestAnimationFrame(this.onUpdate.bind(this));
};
if (this._delay) {
this._timeout = setTimeout(start, this._delay);
} else {
start();
}
}
onUpdate(): void {
var now = Date.now();
if (now > this._startTime + this._duration) {
this._onUpdate(
this._fromValue + this._easing(1) * (this._toValue - this._fromValue)
);
var onEnd = this._onEnd;
this._onEnd = null;
onEnd && onEnd(/* finished */ true);
return;
}
this._onUpdate(
this._fromValue +
this._easing((now - this._startTime) / this._duration) *
(this._toValue - this._fromValue)
);
this._animationFrame = window.requestAnimationFrame(this.onUpdate.bind(this));
}
stop(): void {
clearTimeout(this._timeout);
window.cancelAnimationFrame(this._animationFrame);
var onEnd = this._onEnd;
this._onEnd = null;
onEnd && onEnd(/* finished */ false);
}
}
type DecayAnimationConfig = {
velocity: number;
deceleration?: number;
};
class DecayAnimation extends Animation {
_startTime: number;
_lastValue: number;
_fromValue: number;
_deceleration: number;
_velocity: number;
_onUpdate: (value: number) => void;
_onEnd: ?((finished: bool) => void);
_animationFrame: any;
constructor(
config: DecayAnimationConfig
) {
super();
this._deceleration = config.deceleration || 0.998;
this._velocity = config.velocity;
}
start(
fromValue: number,
onUpdate: (value: number) => void,
onEnd: ?((finished: bool) => void)
): void {
this._lastValue = fromValue;
this._fromValue = fromValue;
this._onUpdate = onUpdate;
this._onEnd = onEnd;
this._startTime = Date.now();
this._animationFrame = window.requestAnimationFrame(this.onUpdate.bind(this));
}
onUpdate(): void {
var now = Date.now();
var value = this._fromValue +
(this._velocity / (1 - this._deceleration)) *
(1 - Math.exp(-(1 - this._deceleration) * (now - this._startTime)));
this._onUpdate(value);
if (Math.abs(this._lastValue - value) < 0.1) {
var onEnd = this._onEnd;
this._onEnd = null;
onEnd && onEnd(/* finished */ true);
return;
}
this._lastValue = value;
this._animationFrame = window.requestAnimationFrame(this.onUpdate.bind(this));
}
stop(): void {
window.cancelAnimationFrame(this._animationFrame);
var onEnd = this._onEnd;
this._onEnd = null;
onEnd && onEnd(/* finished */ false);
}
}
type SpringAnimationConfig = {
toValue: number;
overshootClamping?: bool;
restDisplacementThreshold?: number;
restSpeedThreshold?: number;
velocity?: number;
bounciness?: number;
speed?: number;
tension?: number;
friction?: number;
};
function withDefault<T>(value: ?T, defaultValue: T): T {
if (value === undefined || value === null) {
return defaultValue;
}
return value;
}
function tensionFromOrigamiValue(oValue) {
return (oValue - 30.0) * 3.62 + 194.0;
}
function frictionFromOrigamiValue(oValue) {
return (oValue - 8.0) * 3.0 + 25.0;
}
var fromOrigamiTensionAndFriction = function(tension, friction) {
return {
tension: tensionFromOrigamiValue(tension),
friction: frictionFromOrigamiValue(friction)
};
}
var fromBouncinessAndSpeed = function(bounciness, speed) {
function normalize(value, startValue, endValue) {
return (value - startValue) / (endValue - startValue);
}
function projectNormal(n, start, end) {
return start + (n * (end - start));
}
function linearInterpolation(t, start, end) {
return t * end + (1.0 - t) * start;
}
function quadraticOutInterpolation(t, start, end) {
return linearInterpolation(2 * t - t * t, start, end);
}
function b3Friction1(x) {
return (0.0007 * Math.pow(x, 3)) -
(0.031 * Math.pow(x, 2)) + 0.64 * x + 1.28;
}
function b3Friction2(x) {
return (0.000044 * Math.pow(x, 3)) -
(0.006 * Math.pow(x, 2)) + 0.36 * x + 2.;
}
function b3Friction3(x) {
return (0.00000045 * Math.pow(x, 3)) -
(0.000332 * Math.pow(x, 2)) + 0.1078 * x + 5.84;
}
function b3Nobounce(tension) {
if (tension <= 18) {
return b3Friction1(tension);
} else if (tension > 18 && tension <= 44) {
return b3Friction2(tension);
} else {
return b3Friction3(tension);
}
}
var b = normalize(bounciness / 1.7, 0, 20.0);
b = projectNormal(b, 0.0, 0.8);
var s = normalize(speed / 1.7, 0, 20.0);
var bouncyTension = projectNormal(s, 0.5, 200)
var bouncyFriction = quadraticOutInterpolation(
b,
b3Nobounce(bouncyTension),
0.01
);
return {
tension: tensionFromOrigamiValue(bouncyTension),
friction: frictionFromOrigamiValue(bouncyFriction)
};
}
class SpringAnimation extends Animation {
_overshootClamping: bool;
_restDisplacementThreshold: number;
_restSpeedThreshold: number;
_lastVelocity: number;
_tempVelocity: number;
_startPosition: number;
_lastPosition: number;
_tempPosition: number;
_fromValue: number;
_toValue: number;
_tension: number;
_friction: number;
_lastTime: number;
_onUpdate: (value: number) => void;
_onEnd: ?((finished: bool) => void);
_animationFrame: any;
_active: bool;
constructor(
config: SpringAnimationConfig
) {
super();
this._overshootClamping = withDefault(config.overshootClamping, false);
this._restDisplacementThreshold = withDefault(config.restDisplacementThreshold, 0.001);
this._restSpeedThreshold = withDefault(config.restSpeedThreshold, 0.001);
this._lastVelocity = withDefault(config.velocity, 0);
this._tempVelocity = this._lastVelocity;
this._toValue = config.toValue;
var springConfig;
if (config.bounciness !== undefined || config.speed !== undefined) {
invariant(
config.tension === undefined && config.friction === undefined,
'You can only define bounciness/speed or tension/friction but not both'
);
springConfig = fromBouncinessAndSpeed(
withDefault(config.bounciness, 8),
withDefault(config.speed, 12)
);
} else {
springConfig = fromOrigamiTensionAndFriction(
withDefault(config.tension, 40),
withDefault(config.friction, 7)
);
}
this._tension = springConfig.tension;
this._friction = springConfig.friction;
}
start(
fromValue: number,
onUpdate: (value: number) => void,
onEnd: ?((finished: bool) => void),
previousAnimation: ?Animation
): void {
this._active = true;
this._startPosition = fromValue;
this._lastPosition = this._startPosition;
this._tempPosition = this._lastPosition;
this._onUpdate = onUpdate;
this._onEnd = onEnd;
this._lastTime = Date.now();
if (previousAnimation instanceof SpringAnimation) {
var internalState = previousAnimation.getInternalState();
this._lastPosition = internalState.lastPosition;
this._tempPosition = internalState.tempPosition;
this._lastVelocity = internalState.lastVelocity;
this._tempVelocity = internalState.tempVelocity;
this._lastTime = internalState.lastTime;
}
this.onUpdate();
}
getInternalState(): any {
return {
lastPosition: this._lastPosition,
tempPosition: this._tempPosition,
lastVelocity: this._lastVelocity,
tempVelocity: this._tempVelocity,
lastTime: this._lastTime,
};
}
onUpdate(): void {
if (!this._active) {
return;
}
var now = Date.now();
var position = this._lastPosition;
var velocity = this._lastVelocity;
var tempPosition = position;
var tempVelocity = velocity;
var TIMESTEP_MSEC = 4;
var numSteps = Math.floor((now - this._lastTime) / TIMESTEP_MSEC);
for (var i = 0; i < numSteps; ++i) {
// Velocity is based on seconds instead of milliseconds
var step = TIMESTEP_MSEC / 1000;
var aVelocity = velocity;
var aAcceleration = this._tension * (this._toValue - tempPosition) - this._friction * tempVelocity;
tempPosition = position + aVelocity * step / 2;
tempVelocity = velocity + aAcceleration * step / 2;
var bVelocity = tempVelocity;
var bAcceleration = this._tension * (this._toValue - tempPosition) - this._friction * tempVelocity;
tempPosition = position + bVelocity * step / 2;
tempVelocity = velocity + bAcceleration * step / 2;
var cVelocity = tempVelocity;
var cAcceleration = this._tension * (this._toValue - tempPosition) - this._friction * tempVelocity;
tempPosition = position + cVelocity * step;
tempVelocity = velocity + cAcceleration * step;
var dVelocity = tempVelocity;
var dAcceleration = this._tension * (this._toValue - tempPosition) - this._friction * tempVelocity;
var dxdt = (aVelocity + 2 * (bVelocity + cVelocity) + dVelocity) / 6;
var dvdt = (aAcceleration + 2 * (bAcceleration + cAcceleration) + dAcceleration) / 6;
position += dxdt * step;
velocity += dvdt * step;
}
this._lastTime = now;
this._tempPosition = tempPosition;
this._tempVelocity = tempVelocity;
this._lastPosition = position;
this._lastVelocity = velocity;
this._onUpdate(position);
// Conditions for stopping the spring animation
var isOvershooting = false;
if (this._overshootClamping && this._tension !== 0) {
if (this._startPosition < this._toValue) {
isOvershooting = position > this._toValue;
} else {
isOvershooting = position < this._toValue;
}
}
var isVelocity = Math.abs(velocity) <= this._restSpeedThreshold;
var isDisplacement = true;
if (this._tension !== 0) {
isDisplacement = Math.abs(this._toValue - position) <= this._restDisplacementThreshold;
}
if (isOvershooting || (isVelocity && isDisplacement)) {
var onEnd = this._onEnd;
this._onEnd = null;
onEnd && onEnd(/* finished */ true);
return;
}
this._animationFrame = window.requestAnimationFrame(this.onUpdate.bind(this));
}
stop(): void {
this._active = false;
window.cancelAnimationFrame(this._animationFrame);
var onEnd = this._onEnd;
this._onEnd = null;
onEnd && onEnd(/* finished */ false);
}
}
type ValueListenerCallback = (state: {value: number}) => void;
var _uniqueId = 1;
class AnimatedValue extends AnimatedWithChildren {
_value: number;
_offset: number;
_animation: ?Animation;
_listeners: {[key: number]: ValueListenerCallback};
constructor(value: number) {
super();
this._value = value;
this._offset = 0;
this._animation = null;
this._listeners = {};
}
detach() {
this.stopAnimation();
}
getValue(): number {
return this._value + this._offset;
}
setValue(value: number): void {
if (this._animation) {
this._animation.stop();
this._animation = null;
}
this._updateValue(value);
}
getOffset(): number {
return this._offset;
}
setOffset(offset: number): void {
this._offset = offset;
}
addListener(callback: ValueListenerCallback): number {
var id = _uniqueId++;
this._listeners[id] = callback;
return id;
}
removeListener(id: number): void {
delete this._listeners[id];
}
animate(animation: Animation, callback: ?((finished: bool) => void)): void {
var previousAnimation = this._animation;
this._animation && this._animation.stop();
this._animation = animation;
animation.start(
this._value,
(value) => {
this._updateValue(value);
},
(finished) => {
this._animation = null;
callback && callback(finished);
},
previousAnimation
);
}
stopAnimation(callback?: ?() => number): void {
this.stopTracking();
this._animation && this._animation.stop();
callback && callback(this._value);
}
stopTracking(): void {
this._tracking && this._tracking.detach();
}
track(tracking: Animation): void {
this.stopTracking();
this._tracking = tracking;
}
interpolate(config: InterpolationConfigType): AnimatedInterpolation {
return new AnimatedInterpolation(this, Interpolation.create(config));
}
_updateValue(value: number): void {
if (value === this._value) {
return;
}
this._value = value;
_flush(this);
for (var key in this._listeners) {
this._listeners[key]({value: this.getValue()});
}
}
}
type Vec2ListenerCallback = (state: {x: number; y: number}) => void;
class AnimatedVec2 extends AnimatedWithChildren {
x: AnimatedValue;
y: AnimatedValue;
_listeners: {[key: number]: Vec2ListenerCallback};
constructor(value?: {x: number; y: number}) {
super();
value = value || {x: 0, y: 0};
if (typeof value.x === 'number') {
this.x = new AnimatedValue(value.x);
this.y = new AnimatedValue(value.y);
} else {
this.x = value.x;
this.y = value.y;
}
this._listeners = {};
}
setValue(value: {x: number; y: number}) {
this.x.setValue(value.x);
this.y.setValue(value.y);
}
setOffset(offset: {x: number; y: number}) {
this.x.setOffset(offset.x);
this.y.setOffset(offset.y);
}
addListener(callback: Vec2ListenerCallback): number {
var id = _uniqueId++;
var jointCallback = (value) => {
callback({x: this.x.getValue(), y: this.y.getValue()});
};
this._listeners[id] = {
x: this.x.addListener(jointCallback),
y: this.y.addListener(jointCallback),
};
return id;
}
removeListener(id: number): void {
this.x.removeListener(this._listeners[id].x);
this.y.removeListener(this._listeners[id].y);
delete this._listeners[id];
}
offset(theOffset) { // chunky...perf?
return new AnimatedVec2({
x: this.x.interpolate({
inputRange: [0, 1],
outputRange: [theOffset.x, theOffset.x + 1],
}),
y: this.y.interpolate({
inputRange: [0, 1],
outputRange: [theOffset.y, theOffset.y + 1],
}),
});
}
getLayout() {
return {
left: this.x,
top: this.y,
};
}
getTranslateTransform() {
return [
{translateX: this.x},
{translateY: this.y}
];
}
}
class AnimatedInterpolation extends AnimatedWithChildren {
_parent: Animated;
_interpolation: (input: number) => number | string;
_listeners: {[key: number]: ValueListenerCallback};
_parentListener: number;
constructor(parent: Animated, interpolation: (input: number) => number | string) {
super();
this._parent = parent;
this._interpolation = interpolation;
this._listeners = {};
}
getValue(): number | string {
var parentValue: number = this._parent.getValue();
invariant(
typeof parentValue === 'number',
'Cannot interpolate an input which is not a number.'
);
return this._interpolation(parentValue);
}
addListener(callback: ValueListenerCallback): number {
if (!this._parentListener) {
this._parentListener = this._parent.addListener(() => {
for (var key in this._listeners) {
this._listeners[key]({value: this.getValue()});
}
})
}
var id = _uniqueId++;
this._listeners[id] = callback;
return id;
}
removeListener(id: number): void {
delete this._listeners[id];
}
interpolate(config: InterpolationConfigType): AnimatedInterpolation {
return new AnimatedInterpolation(this, Interpolation.create(config));
}
attach(): void {
this._parent.addChild(this);
}
detach(): void {
this._parent.removeChild(this);
this._parentListener = this._parent.removeListener(this._parentListener);
}
}
class AnimatedTransform extends AnimatedWithChildren {
_transforms: Array<Object>;
constructor(transforms: Array<Object>) {
super();
this._transforms = transforms;
}
getValue(): Array<Object> {
return this._transforms.map(transform => {
var result = '';
for (var key in transform) {
var value = transform[key];
if (value instanceof Animated) {
result += key + '(' + value.getValue() + ')';
} else {
result += key + '(' + value.join(',') + ')';
}
}
return result;
}).join(' ');
}
getAnimatedValue(): Array<Object> {
return this._transforms.map(transform => {
var result = '';
for (var key in transform) {
var value = transform[key];
if (value instanceof Animated) {
result += key + '(' + value.getValue() + ') ';
} else {
// All transform components needed to recompose matrix
result += key + '(' + value.join(',') + ') ';
}
}
return result;
}).join('').trim();
}
attach(): void {
this._transforms.forEach(transform => {
for (var key in transform) {
var value = transform[key];
if (value instanceof Animated) {
value.addChild(this);
}
}
});
}
detach(): void {
this._transforms.forEach(transform => {
for (var key in transform) {
var value = transform[key];
if (value instanceof Animated) {
value.removeChild(this);
}
}
});
}
}
class AnimatedStyle extends AnimatedWithChildren {
_style: Object;
constructor(style: any) {
super();
style = style || {};
if (style.transform) {
style = {
...style,
transform: new AnimatedTransform(style.transform),
};
}
this._style = style;
}
getValue(): Object {
var style = {};
for (var key in this._style) {
var value = this._style[key];
if (value instanceof Animated) {
style[key] = value.getValue();
} else {
style[key] = value;
}
}
return style;
}
getAnimatedValue(): Object {
var style = {};
for (var key in this._style) {
var value = this._style[key];
if (value instanceof Animated) {
style[key] = value.getAnimatedValue();
}
}
return style;
}
attach(): void {
for (var key in this._style) {
var value = this._style[key];
if (value instanceof Animated) {
value.addChild(this);
}
}
}
detach(): void {
for (var key in this._style) {
var value = this._style[key];
if (value instanceof Animated) {
value.removeChild(this);
}
}
}
}
class AnimatedProps extends Animated {
_props: Object;
_callback: () => void;
constructor(
props: Object,
callback: () => void
) {
super();
if (props.style) {
props = {
...props,
style: new AnimatedStyle(props.style),
};
}
this._props = props;
this._callback = callback;
this.attach();
}
getValue(): Object {
var props = {};
for (var key in this._props) {
var value = this._props[key];
if (value instanceof Animated) {
props[key] = value.getValue();
} else {
props[key] = value;
}
}
return props;
}
getAnimatedValue(): Object {
var props = {};
for (var key in this._props) {
var value = this._props[key];
if (value instanceof Animated) {
props[key] = value.getAnimatedValue();
}
}
return props;
}
attach(): void {
for (var key in this._props) {
var value = this._props[key];
if (value instanceof Animated) {
value.addChild(this);
}
}
}
detach(): void {
for (var key in this._props) {
var value = this._props[key];
if (value instanceof Animated) {
value.removeChild(this);
}
}
}
update(): void {
this._callback();
}
}
function createAnimatedComponent(Component: any): any {
var refName = 'node';
class AnimatedComponent extends React.Component {
_propsAnimated: AnimatedProps;
componentWillUnmount() {
this._propsAnimated && this._propsAnimated.detach();
}
setNativeProps(props) {
this.refs[refName].setNativeProps(props);
}
componentWillMount() {
this.attachProps(this.props);
}
attachProps(nextProps) {
var oldPropsAnimated = this._propsAnimated;
// The system is best designed when setNativeProps is implemented. It is
// able to avoid re-rendering and directly set the attributes that
// changed. However, setNativeProps can only be implemented on leaf
// native components. If you want to animate a composite component, you
// need to re-render it. In this case, we have a fallback that uses
// forceUpdate.
var callback = () => {
if (this.refs[refName].setNativeProps) {
var value = this._propsAnimated.getAnimatedValue();
this.refs[refName].setNativeProps(value);
} else if (this.refs[refName].getDOMNode().setAttribute) {
var value = this._propsAnimated.getAnimatedValue();
var strStyle = React.CSSPropertyOperations.setValueForStyles(this.refs[refName].getDOMNode(), value.style, this.refs[refName]);
} else {
this.forceUpdate();
}
};
this._propsAnimated = new AnimatedProps(
nextProps,
callback
);
// When you call detach, it removes the element from the parent list
// of children. If it goes to 0, then the parent also detaches itself
// and so on.
// An optimization is to attach the new elements and THEN detach the old
// ones instead of detaching and THEN attaching.
// This way the intermediate state isn't to go to 0 and trigger
// this expensive recursive detaching to then re-attach everything on
// the very next operation.
oldPropsAnimated && oldPropsAnimated.detach();
}
componentWillReceiveProps(nextProps) {
this.attachProps(nextProps);
}
render() {
return (
<Component
{...this._propsAnimated.getValue()}
ref={refName}
/>
);
}
}
return AnimatedComponent;
}
class AnimatedTracking extends Animated {
_parent: Animated;
_callback: () => void;
constructor(
value: AnimatedValue,
parent: Animated,