- App to search for and display github data for a user from the github API using the Ionic framework.
- Note: to open web links in a new window use: ctrl+click on link
- The Github API has a lot more detailed functionality available
- To start the server on localhost://8100 type: 'ionic serve'
- Extract from
app.component.html
to create menu list from an array in the component file
<ion-list>
<ion-menu-toggle auto-hide="false" *ngFor="let p of appPages; let i = index">
<ion-item
[routerLink]="p.url"
routerLinkActive="active"
routerDirection="root"
(click)="onSidenavClose()">
<ion-icon slot="start" [name]="p.icon" [class]="p.menuIcon"></ion-icon>
<ion-label *ngIf="language==='en'">
{{ p.title }}
</ion-label>
<ion-label *ngIf="language==='fr'">
{{ p.titlefr }}
</ion-label>
<ion-label *ngIf="language==='sp'">
{{ p.titlesp }}
</ion-label>
</ion-item>
</ion-menu-toggle>
</ion-list>
- The side menu is activated by the burger menu and extends from the left hand side
- Status: Working menu system but page content to be added and fr & es texts to be corrected.
- To-do: i18n, replace sidebar image. Change search result page to be a user profile with number of repos etc. and a photo. Add user repo detail page.
- This project is licensed under the terms of the MIT license.
- Repo created by ABateman, email: gomezbateman@yahoo.com