Files
Dan Bucholtz 52081a471a refactor(deep-linking): change to
change  to
2017-03-20 10:14:36 -05:00

105 lines
3.3 KiB
TypeScript

import { Component } from '@angular/core';
import { AlertController, IonicPage, NavController, ViewController } from '../../../../../..';
@IonicPage({
name: 'primary-header-page'
})
@Component({
template: `
<ion-header>
<ion-navbar color="primary">
<ion-title>Primary Color Page Header</ion-title>
<ion-buttons end>
<button ion-button>S1g</button>
</ion-buttons>
</ion-navbar>
<ion-toolbar>
<ion-title>{{subheader}}</ion-title>
</ion-toolbar>
</ion-header>
<ion-content padding fullscreen>
<p><button ion-button class="e2eFrom3To2" (click)="navCtrl.pop()">Pop</button></p>
<p><button ion-button (click)="pushAnother()">Push to AnotherPage</button></p>
<p><button ion-button (click)="pushFullPage()">Push to FullPage</button></p>
<p><button ion-button (click)="setRoot()">setRoot(AnotherPage)</button></p>
<p><button ion-button (click)="navCtrl.popToRoot()">Pop to root</button></p>
<p><button ion-button id="insert" (click)="insert()">Insert first page into history before this</button></p>
<p><button ion-button id="remove" (click)="removeSecond()">Remove second page in history</button></p>
<div class="yellow"><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div><div f></div></div>
<button ion-button ion-fixed no-margin color="danger" (click)="presentAlert()">fixed button (alert)</button>
<div ion-fixed style="position: absolute; pointer-events: none; top:0; bottom:0; right:0; width:50%; background: rgba(0,0,0,0.5);"></div>
</ion-content>
<ion-footer>
<ion-toolbar>
I'm a sub footer!
</ion-toolbar>
<ion-toolbar>
<ion-title>Footer</ion-title>
</ion-toolbar>
</ion-footer>
`
})
export class PrimaryHeaderPage {
subheader: string;
constructor(
public navCtrl: NavController,
public alertCtrl: AlertController,
public viewCtrl: ViewController
) {}
ionViewDidLoad() {
console.log('ionViewDidLoad, PrimaryHeaderPage', this.viewCtrl.id);
}
ionViewWillEnter() {
console.log('ionViewWillEnter, PrimaryHeaderPage', this.viewCtrl.id);
this.viewCtrl.setBackButtonText('Previous');
this.subheader = 'I\'m a sub header!';
}
ionViewDidEnter() {
console.log('ionViewDidEnter, PrimaryHeaderPage', this.viewCtrl.id);
}
ionViewWillLeave() {
console.log('ionViewWillLeave, PrimaryHeaderPage', this.viewCtrl.id);
}
ionViewDidLeave() {
console.log('ionViewDidLeave, PrimaryHeaderPage', this.viewCtrl.id);
}
ionViewWillUnload() {
console.log('ionViewWillUnload, PrimaryHeaderPage', this.viewCtrl.id);
}
pushAnother() {
this.navCtrl.push('another-page');
}
pushFullPage() {
this.navCtrl.push('full-page', { id: 8675309, myData: [1, 2, 3, 4] });
}
insert() {
this.navCtrl.insert(2, 'first-page');
}
removeSecond() {
this.navCtrl.remove(1);
}
setRoot() {
this.navCtrl.setRoot('another-page');
}
presentAlert() {
let alert = this.alertCtrl.create();
alert.setTitle('Hello Alert');
alert.addButton({ text: 'Dismiss', role: 'cancel', });
alert.present();
}
}