Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit ad3eb52

Browse files
committed
feat($animate): allow $animate to pass custom styles into animations
$animate now supports an optional parameter which provides CSS styling which will be provided into the CSS-based animations as well as any custom animation functions. Once the animation is complete then the styles will be applied directly to the element. If no animation is detected or the `ngAnimate` module is not active then the styles will be applied immediately. BREAKING CHANGE: staggering animations that use transitions will now always block the transition from starting (via `transition: 0s none`) up until the stagger step kicks in. The former behaviour was that the block was removed as soon as the pending class was added. This fix allows for styles to be applied in the pending class without causing an animation to trigger prematurely.
1 parent e322cd9 commit ad3eb52

File tree

4 files changed

+487
-64
lines changed

4 files changed

+487
-64
lines changed

src/ng/animate.js

+17-7
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,12 @@ var $AnimateProvider = ['$provide', function($provide) {
9696
return currentDefer.promise;
9797
}
9898

99+
function applyStyles(element, styles) {
100+
if (angular.isObject(styles)) {
101+
element.css(styles.after || styles);
102+
}
103+
}
104+
99105
/**
100106
*
101107
* @ngdoc service
@@ -130,7 +136,8 @@ var $AnimateProvider = ['$provide', function($provide) {
130136
* after itself
131137
* @return {Promise} the animation callback promise
132138
*/
133-
enter : function(element, parent, after) {
139+
enter : function(element, parent, after, styles) {
140+
applyStyles(element, styles);
134141
after ? after.after(element)
135142
: parent.prepend(element);
136143
return asyncPromise();
@@ -146,7 +153,7 @@ var $AnimateProvider = ['$provide', function($provide) {
146153
* @param {DOMElement} element the element which will be removed from the DOM
147154
* @return {Promise} the animation callback promise
148155
*/
149-
leave : function(element) {
156+
leave : function(element, styles) {
150157
element.remove();
151158
return asyncPromise();
152159
},
@@ -168,10 +175,10 @@ var $AnimateProvider = ['$provide', function($provide) {
168175
* positioned next to
169176
* @return {Promise} the animation callback promise
170177
*/
171-
move : function(element, parent, after) {
178+
move : function(element, parent, after, styles) {
172179
// Do not remove element before insert. Removing will cause data associated with the
173180
// element to be dropped. Insert will implicitly do the remove.
174-
return this.enter(element, parent, after);
181+
return this.enter(element, parent, after, styles);
175182
},
176183

177184
/**
@@ -186,13 +193,14 @@ var $AnimateProvider = ['$provide', function($provide) {
186193
* @param {string} className the CSS class which will be added to the element
187194
* @return {Promise} the animation callback promise
188195
*/
189-
addClass : function(element, className) {
196+
addClass : function(element, className, styles) {
190197
className = !isString(className)
191198
? (isArray(className) ? className.join(' ') : '')
192199
: className;
193200
forEach(element, function (element) {
194201
jqLiteAddClass(element, className);
195202
});
203+
applyStyles(element, styles);
196204
return asyncPromise();
197205
},
198206

@@ -208,13 +216,14 @@ var $AnimateProvider = ['$provide', function($provide) {
208216
* @param {string} className the CSS class which will be removed from the element
209217
* @return {Promise} the animation callback promise
210218
*/
211-
removeClass : function(element, className) {
219+
removeClass : function(element, className, styles) {
212220
className = !isString(className)
213221
? (isArray(className) ? className.join(' ') : '')
214222
: className;
215223
forEach(element, function (element) {
216224
jqLiteRemoveClass(element, className);
217225
});
226+
applyStyles(element, styles);
218227
return asyncPromise();
219228
},
220229

@@ -231,9 +240,10 @@ var $AnimateProvider = ['$provide', function($provide) {
231240
* @param {string} remove the CSS class which will be removed from the element
232241
* @return {Promise} the animation callback promise
233242
*/
234-
setClass : function(element, add, remove) {
243+
setClass : function(element, add, remove, styles) {
235244
this.addClass(element, add);
236245
this.removeClass(element, remove);
246+
applyStyles(element, styles);
237247
return asyncPromise();
238248
},
239249

0 commit comments

Comments
 (0)