本文整理汇总了TypeScript中ui/dialogs.confirm函数的典型用法代码示例。如果您正苦于以下问题:TypeScript confirm函数的具体用法?TypeScript confirm怎么用?TypeScript confirm使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了confirm函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: setTimeout
setTimeout(() => {
Dialogs.confirm({
title: this.configuration.title,
message: this.configuration.text,
okButtonText: this.configuration.agreeButtonText,
cancelButtonText: this.configuration.declineButtonText,
neutralButtonText: this.configuration.remindButtonText
}).then(result => {
if (result == true) {
let appStore = "";
if (Application.android) {
let androidPackageName = this.configuration.androidPackageId ? this.configuration.androidPackageId : Application.android.packageName;
let uri = android.net.Uri.parse("market://details?id=" + androidPackageName);
let myAppLinkToMarket = new android.content.Intent(android.content.Intent.ACTION_VIEW, uri);
// Launch the PlayStore
Application.android.foregroundActivity.startActivity(myAppLinkToMarket);
} else if (Application.ios) {
appStore = "itms-apps://itunes.apple.com/en/app/id" + this.configuration.iTunesAppId;
}
Utility.openUrl(appStore);
} else if (result == false) {
// Decline
} else {
ApplicationSettings.setNumber(this.configuration.id, 0);
}
});
});
示例2: confirm
export function confirm(title: string, message: string): Promise<boolean> {
return dialogsModule.confirm({
title: title,
message: message,
okButtonText: "YES",
cancelButtonText: "NO"
});
}
示例3: onLowScore
onLowScore(): void {
Dialogs.confirm({
title: 'W i n n e r',
message: 'You solved the puzzle in ' + this.board.moves + ' moves!',
okButtonText: 'Ok'
}).then(() => {
this._stateService.updateLevel(2);
});
}
示例4: showDialog
export function showDialog(args: EventData) {
let options = {
title: "Dialog",
message: "Message",
okButtonText: "Yes",
cancelButtonText: "No"
}
confirm(options).then((result: boolean) => {
console.log(result);
})
}
示例5: onShowDialog
onShowDialog(title: string, result: string) {
let options: any = {
title: title,
message: result,
okButtonText: "Ok"
}
confirm(options).then((result: boolean) => {
console.log(result);
})
}
示例6: onLowScore
onLowScore(): void {
Dialogs.confirm({
title: 'W i n n e r',
message: 'You solved the puzzle in ' + this.board.moves + ' moves!',
okButtonText: 'Ok'
}).then(() => {
this._router.navigate([
'/:target', {
target: this.board.nextScreen
}
], Config.transition);
});
}
示例7: displayConfirmDialog
displayConfirmDialog() {
// >> confirm-dialog-code
let options = {
title: "Race selection",
message: "Are you sure you want to be a Unicorn?",
okButtonText: "Yes",
cancelButtonText: "No",
neutralButtonText: "Cancel"
};
dialogs.confirm(options).then((result: boolean) => {
console.log(result);
});
// << confirm-dialog-code
}
示例8: onHighScore
onHighScore(): void {
this.consoleLogMsg('level-three.component', 'onHighScore');
Dialogs.confirm({
title: 'W i n n e r',
message: 'You solved the puzzle in ' + this.board.moves + ' moves!',
okButtonText: 'Ok'
}).then(() => {
this._router.navigate([
'add-high-score/:level:moves:caller', {
moves: this.board.moves,
level: this.board.level,
caller: this.board.nextScreen
}
], Config.transition);
});
}
示例9: onHighScore
onHighScore(): void {
Dialogs.confirm({
title: 'W i n n e r',
message: 'You solved the puzzle in ' + this.board.moves + ' moves!',
okButtonText: 'Ok'
}).then(() => {
this.isBoardLoaded = false;
this._stateService.updateLevel(2);
this._router.navigate([
'add-high-score/:level:moves:caller', {
moves: this.board.moves,
level: this.board.level,
caller: this.board.nextScreen
}
], Config.transition);
});
}
示例10: confirm
public confirm(msg: string): Promise<any> {
return dialogs.confirm(msg);
}