mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
164 lines
3.9 KiB
TypeScript
164 lines
3.9 KiB
TypeScript
import { Alert, Loading, NavController, App, Page } from '../../../../../ionic/index';
|
|
import { FORM_DIRECTIVES, FormBuilder, ControlGroup, Validators } from 'angular2/common';
|
|
|
|
|
|
@Page({
|
|
templateUrl: 'main.html'
|
|
})
|
|
export class E2EPage {
|
|
|
|
constructor(private nav: NavController) {}
|
|
|
|
submit() {
|
|
var alert = Alert.create({
|
|
title: 'Not logged in',
|
|
message: 'Sign in to continue.',
|
|
buttons: [
|
|
{
|
|
text: 'Sign in',
|
|
handler: () => {
|
|
console.log('Sign in');
|
|
}
|
|
}
|
|
]
|
|
});
|
|
|
|
alert.onDismiss((asdf) => {
|
|
console.log('dismiss');
|
|
this.nav.push(AnotherPage);
|
|
});
|
|
|
|
this.nav.present(alert);
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
template: `
|
|
<ion-navbar *navbar>
|
|
<ion-title>Another Page</ion-title>
|
|
</ion-navbar>
|
|
<ion-content padding>
|
|
<form [ngFormModel]="form" (ngSubmit)="submit(form.value)">
|
|
<ion-list>
|
|
<ion-item [class.error]="!form.controls.name.valid && form.controls.name.touched">
|
|
<ion-label>Name</ion-label>
|
|
<ion-input type="text" [(ngFormControl)]="form.controls.name"></ion-input>
|
|
</ion-item>
|
|
</ion-list>
|
|
<div padding style="padding-top: 0 !important;">
|
|
<button list-item primary block>
|
|
Submit
|
|
</button>
|
|
</div>
|
|
</form>
|
|
<p>
|
|
<button block (click)="doFastPop()">Fast Loading Dismiss, Nav Pop</button>
|
|
</p>
|
|
</ion-content>
|
|
`
|
|
})
|
|
class AnotherPage {
|
|
form: ControlGroup;
|
|
|
|
constructor(private nav: NavController, private builder: FormBuilder) {
|
|
this.form = builder.group({
|
|
name: builder.control('', Validators.compose([
|
|
Validators.required,
|
|
Validators.minLength(5)
|
|
]))
|
|
});
|
|
}
|
|
|
|
submit(value: any): void {
|
|
if (this.form.valid) {
|
|
console.log(value);
|
|
} else {
|
|
this.nav.present(Alert.create({
|
|
title: 'Invalid input data',
|
|
subTitle: "Please correct the errors and resubmit the data.",
|
|
buttons: [ 'OK' ]
|
|
}));
|
|
}
|
|
}
|
|
|
|
onPageDidEnter() {
|
|
this.showConfirm();
|
|
}
|
|
|
|
showConfirm() {
|
|
const alert = Alert.create({
|
|
title: `Hi there`,
|
|
buttons: [
|
|
{
|
|
text: 'Go Back',
|
|
role: 'cancel',
|
|
handler: () => {
|
|
alert.dismiss().then(() => {
|
|
this.nav.pop();
|
|
});
|
|
return false;
|
|
}
|
|
},
|
|
{
|
|
text: 'Stay Here',
|
|
handler: () => {
|
|
console.log('Stay Here');
|
|
}
|
|
}
|
|
]
|
|
});
|
|
this.nav.present(alert);
|
|
}
|
|
|
|
doFastPop() {
|
|
let alert = Alert.create({
|
|
title: 'Async Nav Transition',
|
|
message: 'This is an example of dismissing an alert, then quickly starting another transition on the same nav controller.',
|
|
buttons: [{
|
|
text: 'Ok',
|
|
handler: () => {
|
|
// present a loading indicator
|
|
let loading = Loading.create({
|
|
content: 'Loading...'
|
|
});
|
|
this.nav.present(loading);
|
|
|
|
// start an async operation
|
|
setTimeout(() => {
|
|
// the async operation has completed
|
|
// dismiss the loading indicator
|
|
loading.dismiss();
|
|
|
|
// begin dismissing the alert
|
|
alert.dismiss().then(() => {
|
|
// after the alert has been dismissed
|
|
// then you can do another nav transition
|
|
this.nav.pop();
|
|
});
|
|
}, 100);
|
|
|
|
// return false so the alert doesn't automatically
|
|
// dismissed itself. Instead we're manually
|
|
// handling the dismiss logic above so that we
|
|
// can wait for the alert to finish it's dismiss
|
|
// transition before starting another nav transition
|
|
// on the same nav controller
|
|
return false;
|
|
}
|
|
}]
|
|
});
|
|
this.nav.present(alert);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
@App({
|
|
template: '<ion-nav [root]="root"></ion-nav>'
|
|
})
|
|
class E2EApp {
|
|
root;
|
|
constructor() {
|
|
this.root = E2EPage;
|
|
}
|
|
} |