@@ -234,6 +234,10 @@ export default class NavStack extends Component {
234
234
}
235
235
236
236
cut ( ) {
237
+ if ( this . isDestroying || this . isDestroyed ) {
238
+ return ;
239
+ }
240
+
237
241
this . horizontalTransition ( {
238
242
toValue : this . computeXPosition ( ) ,
239
243
animate : false ,
@@ -249,6 +253,9 @@ export default class NavStack extends Component {
249
253
}
250
254
251
255
slideForward ( ) {
256
+ if ( this . isDestroying || this . isDestroyed ) {
257
+ return ;
258
+ }
252
259
this . horizontalTransition ( {
253
260
toValue : this . computeXPosition ( ) ,
254
261
finishCallback : ( ) => {
@@ -258,6 +265,9 @@ export default class NavStack extends Component {
258
265
}
259
266
260
267
slideBack ( ) {
268
+ if ( this . isDestroying || this . isDestroyed ) {
269
+ return ;
270
+ }
261
271
this . horizontalTransition ( {
262
272
toValue : this . computeXPosition ( ) ,
263
273
finishCallback : ( ) => {
@@ -268,6 +278,10 @@ export default class NavStack extends Component {
268
278
}
269
279
270
280
slideUp ( ) {
281
+ if ( this . isDestroying || this . isDestroyed ) {
282
+ return ;
283
+ }
284
+
271
285
let debug = this . birdsEyeDebugging ;
272
286
this . verticalTransition ( {
273
287
element : this . element ,
@@ -277,6 +291,9 @@ export default class NavStack extends Component {
277
291
}
278
292
279
293
slideDown ( ) {
294
+ if ( this . isDestroying || this . isDestroyed ) {
295
+ return ;
296
+ }
280
297
let debug = this . birdsEyeDebugging ;
281
298
let clonedElement = this . clones . elements [ this . clones . elements . length - 1 ] ;
282
299
let y = debug ? 480 : clonedElement . getBoundingClientRect ( ) . height ;
0 commit comments