@@ -14,6 +14,8 @@ import { Platform } from '../platform/platform';
14
14
export class ClickBlock {
15
15
private _tmr : number ;
16
16
private _showing : boolean = false ;
17
+ private _start : number ;
18
+ private _minEnd : number ;
17
19
isEnabled : boolean ;
18
20
19
21
constructor (
@@ -31,10 +33,15 @@ export class ClickBlock {
31
33
}
32
34
}
33
35
34
- activate ( shouldShow : boolean , expire : number = 100 ) {
36
+ activate ( shouldShow : boolean , expire : number = 100 , minDuration : number = 0 ) {
35
37
if ( this . isEnabled ) {
36
38
this . plt . cancelTimeout ( this . _tmr ) ;
37
39
if ( shouldShow ) {
40
+ // remember when we started the click block
41
+ this . _start = Date . now ( ) ;
42
+ // figure out the minimum time it should be showing until
43
+ // this is useful for transitions that are less than 300ms
44
+ this . _minEnd = this . _start + ( minDuration || 0 ) ;
38
45
this . _activate ( true ) ;
39
46
}
40
47
this . _tmr = this . plt . timeout ( this . _activate . bind ( this , false ) , expire ) ;
@@ -44,6 +51,17 @@ export class ClickBlock {
44
51
/** @internal */
45
52
_activate ( shouldShow : boolean ) {
46
53
if ( this . _showing !== shouldShow ) {
54
+
55
+ if ( ! shouldShow ) {
56
+ // check if it was enabled before the minimum duration
57
+ // this is useful for transitions that are less than 300ms
58
+ var now = Date . now ( ) ;
59
+ if ( now < this . _minEnd ) {
60
+ this . _tmr = this . plt . timeout ( this . _activate . bind ( this , false ) , this . _minEnd - now ) ;
61
+ return ;
62
+ }
63
+ }
64
+
47
65
this . _setElementClass ( 'click-block-active' , shouldShow ) ;
48
66
this . _showing = shouldShow ;
49
67
}
0 commit comments