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

Commit 48fef8a

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 9bedeb3 commit 48fef8a

File tree

4 files changed

+543
-64
lines changed

4 files changed

+543
-64
lines changed

src/ng/animate.js

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

99+
function applyStyles(element, styles) {
100+
if (angular.isObject(styles)) {
101+
if (styles.before || styles.after) {
102+
styles = extend(styles.before || {}, styles.after || {});
103+
}
104+
element.css(styles);
105+
}
106+
}
107+
99108
/**
100109
*
101110
* @ngdoc service
@@ -128,9 +137,11 @@ var $AnimateProvider = ['$provide', function($provide) {
128137
* a child (if the after element is not present)
129138
* @param {DOMElement} after the sibling element which will append the element
130139
* after itself
140+
* @param {object=} styles an optional collection of styles that will be applied to the element.
131141
* @return {Promise} the animation callback promise
132142
*/
133-
enter : function(element, parent, after) {
143+
enter : function(element, parent, after, styles) {
144+
applyStyles(element, styles);
134145
after ? after.after(element)
135146
: parent.prepend(element);
136147
return asyncPromise();
@@ -144,9 +155,10 @@ var $AnimateProvider = ['$provide', function($provide) {
144155
* @description Removes the element from the DOM. When the function is called a promise
145156
* is returned that will be resolved at a later time.
146157
* @param {DOMElement} element the element which will be removed from the DOM
158+
* @param {object=} styles an optional collection of styles that will be applied to the element.
147159
* @return {Promise} the animation callback promise
148160
*/
149-
leave : function(element) {
161+
leave : function(element, styles) {
150162
element.remove();
151163
return asyncPromise();
152164
},
@@ -166,12 +178,13 @@ var $AnimateProvider = ['$provide', function($provide) {
166178
* inserted into (if the after element is not present)
167179
* @param {DOMElement} after the sibling element where the element will be
168180
* positioned next to
181+
* @param {object=} styles an optional collection of styles that will be applied to the element.
169182
* @return {Promise} the animation callback promise
170183
*/
171-
move : function(element, parent, after) {
184+
move : function(element, parent, after, styles) {
172185
// Do not remove element before insert. Removing will cause data associated with the
173186
// element to be dropped. Insert will implicitly do the remove.
174-
return this.enter(element, parent, after);
187+
return this.enter(element, parent, after, styles);
175188
},
176189

177190
/**
@@ -184,15 +197,17 @@ var $AnimateProvider = ['$provide', function($provide) {
184197
* @param {DOMElement} element the element which will have the className value
185198
* added to it
186199
* @param {string} className the CSS class which will be added to the element
200+
* @param {object=} styles an optional collection of styles that will be applied to the element.
187201
* @return {Promise} the animation callback promise
188202
*/
189-
addClass : function(element, className) {
203+
addClass : function(element, className, styles) {
190204
className = !isString(className)
191205
? (isArray(className) ? className.join(' ') : '')
192206
: className;
193207
forEach(element, function (element) {
194208
jqLiteAddClass(element, className);
195209
});
210+
applyStyles(element, styles);
196211
return asyncPromise();
197212
},
198213

@@ -206,15 +221,17 @@ var $AnimateProvider = ['$provide', function($provide) {
206221
* @param {DOMElement} element the element which will have the className value
207222
* removed from it
208223
* @param {string} className the CSS class which will be removed from the element
224+
* @param {object=} styles an optional collection of styles that will be applied to the element.
209225
* @return {Promise} the animation callback promise
210226
*/
211-
removeClass : function(element, className) {
227+
removeClass : function(element, className, styles) {
212228
className = !isString(className)
213229
? (isArray(className) ? className.join(' ') : '')
214230
: className;
215231
forEach(element, function (element) {
216232
jqLiteRemoveClass(element, className);
217233
});
234+
applyStyles(element, styles);
218235
return asyncPromise();
219236
},
220237

@@ -229,11 +246,13 @@ var $AnimateProvider = ['$provide', function($provide) {
229246
* removed from it
230247
* @param {string} add the CSS classes which will be added to the element
231248
* @param {string} remove the CSS class which will be removed from the element
249+
* @param {object=} styles an optional collection of styles that will be applied to the element.
232250
* @return {Promise} the animation callback promise
233251
*/
234-
setClass : function(element, add, remove) {
252+
setClass : function(element, add, remove, styles) {
235253
this.addClass(element, add);
236254
this.removeClass(element, remove);
255+
applyStyles(element, styles);
237256
return asyncPromise();
238257
},
239258

0 commit comments

Comments
 (0)