Skip to content

Commit 8ca9797

Browse files
adamdbradleyjgw96
authored andcommittedJan 9, 2017
fix(clickblock): add NavOptions.minClickBlockDuration
* feat(clickblock): ability to set a minimum duration for click block * fix(clickblock): add NavOptions.minClickBlockDuration
1 parent 3f16423 commit 8ca9797

12 files changed

+50
-10
lines changed
 

‎src/components/action-sheet/action-sheet-component.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { Config } from '../../config/config';
66
import { Key } from '../../platform/key';
77
import { Platform } from '../../platform/platform';
88
import { NavParams } from '../../navigation/nav-params';
9+
import { NavOptions } from '../../navigation/nav-util';
910
import { ViewController } from '../../navigation/view-controller';
1011

1112
/**
@@ -174,7 +175,10 @@ export class ActionSheetCmp {
174175
}
175176

176177
dismiss(role: any): Promise<any> {
177-
return this._viewCtrl.dismiss(null, role);
178+
const opts: NavOptions = {
179+
minClickBlockDuration: 400
180+
};
181+
return this._viewCtrl.dismiss(null, role, opts);
178182
}
179183

180184
ngOnDestroy() {

‎src/components/action-sheet/action-sheet.ts

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export class ActionSheet extends ViewController {
5858
* @returns {Promise} Returns a promise which is resolved when the transition has completed.
5959
*/
6060
present(navOptions: NavOptions = {}) {
61+
navOptions.minClickBlockDuration = navOptions.minClickBlockDuration || 400;
6162
return this._app.present(this, navOptions);
6263
}
6364

‎src/components/alert/alert-component.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { GestureController, BlockerDelegate, BLOCK_ALL } from '../../gestures/ge
66
import { isPresent, assert } from '../../util/util';
77
import { Key } from '../../platform/key';
88
import { NavParams } from '../../navigation/nav-params';
9+
import { NavOptions } from '../../navigation/nav-util';
910
import { Platform } from '../../platform/platform';
1011
import { ViewController } from '../../navigation/view-controller';
1112

@@ -298,7 +299,10 @@ export class AlertCmp {
298299
}
299300

300301
dismiss(role: any): Promise<any> {
301-
return this._viewCtrl.dismiss(this.getValues(), role);
302+
const opts: NavOptions = {
303+
minClickBlockDuration: 400
304+
};
305+
return this._viewCtrl.dismiss(this.getValues(), role, opts);
302306
}
303307

304308
getValues(): any {

‎src/components/alert/alert.ts

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export class Alert extends ViewController {
8181
* @returns {Promise} Returns a promise which is resolved when the transition has completed.
8282
*/
8383
present(navOptions: NavOptions = {}) {
84+
navOptions.minClickBlockDuration = navOptions.minClickBlockDuration || 400;
8485
return this._app.present(this, navOptions);
8586
}
8687

‎src/components/app/app.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -119,17 +119,17 @@ export class App {
119119
* it will automatically enable the app again. It's basically a fallback incase
120120
* something goes wrong during a transition and the app wasn't re-enabled correctly.
121121
*/
122-
setEnabled(isEnabled: boolean, duration: number = 700) {
122+
setEnabled(isEnabled: boolean, duration: number = 700, minDuration: number = 0) {
123123
this._disTime = (isEnabled ? 0 : Date.now() + duration);
124124

125125
if (this._clickBlock) {
126126
if (isEnabled) {
127127
// disable the click block if it's enabled, or the duration is tiny
128-
this._clickBlock.activate(false, CLICK_BLOCK_BUFFER_IN_MILLIS);
128+
this._clickBlock.activate(false, CLICK_BLOCK_BUFFER_IN_MILLIS, minDuration);
129129

130130
} else {
131131
// show the click block for duration + some number
132-
this._clickBlock.activate(true, duration + CLICK_BLOCK_BUFFER_IN_MILLIS);
132+
this._clickBlock.activate(true, duration + CLICK_BLOCK_BUFFER_IN_MILLIS, minDuration);
133133
}
134134
}
135135
}

‎src/components/modal/modal-component.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { Component, ComponentFactoryResolver, HostListener, Renderer, ViewChild,
22

33
import { Key } from '../../platform/key';
44
import { NavParams } from '../../navigation/nav-params';
5+
import { NavOptions } from '../../navigation/nav-util';
56
import { ViewController } from '../../navigation/view-controller';
67
import { GestureController, BlockerDelegate, GESTURE_MENU_SWIPE, GESTURE_GO_BACK_SWIPE } from '../../gestures/gesture-controller';
78
import { assert } from '../../util/util';
@@ -78,7 +79,10 @@ export class ModalCmp {
7879

7980
_bdClick() {
8081
if (this._enabled && this._bdDismiss) {
81-
return this._viewCtrl.dismiss(null, 'backdrop').catch(() => {
82+
const opts: NavOptions = {
83+
minClickBlockDuration: 400
84+
};
85+
return this._viewCtrl.dismiss(null, 'backdrop', opts).catch(() => {
8286
console.debug('Dismiss modal by clicking backdrop was cancelled');
8387
});
8488
}

‎src/components/modal/modal.ts

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export class Modal extends ViewController {
5858
* @returns {Promise} Returns a promise which is resolved when the transition has completed.
5959
*/
6060
present(navOptions: NavOptions = {}) {
61+
navOptions.minClickBlockDuration = navOptions.minClickBlockDuration || 400;
6162
return this._app.present(this, navOptions, AppPortal.MODAL);
6263
}
6364

‎src/navigation/nav-controller-base.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ export class NavControllerBase extends Ion implements NavController {
663663
if (duration > DISABLE_APP_MINIMUM_DURATION && opts.disableApp !== false) {
664664
// if this transition has a duration and this is the root transition
665665
// then set that the app is actively disabled
666-
this._app.setEnabled(false, duration + ACTIVE_TRANSITION_OFFSET);
666+
this._app.setEnabled(false, duration + ACTIVE_TRANSITION_OFFSET, opts.minClickBlockDuration);
667667
} else {
668668
console.debug('transition is running but app has not been disabled');
669669
}

‎src/navigation/nav-util.ts

+1
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ export interface NavOptions {
162162
keyboardClose?: boolean;
163163
progressAnimation?: boolean;
164164
disableApp?: boolean;
165+
minClickBlockDuration?: number;
165166
ev?: any;
166167
updateUrl?: boolean;
167168
isNavRoot?: boolean;

‎src/navigation/view-controller.ts

+6
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,12 @@ export class ViewController {
167167
if (!this._nav) {
168168
return Promise.resolve(false);
169169
}
170+
if (this.isOverlay && !navOptions.minClickBlockDuration) {
171+
// This is a Modal being dismissed so we need
172+
// to add the minClickBlockDuration option
173+
// for UIWebView
174+
navOptions.minClickBlockDuration = 400;
175+
}
170176
this._dismissData = data;
171177
this._dismissRole = role;
172178

‎src/themes/util.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ ion-input :focus {
6363
opacity: 0;
6464
transform: translate3d(0, -100%, 0) translateY(1px);
6565

66-
// background: red;
67-
// opacity: .3;
66+
background: red;
67+
opacity: .3;
6868
contain: strict;
6969
}
7070

‎src/util/click-block.ts

+19-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ import { Platform } from '../platform/platform';
1414
export class ClickBlock {
1515
private _tmr: number;
1616
private _showing: boolean = false;
17+
private _start: number;
18+
private _minEnd: number;
1719
isEnabled: boolean;
1820

1921
constructor(
@@ -31,10 +33,15 @@ export class ClickBlock {
3133
}
3234
}
3335

34-
activate(shouldShow: boolean, expire: number = 100) {
36+
activate(shouldShow: boolean, expire: number = 100, minDuration: number = 0) {
3537
if (this.isEnabled) {
3638
this.plt.cancelTimeout(this._tmr);
3739
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);
3845
this._activate(true);
3946
}
4047
this._tmr = this.plt.timeout(this._activate.bind(this, false), expire);
@@ -44,6 +51,17 @@ export class ClickBlock {
4451
/** @internal */
4552
_activate(shouldShow: boolean) {
4653
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+
4765
this._setElementClass('click-block-active', shouldShow);
4866
this._showing = shouldShow;
4967
}

0 commit comments

Comments
 (0)
Please sign in to comment.