mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
demo(overlay): use injectable overlay controllers
This commit is contained in:
@ -1,16 +1,16 @@
|
|||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
import { ActionSheet, ionicBootstrap, NavController, Platform } from 'ionic-angular';
|
import { ActionSheetController, ionicBootstrap, Platform } from 'ionic-angular';
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
templateUrl: 'main.html'
|
templateUrl: 'main.html'
|
||||||
})
|
})
|
||||||
export class ApiDemoPage {
|
export class ApiDemoPage {
|
||||||
constructor(public nav: NavController, public platform: Platform) { }
|
constructor(public alertCtrl: ActionSheetController, public platform: Platform) { }
|
||||||
|
|
||||||
present() {
|
present() {
|
||||||
let actionSheet = ActionSheet.create({
|
let actionSheet = this.alertCtrl.create({
|
||||||
title: 'Albums',
|
title: 'Albums',
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
@ -53,7 +53,7 @@ export class ApiDemoPage {
|
|||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(actionSheet);
|
actionSheet.present();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
import { Alert, ionicBootstrap, NavController } from 'ionic-angular';
|
import { AlertController, ionicBootstrap } from 'ionic-angular';
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@ -12,20 +12,20 @@ export class ApiDemoPage {
|
|||||||
testCheckboxOpen = false;
|
testCheckboxOpen = false;
|
||||||
testCheckboxResult: any;
|
testCheckboxResult: any;
|
||||||
|
|
||||||
constructor(public nav: NavController) {}
|
constructor(public alertCtrl: AlertController) {}
|
||||||
|
|
||||||
doAlert() {
|
doAlert() {
|
||||||
let alert = Alert.create({
|
let alert = this.alertCtrl.create({
|
||||||
title: 'New Friend!',
|
title: 'New Friend!',
|
||||||
subTitle: 'Your friend, Obi wan Kenobi, just accepted your friend request!',
|
subTitle: 'Your friend, Obi wan Kenobi, just accepted your friend request!',
|
||||||
buttons: ['Ok']
|
buttons: ['Ok']
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(alert);
|
alert.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
doConfirm() {
|
doConfirm() {
|
||||||
let alert = Alert.create({
|
let alert = this.alertCtrl.create({
|
||||||
title: 'Use this lightsaber?',
|
title: 'Use this lightsaber?',
|
||||||
body: 'Do you agree to use this lightsaber to do good across the intergalactic galaxy?',
|
body: 'Do you agree to use this lightsaber to do good across the intergalactic galaxy?',
|
||||||
buttons: [
|
buttons: [
|
||||||
@ -44,11 +44,11 @@ export class ApiDemoPage {
|
|||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(alert);
|
alert.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
doPrompt() {
|
doPrompt() {
|
||||||
let alert = Alert.create({
|
let alert = this.alertCtrl.create({
|
||||||
title: 'Login',
|
title: 'Login',
|
||||||
body: "Enter a name for this new album you're so keen on adding",
|
body: "Enter a name for this new album you're so keen on adding",
|
||||||
inputs: [
|
inputs: [
|
||||||
@ -60,24 +60,24 @@ export class ApiDemoPage {
|
|||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
text: 'Cancel',
|
text: 'Cancel',
|
||||||
handler: data => {
|
handler: (data: any) => {
|
||||||
console.log('Cancel clicked');
|
console.log('Cancel clicked');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: 'Save',
|
text: 'Save',
|
||||||
handler: data => {
|
handler: (data: any) => {
|
||||||
console.log('Saved clicked');
|
console.log('Saved clicked');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(alert);
|
alert.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
doRadio() {
|
doRadio() {
|
||||||
let alert = Alert.create();
|
let alert = this.alertCtrl.create();
|
||||||
alert.setTitle('Lightsaber color');
|
alert.setTitle('Lightsaber color');
|
||||||
|
|
||||||
alert.addInput({
|
alert.addInput({
|
||||||
@ -126,18 +126,18 @@ export class ApiDemoPage {
|
|||||||
alert.addButton('Cancel');
|
alert.addButton('Cancel');
|
||||||
alert.addButton({
|
alert.addButton({
|
||||||
text: 'Ok',
|
text: 'Ok',
|
||||||
handler: data => {
|
handler: (data: any) => {
|
||||||
console.log('Radio data:', data);
|
console.log('Radio data:', data);
|
||||||
this.testRadioOpen = false;
|
this.testRadioOpen = false;
|
||||||
this.testRadioResult = data;
|
this.testRadioResult = data;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(alert);
|
alert.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
doCheckbox() {
|
doCheckbox() {
|
||||||
let alert = Alert.create();
|
let alert = this.alertCtrl.create();
|
||||||
alert.setTitle('Which planets have you visited?');
|
alert.setTitle('Which planets have you visited?');
|
||||||
|
|
||||||
alert.addInput({
|
alert.addInput({
|
||||||
@ -198,14 +198,14 @@ export class ApiDemoPage {
|
|||||||
alert.addButton('Cancel');
|
alert.addButton('Cancel');
|
||||||
alert.addButton({
|
alert.addButton({
|
||||||
text: 'Okay',
|
text: 'Okay',
|
||||||
handler: data => {
|
handler: (data: any) => {
|
||||||
console.log('Checkbox data:', data);
|
console.log('Checkbox data:', data);
|
||||||
this.testCheckboxOpen = false;
|
this.testCheckboxOpen = false;
|
||||||
this.testCheckboxResult = data;
|
this.testCheckboxResult = data;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(alert);
|
alert.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { Component, ViewEncapsulation } from '@angular/core';
|
import { Component, ViewEncapsulation } from '@angular/core';
|
||||||
|
|
||||||
import { ionicBootstrap, ItemSliding, NavController, Toast } from 'ionic-angular';
|
import { ionicBootstrap, ItemSliding, ToastController } from 'ionic-angular';
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@ -13,7 +13,7 @@ class ApiDemoPage {
|
|||||||
editButton: string = 'Edit';
|
editButton: string = 'Edit';
|
||||||
editing: boolean = false;
|
editing: boolean = false;
|
||||||
|
|
||||||
constructor(private nav: NavController) {
|
constructor(private toastCtrl: ToastController) {
|
||||||
this.chats = [
|
this.chats = [
|
||||||
{
|
{
|
||||||
img: './avatar-cher.png',
|
img: './avatar-cher.png',
|
||||||
@ -116,10 +116,10 @@ class ApiDemoPage {
|
|||||||
download(item: ItemSliding) {
|
download(item: ItemSliding) {
|
||||||
item.setClass('downloading', true);
|
item.setClass('downloading', true);
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
const toast = Toast.create({
|
const toast = this.toastCtrl.create({
|
||||||
message: 'Item was downloaded!'
|
message: 'Item was downloaded!'
|
||||||
});
|
});
|
||||||
this.nav.present(toast);
|
toast.present();
|
||||||
item.setClass('downloading', false);
|
item.setClass('downloading', false);
|
||||||
item.close();
|
item.close();
|
||||||
|
|
||||||
|
@ -1,75 +1,75 @@
|
|||||||
import { Component, ViewEncapsulation } from '@angular/core';
|
import { Component, ViewEncapsulation } from '@angular/core';
|
||||||
|
|
||||||
import { ionicBootstrap, Loading, NavController, Platform } from 'ionic-angular';
|
import { ionicBootstrap, LoadingController, NavController } from 'ionic-angular';
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
templateUrl: 'main.html'
|
templateUrl: 'main.html'
|
||||||
})
|
})
|
||||||
class Page1 {
|
class Page1 {
|
||||||
constructor(private nav: NavController, private platform: Platform) {}
|
constructor(private loadingCtrl: LoadingController, private nav: NavController) {}
|
||||||
|
|
||||||
presentLoadingIos() {
|
presentLoadingIos() {
|
||||||
let loading = Loading.create({
|
let loading = this.loadingCtrl.create({
|
||||||
spinner: 'ios',
|
spinner: 'ios',
|
||||||
content: 'This is the "ios" spinner. It will dismiss after 3 seconds.',
|
content: 'This is the "ios" spinner. It will dismiss after 3 seconds.',
|
||||||
duration: 3000
|
duration: 3000
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(loading);
|
loading.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
presentLoadingDots() {
|
presentLoadingDots() {
|
||||||
let loading = Loading.create({
|
let loading = this.loadingCtrl.create({
|
||||||
spinner: 'dots',
|
spinner: 'dots',
|
||||||
content: 'This is the "dots" spinner. It will dismiss after 3 seconds.',
|
content: 'This is the "dots" spinner. It will dismiss after 3 seconds.',
|
||||||
duration: 3000
|
duration: 3000
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(loading);
|
loading.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
presentLoadingBubbles() {
|
presentLoadingBubbles() {
|
||||||
let loading = Loading.create({
|
let loading = this.loadingCtrl.create({
|
||||||
spinner: 'bubbles',
|
spinner: 'bubbles',
|
||||||
content: 'This is the "bubbles" spinner. It will dismiss after 3 seconds.',
|
content: 'This is the "bubbles" spinner. It will dismiss after 3 seconds.',
|
||||||
duration: 3000
|
duration: 3000
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(loading);
|
loading.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
presentLoadingCircles() {
|
presentLoadingCircles() {
|
||||||
let loading = Loading.create({
|
let loading = this.loadingCtrl.create({
|
||||||
spinner: 'circles',
|
spinner: 'circles',
|
||||||
content: 'This is the "circles" spinner. It will dismiss after 3 seconds.',
|
content: 'This is the "circles" spinner. It will dismiss after 3 seconds.',
|
||||||
duration: 3000
|
duration: 3000
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(loading);
|
loading.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
presentLoadingCrescent() {
|
presentLoadingCrescent() {
|
||||||
let loading = Loading.create({
|
let loading = this.loadingCtrl.create({
|
||||||
spinner: 'crescent',
|
spinner: 'crescent',
|
||||||
content: 'This is the "crescent" spinner. It will dismiss after 3 seconds.',
|
content: 'This is the "crescent" spinner. It will dismiss after 3 seconds.',
|
||||||
duration: 3000
|
duration: 3000
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(loading);
|
loading.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
presentLoadingDefault() {
|
presentLoadingDefault() {
|
||||||
let loading = Loading.create({
|
let loading = this.loadingCtrl.create({
|
||||||
content: 'This is the mode specific spinner. It will dismiss after 3 seconds.',
|
content: 'This is the mode specific spinner. It will dismiss after 3 seconds.',
|
||||||
duration: 3000
|
duration: 3000
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(loading);
|
loading.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
presentLoadingCustom() {
|
presentLoadingCustom() {
|
||||||
let loading = Loading.create({
|
let loading = this.loadingCtrl.create({
|
||||||
spinner: 'hide',
|
spinner: 'hide',
|
||||||
content: `
|
content: `
|
||||||
<div class="custom-spinner-container">
|
<div class="custom-spinner-container">
|
||||||
@ -79,25 +79,25 @@ class Page1 {
|
|||||||
duration: 3000
|
duration: 3000
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(loading);
|
loading.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
presentLoadingText() {
|
presentLoadingText() {
|
||||||
let loading = Loading.create({
|
let loading = this.loadingCtrl.create({
|
||||||
spinner: 'hide',
|
spinner: 'hide',
|
||||||
content: 'This has no spinner, only text. It will dismiss after 3 seconds.',
|
content: 'This has no spinner, only text. It will dismiss after 3 seconds.',
|
||||||
duration: 3000
|
duration: 3000
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(loading);
|
loading.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
goToPage2() {
|
goToPage2() {
|
||||||
let loading = Loading.create({
|
let loading = this.loadingCtrl.create({
|
||||||
content: 'This will navigate to the next page and then dismiss after 3 seconds.'
|
content: 'This will navigate to the next page and then dismiss after 3 seconds.'
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(loading);
|
loading.present();
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.nav.push(Page2);
|
this.nav.push(Page2);
|
||||||
@ -109,6 +109,7 @@ class Page1 {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
template: `
|
template: `
|
||||||
<ion-header>
|
<ion-header>
|
||||||
@ -119,9 +120,8 @@ class Page1 {
|
|||||||
<ion-content padding>This is another page!</ion-content>
|
<ion-content padding>This is another page!</ion-content>
|
||||||
`
|
`
|
||||||
})
|
})
|
||||||
class Page2 {
|
class Page2 {}
|
||||||
constructor(private nav: NavController, private platform: Platform) {}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
template: '<ion-nav [root]="root"></ion-nav>',
|
template: '<ion-nav [root]="root"></ion-nav>',
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
import { Animation, Config, IonicApp, ionicBootstrap, Modal, NavController, NavParams, Platform, ViewController } from 'ionic-angular';
|
import { Animation, ionicBootstrap, ModalController, NavController, NavParams, ViewController } from 'ionic-angular';
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@ -9,21 +9,21 @@ import { Animation, Config, IonicApp, ionicBootstrap, Modal, NavController, NavP
|
|||||||
export class ModalFirstPage {
|
export class ModalFirstPage {
|
||||||
myParam = '';
|
myParam = '';
|
||||||
|
|
||||||
constructor(public nav: NavController) {}
|
constructor(public modalCtrl: ModalController) {}
|
||||||
|
|
||||||
openBasicModal() {
|
openBasicModal() {
|
||||||
let myModal = Modal.create(ModalContentPage);
|
let myModal = this.modalCtrl.create(ModalContentPage);
|
||||||
this.nav.present(myModal);
|
myModal.present();
|
||||||
}
|
}
|
||||||
openModalWithParams() {
|
openModalWithParams() {
|
||||||
let myModal = Modal.create(ModalContentPage, { 'myParam': this.myParam });
|
let myModal = this.modalCtrl.create(ModalContentPage, { 'myParam': this.myParam });
|
||||||
this.nav.present(myModal);
|
myModal.present();
|
||||||
}
|
}
|
||||||
openCustomAnimationModal() {
|
openCustomAnimationModal() {
|
||||||
let myModal = Modal.create(ModalContentPage, {
|
let myModal = this.modalCtrl.create(ModalContentPage, {
|
||||||
animation: 'my-fade-in',
|
animation: 'my-fade-in',
|
||||||
});
|
});
|
||||||
this.nav.present(myModal);
|
myModal.present();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -59,25 +59,25 @@ ionicBootstrap(ApiDemoApp);
|
|||||||
|
|
||||||
|
|
||||||
class FadeIn extends Animation {
|
class FadeIn extends Animation {
|
||||||
constructor(enteringView, leavingView) {
|
constructor(enteringView: ViewController, leavingView: ViewController) {
|
||||||
super(enteringView.pageRef());
|
super(enteringView.pageRef());
|
||||||
this
|
this
|
||||||
.easing('ease')
|
.easing('ease')
|
||||||
.duration(1000)
|
.duration(1000)
|
||||||
.fromTo('translateY', '0%', '0%')
|
.fromTo('translateY', '0%', '0%')
|
||||||
.fadeIn()
|
.fromTo('opacity', 0, 1)
|
||||||
.before.addClass('show-page');
|
.before.addClass('show-page');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Animation.register('my-fade-in', FadeIn);
|
Animation.register('my-fade-in', FadeIn);
|
||||||
|
|
||||||
class FadeOut extends Animation {
|
class FadeOut extends Animation {
|
||||||
constructor(enteringView, leavingView) {
|
constructor(enteringView: ViewController, leavingView: ViewController) {
|
||||||
super(leavingView.pageRef());
|
super(leavingView.pageRef());
|
||||||
this
|
this
|
||||||
.easing('ease')
|
.easing('ease')
|
||||||
.duration(500)
|
.duration(500)
|
||||||
.fadeOut()
|
.fromTo('opacity', 1, 0)
|
||||||
.before.addClass('show-page');
|
.before.addClass('show-page');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { Component, ElementRef, ViewChild, ViewEncapsulation } from '@angular/core';
|
import { Component, ElementRef, ViewChild, ViewEncapsulation } from '@angular/core';
|
||||||
|
|
||||||
import { Content, ionicBootstrap, NavController, NavParams, Popover } from 'ionic-angular';
|
import { ionicBootstrap, NavParams, PopoverController } from 'ionic-angular';
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@ -63,9 +63,9 @@ class PopoverRadioPage {
|
|||||||
background: string;
|
background: string;
|
||||||
contentEle: any;
|
contentEle: any;
|
||||||
textEle: any;
|
textEle: any;
|
||||||
fontFamily;
|
fontFamily: string;
|
||||||
|
|
||||||
colors = {
|
colors: any = {
|
||||||
'white': {
|
'white': {
|
||||||
'bg': 'rgb(255, 255, 255)',
|
'bg': 'rgb(255, 255, 255)',
|
||||||
'fg': 'rgb(0, 0, 0)'
|
'fg': 'rgb(0, 0, 0)'
|
||||||
@ -98,7 +98,7 @@ class PopoverRadioPage {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
getColorName(background) {
|
getColorName(background: any) {
|
||||||
let colorName = 'white';
|
let colorName = 'white';
|
||||||
|
|
||||||
if (!background) return 'white';
|
if (!background) return 'white';
|
||||||
@ -118,13 +118,13 @@ class PopoverRadioPage {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
changeBackground(color) {
|
changeBackground(color: any) {
|
||||||
this.background = color;
|
this.background = color;
|
||||||
this.contentEle.style.backgroundColor = this.colors[color].bg;
|
this.contentEle.style.backgroundColor = this.colors[color].bg;
|
||||||
this.textEle.style.color = this.colors[color].fg;
|
this.textEle.style.color = this.colors[color].fg;
|
||||||
}
|
}
|
||||||
|
|
||||||
changeFontSize(direction) {
|
changeFontSize(direction: string) {
|
||||||
this.textEle.style.fontSize = direction;
|
this.textEle.style.fontSize = direction;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -141,17 +141,15 @@ class ApiDemoPage {
|
|||||||
@ViewChild('popoverContent', {read: ElementRef}) content: ElementRef;
|
@ViewChild('popoverContent', {read: ElementRef}) content: ElementRef;
|
||||||
@ViewChild('popoverText', {read: ElementRef}) text: ElementRef;
|
@ViewChild('popoverText', {read: ElementRef}) text: ElementRef;
|
||||||
|
|
||||||
constructor(private nav: NavController) {
|
constructor(private popoverCtrl: PopoverController) {}
|
||||||
|
|
||||||
}
|
presentRadioPopover(ev: UIEvent) {
|
||||||
|
let popover = this.popoverCtrl.create(PopoverRadioPage, {
|
||||||
presentRadioPopover(ev) {
|
|
||||||
let popover = Popover.create(PopoverRadioPage, {
|
|
||||||
contentEle: this.content.nativeElement,
|
contentEle: this.content.nativeElement,
|
||||||
textEle: this.text.nativeElement
|
textEle: this.text.nativeElement
|
||||||
});
|
});
|
||||||
|
|
||||||
this.nav.present(popover, {
|
popover.present({
|
||||||
ev: ev
|
ev: ev
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -1,55 +1,55 @@
|
|||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
import { ionicBootstrap, NavController, Toast } from 'ionic-angular';
|
import { ionicBootstrap, ToastController } from 'ionic-angular';
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
templateUrl: 'main.html'
|
templateUrl: 'main.html'
|
||||||
})
|
})
|
||||||
class ApiDemoPage {
|
class ApiDemoPage {
|
||||||
constructor(private nav: NavController) { }
|
constructor(private toastCtrl: ToastController) { }
|
||||||
|
|
||||||
showToast(position: string) {
|
showToast(position: string) {
|
||||||
const toast = Toast.create({
|
const toast = this.toastCtrl.create({
|
||||||
message: 'User was created successfully',
|
message: 'User was created successfully',
|
||||||
position: position,
|
position: position,
|
||||||
duration: 3000
|
duration: 3000
|
||||||
});
|
});
|
||||||
|
|
||||||
toast.onDismiss(this.dismissHandler);
|
toast.onDismiss(this.dismissHandler);
|
||||||
this.nav.present(toast);
|
toast.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
showLongToast() {
|
showLongToast() {
|
||||||
const toast = Toast.create({
|
const toast = this.toastCtrl.create({
|
||||||
message: 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ea voluptatibus quibusdam eum nihil optio, ullam accusamus magni, nobis suscipit reprehenderit, sequi quam amet impedit. Accusamus dolorem voluptates laborum dolor obcaecati.',
|
message: 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ea voluptatibus quibusdam eum nihil optio, ullam accusamus magni, nobis suscipit reprehenderit, sequi quam amet impedit. Accusamus dolorem voluptates laborum dolor obcaecati.',
|
||||||
duration: 3000
|
duration: 3000
|
||||||
});
|
});
|
||||||
|
|
||||||
toast.onDismiss(this.dismissHandler);
|
toast.onDismiss(this.dismissHandler);
|
||||||
this.nav.present(toast);
|
toast.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
showDismissDurationToast() {
|
showDismissDurationToast() {
|
||||||
const toast = Toast.create({
|
const toast = this.toastCtrl.create({
|
||||||
message: 'I am dismissed after 1.5 seconds',
|
message: 'I am dismissed after 1.5 seconds',
|
||||||
duration: 1500
|
duration: 1500
|
||||||
});
|
});
|
||||||
toast.onDismiss(this.dismissHandler);
|
toast.onDismiss(this.dismissHandler);
|
||||||
this.nav.present(toast);
|
toast.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
showToastWithCloseButton() {
|
showToastWithCloseButton() {
|
||||||
const toast = Toast.create({
|
const toast = this.toastCtrl.create({
|
||||||
message: 'Your internet connection appears to be offline. Data integrity is not guaranteed.',
|
message: 'Your internet connection appears to be offline. Data integrity is not guaranteed.',
|
||||||
showCloseButton: true,
|
showCloseButton: true,
|
||||||
closeButtonText: 'Ok'
|
closeButtonText: 'Ok'
|
||||||
});
|
});
|
||||||
toast.onDismiss(this.dismissHandler);
|
toast.onDismiss(this.dismissHandler);
|
||||||
this.nav.present(toast);
|
toast.present();
|
||||||
}
|
}
|
||||||
|
|
||||||
private dismissHandler(toast: Toast) {
|
private dismissHandler() {
|
||||||
console.info('Toast onDismiss()');
|
console.info('Toast onDismiss()');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -448,7 +448,7 @@ export class NavController extends Ion {
|
|||||||
private present(enteringView: ViewController, opts?: NavOptions): Promise<any> {
|
private present(enteringView: ViewController, opts?: NavOptions): Promise<any> {
|
||||||
// deprecated warning: added beta.11 2016-06-27
|
// deprecated warning: added beta.11 2016-06-27
|
||||||
console.warn('nav.present() has been deprecated.\n' +
|
console.warn('nav.present() has been deprecated.\n' +
|
||||||
'Please use inject the overlays controller and use the present method on the instance instead.');
|
'Please inject the overlay\'s controller and use the present method on the instance instead.');
|
||||||
return Promise.resolve();
|
return Promise.resolve();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user