Build Your First Mobile App With Ionic 2 & Angular 2 - Part 6

by - April 02, 2017

We are already using navigation...

Before we start writing any code, I want to point out that we are actually already using navigation in the app to load HomePage.
Have a look in your app.component.ts file and you'll see the following lines of code:
@Component({
  templateUrl: 'app.html'
})
export class MyApp {  
  rootPage = HomePage;

The app.component.ts file is the starting point for the app and as you can see it's template contains an <ion-nav> element. This is a navigation controller and we'll use it, later on, to navigate between the pages.
The rootPage is set to HomePage, so the navigation controller knows which page to load when the app is launched. You can obviously change this to any page you have within the app.
Now it's time to write the code for navigating to the details page.

Modify HomePage

Let's start by adding a click handler in home.html for the repo items.
<ion-card *ngFor="let repo of foundRepos" (click)="goToDetails(repo)">  
We'll need to import NavController in home.ts.
import { NavController } from 'ionic-angular';  
import { DetailsPage } from '../details/details';  
We're also importing DetailsPage, but we haven't actually built that yet, so you'll probably see an error in your editor, but just ignore that for now.
Next, inject the NavController into the constructor.
constructor(private github: GitHubService,  
            private nav: NavController) {
}
And add the goToDetails function to handle the click and instruct it to navigate to the DetailsPage.
goToDetails(repo) {  
    this.nav.push(DetailsPage, { repo: repo });
}
OK, that was easy, right? Let's take a step back to understand the way navigation works in Ionic.
The NavController already has the first page loaded: HomePage and to navigate to DetailsPage, we push it onto the navigation stack and the framework will take care of loading the page and displaying the view transitions that are unique to the mobile platform.
We can use the pop function to take DetailsPage out of the navigation stack, the navigation controller will then go back to HomePage.
We don't need to explicitly use the pop function if DetailsPage has an <ion-navbar> because the framework will put a Back button in the navigation bar. When the user taps this button, the pop will be automatically executed.
We also want DetailsPage to know which repo was selected by the user, so we are sending the repoas a parameter and later on we'll see how to retrieve it on DetailsPage.
Add new function to GithubService
Import Headers, we'll use that in the new function.
import { Http, Headers } from '@angular/http';  
We'll add the getDetails function to GitHubService, so we can call that when we're creating DetailsPage.
getDetails(repo) {  
    let headers = new Headers();
    headers.append('Accept','application/vnd.github.VERSION.html');

    return this.http.get(`${repo.url}/readme`, { headers: headers });
}
The code above will get the contents of the repo's README file. We're adding the Accept header to specify that we want the README in HTML format, so we can easily display it on the DetailsPage.

Create DetailsPage

Go into the apps/pages folder in the project and add a new folder details.
Update April 8: The Ionic CLI can now generate the page based on a TypeScript template with theionic generate command. See documentation. You can generate all the files for the DetailsPagewith this command ionic g page details.
Create the file details.html and add the following code:
<ion-header>  
  <ion-navbar>
    <ion-title>
      {{ repo.name }}
    </ion-title>
  </ion-navbar>

</ion-header>

<ion-content>  
  <div padding [innerHTML]="readme"></div>
</ion-content>  
As you can see we're using a different type of binding for displaying the README contents. We can not use the code below because that will encode the HTML code and we'll end up seeing the code itself on the view.
<div padding>{{ readme }}</div>  
What we want is to add the contents of the README file as HTML to the DOM, and we can do that by binding the innerHTML property on the <div> to readme.
Create the file details.ts and add the following code:
import { Component } from '@angular/core';  
import { NavController, NavParams } from 'ionic-angular';  
import { GitHubService } from '../../services/github';

@Component({
    selector: 'page-details',
    templateUrl: 'details.html',
    providers: [GitHubService]
})
export class DetailsPage {  
    public readme = '';
    public repo;

    constructor(private github: GitHubService, 
                private nav: NavController, 
                private navParams: NavParams) {

        this.repo = navParams.get('repo');

        this.github.getDetails(this.repo).subscribe(
            data => this.readme = data.text(),
            err => {
                if (err.status == 404) {
                    this.readme = 'This repo does not have a README. :(';
                } else {
                    console.error(err);
                }
            },
            () => console.log('getDetails completed')
        );
    }
}
This page is quite similar to HomePage, except now we're also importing the NavParams module. We need that to get the parameter repo that was sent by HomePage.

Add DetailsPage to App Module

The final thing we have to do now is add DetailsPage in app.module.ts in the declarations and entryComponents sections.
import { DetailsPage } from '../pages/details/details';

@NgModule({
  declarations: [
    MyApp,
    HomePage,
    DetailsPage
  ],
  imports: [
    IonicModule.forRoot(MyApp)
  ],
  bootstrap: [IonicApp],
  entryComponents: [
    MyApp,
    HomePage,
    DetailsPage
  ],

We're Done!

Fire up the browser with ionic serve and you should be able to tap on a repository and see the contents of the README file.
Screenshot App

You May Also Like

0 comments