@@ -36,9 +36,9 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
36
36
}
37
37
}
38
38
39
- function isAllowed ( ruleType , element , currentAnimation , previousAnimation ) {
39
+ function isAllowed ( ruleType , currentAnimation , previousAnimation ) {
40
40
return rules [ ruleType ] . some ( function ( fn ) {
41
- return fn ( element , currentAnimation , previousAnimation ) ;
41
+ return fn ( currentAnimation , previousAnimation ) ;
42
42
} ) ;
43
43
}
44
44
@@ -48,40 +48,40 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
48
48
return and ? a && b : a || b ;
49
49
}
50
50
51
- rules . join . push ( function ( element , newAnimation , currentAnimation ) {
51
+ rules . join . push ( function ( newAnimation , currentAnimation ) {
52
52
// if the new animation is class-based then we can just tack that on
53
53
return ! newAnimation . structural && hasAnimationClasses ( newAnimation ) ;
54
54
} ) ;
55
55
56
- rules . skip . push ( function ( element , newAnimation , currentAnimation ) {
56
+ rules . skip . push ( function ( newAnimation , currentAnimation ) {
57
57
// there is no need to animate anything if no classes are being added and
58
58
// there is no structural animation that will be triggered
59
59
return ! newAnimation . structural && ! hasAnimationClasses ( newAnimation ) ;
60
60
} ) ;
61
61
62
- rules . skip . push ( function ( element , newAnimation , currentAnimation ) {
62
+ rules . skip . push ( function ( newAnimation , currentAnimation ) {
63
63
// why should we trigger a new structural animation if the element will
64
64
// be removed from the DOM anyway?
65
65
return currentAnimation . event === 'leave' && newAnimation . structural ;
66
66
} ) ;
67
67
68
- rules . skip . push ( function ( element , newAnimation , currentAnimation ) {
68
+ rules . skip . push ( function ( newAnimation , currentAnimation ) {
69
69
// if there is an ongoing current animation then don't even bother running the class-based animation
70
70
return currentAnimation . structural && currentAnimation . state === RUNNING_STATE && ! newAnimation . structural ;
71
71
} ) ;
72
72
73
- rules . cancel . push ( function ( element , newAnimation , currentAnimation ) {
73
+ rules . cancel . push ( function ( newAnimation , currentAnimation ) {
74
74
// there can never be two structural animations running at the same time
75
75
return currentAnimation . structural && newAnimation . structural ;
76
76
} ) ;
77
77
78
- rules . cancel . push ( function ( element , newAnimation , currentAnimation ) {
78
+ rules . cancel . push ( function ( newAnimation , currentAnimation ) {
79
79
// if the previous animation is already running, but the new animation will
80
80
// be triggered, but the new animation is structural
81
81
return currentAnimation . state === RUNNING_STATE && newAnimation . structural ;
82
82
} ) ;
83
83
84
- rules . cancel . push ( function ( element , newAnimation , currentAnimation ) {
84
+ rules . cancel . push ( function ( newAnimation , currentAnimation ) {
85
85
// cancel the animation if classes added / removed in both animation cancel each other out,
86
86
// but only if the current animation isn't structural
87
87
@@ -181,10 +181,7 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
181
181
return this === arg || ! ! ( this . compareDocumentPosition ( arg ) & 16 ) ;
182
182
} ;
183
183
184
- function findCallbacks ( parent , element , event ) {
185
- var targetNode = getDomNode ( element ) ;
186
- var targetParentNode = getDomNode ( parent ) ;
187
-
184
+ function findCallbacks ( targetParentNode , targetNode , event ) {
188
185
var matches = [ ] ;
189
186
var entries = callbackRegistry [ event ] ;
190
187
if ( entries ) {
@@ -209,11 +206,11 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
209
206
} ) ;
210
207
}
211
208
212
- function cleanupEventListeners ( phase , element ) {
213
- if ( phase === 'close' && ! element [ 0 ] . parentNode ) {
209
+ function cleanupEventListeners ( phase , node ) {
210
+ if ( phase === 'close' && ! node . parentNode ) {
214
211
// If the element is not attached to a parentNode, it has been removed by
215
212
// the domOperation, and we can safely remove the event callbacks
216
- $animate . off ( element ) ;
213
+ $animate . off ( node ) ;
217
214
}
218
215
}
219
216
@@ -311,12 +308,9 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
311
308
// the input data when running `$animateCss`.
312
309
var options = copy ( initialOptions ) ;
313
310
314
- var node , parent ;
315
311
element = stripCommentsFromElement ( element ) ;
316
- if ( element ) {
317
- node = getDomNode ( element ) ;
318
- parent = element . parent ( ) ;
319
- }
312
+ var node = getDomNode ( element ) ;
313
+ var parentNode = node && node . parentNode ;
320
314
321
315
options = prepareAnimationOptions ( options ) ;
322
316
@@ -381,7 +375,7 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
381
375
// there is no point in traversing the same collection of parent ancestors if a followup
382
376
// animation will be run on the same element that already did all that checking work
383
377
if ( ! skipAnimations && ( ! hasExistingAnimation || existingAnimation . state !== PRE_DIGEST_STATE ) ) {
384
- skipAnimations = ! areAnimationsAllowed ( element , parent , event ) ;
378
+ skipAnimations = ! areAnimationsAllowed ( node , parentNode , event ) ;
385
379
}
386
380
387
381
if ( skipAnimations ) {
@@ -393,7 +387,7 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
393
387
}
394
388
395
389
if ( isStructural ) {
396
- closeChildAnimations ( element ) ;
390
+ closeChildAnimations ( node ) ;
397
391
}
398
392
399
393
var newAnimation = {
@@ -408,7 +402,7 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
408
402
} ;
409
403
410
404
if ( hasExistingAnimation ) {
411
- var skipAnimationFlag = isAllowed ( 'skip' , element , newAnimation , existingAnimation ) ;
405
+ var skipAnimationFlag = isAllowed ( 'skip' , newAnimation , existingAnimation ) ;
412
406
if ( skipAnimationFlag ) {
413
407
if ( existingAnimation . state === RUNNING_STATE ) {
414
408
close ( ) ;
@@ -418,7 +412,7 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
418
412
return existingAnimation . runner ;
419
413
}
420
414
}
421
- var cancelAnimationFlag = isAllowed ( 'cancel' , element , newAnimation , existingAnimation ) ;
415
+ var cancelAnimationFlag = isAllowed ( 'cancel' , newAnimation , existingAnimation ) ;
422
416
if ( cancelAnimationFlag ) {
423
417
if ( existingAnimation . state === RUNNING_STATE ) {
424
418
// this will end the animation right away and it is safe
@@ -440,7 +434,7 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
440
434
// a joined animation means that this animation will take over the existing one
441
435
// so an example would involve a leave animation taking over an enter. Then when
442
436
// the postDigest kicks in the enter will be ignored.
443
- var joinAnimationFlag = isAllowed ( 'join' , element , newAnimation , existingAnimation ) ;
437
+ var joinAnimationFlag = isAllowed ( 'join' , newAnimation , existingAnimation ) ;
444
438
if ( joinAnimationFlag ) {
445
439
if ( existingAnimation . state === RUNNING_STATE ) {
446
440
normalizeAnimationDetails ( element , newAnimation ) ;
@@ -474,15 +468,15 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
474
468
475
469
if ( ! isValidAnimation ) {
476
470
close ( ) ;
477
- clearElementAnimationState ( element ) ;
471
+ clearElementAnimationState ( node ) ;
478
472
return runner ;
479
473
}
480
474
481
475
// the counter keeps track of cancelled animations
482
476
var counter = ( existingAnimation . counter || 0 ) + 1 ;
483
477
newAnimation . counter = counter ;
484
478
485
- markElementAnimationState ( element , PRE_DIGEST_STATE , newAnimation ) ;
479
+ markElementAnimationState ( node , PRE_DIGEST_STATE , newAnimation ) ;
486
480
487
481
$rootScope . $$postDigest ( function ( ) {
488
482
var animationDetails = activeAnimationsLookup . get ( node ) ;
@@ -523,7 +517,7 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
523
517
// isn't allowed to animate from here then we need to clear the state of the element
524
518
// so that any future animations won't read the expired animation data.
525
519
if ( ! isValidAnimation ) {
526
- clearElementAnimationState ( element ) ;
520
+ clearElementAnimationState ( node ) ;
527
521
}
528
522
529
523
return ;
@@ -535,7 +529,7 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
535
529
? 'setClass'
536
530
: animationDetails . event ;
537
531
538
- markElementAnimationState ( element , RUNNING_STATE ) ;
532
+ markElementAnimationState ( node , RUNNING_STATE ) ;
539
533
var realRunner = $$animation ( element , event , animationDetails . options ) ;
540
534
541
535
// this will update the runner's flow-control events based on
@@ -547,7 +541,7 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
547
541
close ( ! status ) ;
548
542
var animationDetails = activeAnimationsLookup . get ( node ) ;
549
543
if ( animationDetails && animationDetails . counter === counter ) {
550
- clearElementAnimationState ( getDomNode ( element ) ) ;
544
+ clearElementAnimationState ( node ) ;
551
545
}
552
546
notifyProgress ( runner , event , 'close' , { } ) ;
553
547
} ) ;
@@ -557,7 +551,7 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
557
551
558
552
function notifyProgress ( runner , event , phase , data ) {
559
553
runInNextPostDigestOrNow ( function ( ) {
560
- var callbacks = findCallbacks ( parent , element , event ) ;
554
+ var callbacks = findCallbacks ( parentNode , node , event ) ;
561
555
if ( callbacks . length ) {
562
556
// do not optimize this call here to RAF because
563
557
// we don't know how heavy the callback code here will
@@ -567,10 +561,10 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
567
561
forEach ( callbacks , function ( callback ) {
568
562
callback ( element , phase , data ) ;
569
563
} ) ;
570
- cleanupEventListeners ( phase , element ) ;
564
+ cleanupEventListeners ( phase , node ) ;
571
565
} ) ;
572
566
} else {
573
- cleanupEventListeners ( phase , element ) ;
567
+ cleanupEventListeners ( phase , node ) ;
574
568
}
575
569
} ) ;
576
570
runner . progress ( event , phase , data ) ;
@@ -585,8 +579,7 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
585
579
}
586
580
}
587
581
588
- function closeChildAnimations ( element ) {
589
- var node = getDomNode ( element ) ;
582
+ function closeChildAnimations ( node ) {
590
583
var children = node . querySelectorAll ( '[' + NG_ANIMATE_ATTR_NAME + ']' ) ;
591
584
forEach ( children , function ( child ) {
592
585
var state = parseInt ( child . getAttribute ( NG_ANIMATE_ATTR_NAME ) , 10 ) ;
@@ -604,71 +597,66 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
604
597
} ) ;
605
598
}
606
599
607
- function clearElementAnimationState ( element ) {
608
- var node = getDomNode ( element ) ;
600
+ function clearElementAnimationState ( node ) {
609
601
node . removeAttribute ( NG_ANIMATE_ATTR_NAME ) ;
610
602
activeAnimationsLookup . remove ( node ) ;
611
603
}
612
604
613
- function isMatchingElement ( nodeOrElmA , nodeOrElmB ) {
614
- return getDomNode ( nodeOrElmA ) === getDomNode ( nodeOrElmB ) ;
615
- }
616
-
617
605
/**
618
606
* This fn returns false if any of the following is true:
619
607
* a) animations on any parent element are disabled, and animations on the element aren't explicitly allowed
620
608
* b) a parent element has an ongoing structural animation, and animateChildren is false
621
609
* c) the element is not a child of the body
622
610
* d) the element is not a child of the $rootElement
623
611
*/
624
- function areAnimationsAllowed ( element , parentElement , event ) {
625
- var bodyElement = jqLite ( $document [ 0 ] . body ) ;
626
- var bodyElementDetected = isMatchingElement ( element , bodyElement ) || element [ 0 ] . nodeName === 'HTML' ;
627
- var rootElementDetected = isMatchingElement ( element , $rootElement ) ;
612
+ function areAnimationsAllowed ( node , parentNode , event ) {
613
+ var bodyNode = $document [ 0 ] . body ;
614
+ var rootNode = getDomNode ( $rootElement ) ;
615
+
616
+ var bodyNodeDetected = ( node === bodyNode ) || node . nodeName === 'HTML' ;
617
+ var rootNodeDetected = ( node === rootNode ) ;
628
618
var parentAnimationDetected = false ;
619
+ var elementDisabled = disabledElementsLookup . get ( node ) ;
629
620
var animateChildren ;
630
- var elementDisabled = disabledElementsLookup . get ( getDomNode ( element ) ) ;
631
621
632
- var parentHost = jqLite . data ( element [ 0 ] , NG_ANIMATE_PIN_DATA ) ;
622
+ var parentHost = jqLite . data ( node , NG_ANIMATE_PIN_DATA ) ;
633
623
if ( parentHost ) {
634
- parentElement = parentHost ;
624
+ parentNode = getDomNode ( parentHost ) ;
635
625
}
636
626
637
- parentElement = getDomNode ( parentElement ) ;
638
-
639
- while ( parentElement ) {
640
- if ( ! rootElementDetected ) {
627
+ while ( parentNode ) {
628
+ if ( ! rootNodeDetected ) {
641
629
// angular doesn't want to attempt to animate elements outside of the application
642
630
// therefore we need to ensure that the rootElement is an ancestor of the current element
643
- rootElementDetected = isMatchingElement ( parentElement , $rootElement ) ;
631
+ rootNodeDetected = ( parentNode === rootNode ) ;
644
632
}
645
633
646
- if ( parentElement . nodeType !== ELEMENT_NODE ) {
634
+ if ( parentNode . nodeType !== ELEMENT_NODE ) {
647
635
// no point in inspecting the #document element
648
636
break ;
649
637
}
650
638
651
- var details = activeAnimationsLookup . get ( parentElement ) || { } ;
639
+ var details = activeAnimationsLookup . get ( parentNode ) || { } ;
652
640
// either an enter, leave or move animation will commence
653
641
// therefore we can't allow any animations to take place
654
642
// but if a parent animation is class-based then that's ok
655
643
if ( ! parentAnimationDetected ) {
656
- var parentElementDisabled = disabledElementsLookup . get ( parentElement ) ;
644
+ var parentNodeDisabled = disabledElementsLookup . get ( parentNode ) ;
657
645
658
- if ( parentElementDisabled === true && elementDisabled !== false ) {
646
+ if ( parentNodeDisabled === true && elementDisabled !== false ) {
659
647
// disable animations if the user hasn't explicitly enabled animations on the
660
648
// current element
661
649
elementDisabled = true ;
662
650
// element is disabled via parent element, no need to check anything else
663
651
break ;
664
- } else if ( parentElementDisabled === false ) {
652
+ } else if ( parentNodeDisabled === false ) {
665
653
elementDisabled = false ;
666
654
}
667
655
parentAnimationDetected = details . structural ;
668
656
}
669
657
670
658
if ( isUndefined ( animateChildren ) || animateChildren === true ) {
671
- var value = jqLite . data ( parentElement , NG_ANIMATE_CHILDREN_DATA ) ;
659
+ var value = jqLite . data ( parentNode , NG_ANIMATE_CHILDREN_DATA ) ;
672
660
if ( isDefined ( value ) ) {
673
661
animateChildren = value ;
674
662
}
@@ -677,40 +665,39 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
677
665
// there is no need to continue traversing at this point
678
666
if ( parentAnimationDetected && animateChildren === false ) break ;
679
667
680
- if ( ! bodyElementDetected ) {
668
+ if ( ! bodyNodeDetected ) {
681
669
// we also need to ensure that the element is or will be a part of the body element
682
670
// otherwise it is pointless to even issue an animation to be rendered
683
- bodyElementDetected = isMatchingElement ( parentElement , bodyElement ) ;
671
+ bodyNodeDetected = ( parentNode === bodyNode ) ;
684
672
}
685
673
686
- if ( bodyElementDetected && rootElementDetected ) {
674
+ if ( bodyNodeDetected && rootNodeDetected ) {
687
675
// If both body and root have been found, any other checks are pointless,
688
676
// as no animation data should live outside the application
689
677
break ;
690
678
}
691
679
692
- if ( ! rootElementDetected ) {
693
- // If no rootElement is detected, check if the parentElement is pinned to another element
694
- parentHost = jqLite . data ( parentElement , NG_ANIMATE_PIN_DATA ) ;
680
+ if ( ! rootNodeDetected ) {
681
+ // If `rootNode` is not detected, check if `parentNode` is pinned to another element
682
+ parentHost = jqLite . data ( parentNode , NG_ANIMATE_PIN_DATA ) ;
695
683
if ( parentHost ) {
696
684
// The pin target element becomes the next parent element
697
- parentElement = getDomNode ( parentHost ) ;
685
+ parentNode = getDomNode ( parentHost ) ;
698
686
continue ;
699
687
}
700
688
}
701
689
702
- parentElement = parentElement . parentNode ;
690
+ parentNode = parentNode . parentNode ;
703
691
}
704
692
705
693
var allowAnimation = ( ! parentAnimationDetected || animateChildren ) && elementDisabled !== true ;
706
- return allowAnimation && rootElementDetected && bodyElementDetected ;
694
+ return allowAnimation && rootNodeDetected && bodyNodeDetected ;
707
695
}
708
696
709
- function markElementAnimationState ( element , state , details ) {
697
+ function markElementAnimationState ( node , state , details ) {
710
698
details = details || { } ;
711
699
details . state = state ;
712
700
713
- var node = getDomNode ( element ) ;
714
701
node . setAttribute ( NG_ANIMATE_ATTR_NAME , state ) ;
715
702
716
703
var oldValue = activeAnimationsLookup . get ( node ) ;
0 commit comments