0.4.1 • Published 5 years ago

github-api-widget v0.4.1

Weekly downloads
22
License
MIT
Repository
github
Last release
5 years ago

Github Api Widget

npm version License: MIT Show github select user principal info layout

Demo

https://mugan86.github.io/github-api-widget/

Screenshots

Select user widget Search User widget

Instructions

Install

npm install github-api-widget

Add css style

In src/styles.css

@import "./../node_modules/github-api-widget/lib/assets/styles/styles.css";

Use in Angular

With default components (use search github user). Add only in desire component.html this tags

<github-api-search-user></github-api-search-user>

If not use search component

For example in app.component.ts add

Properties

user: User = null;
error: boolean;

Inject SearchService

constructor(private userSearch: SearchUserService) { } 

Take data from API Github with select user (for example 'mugan86')

this.userSearch.takeApiData('mugan86').then(
      data => {
        this.user = data;
      }
);

In html template (app.component.html) you must add:

Example

<github-api-user *ngIf="user" [user]="user"></github-api-user>

Change principal widget background image

Add in style.css this rule:

.user-card .header {
    background-image: url('<image-url>');
}
0.4.1

5 years ago

0.4.0

5 years ago

0.3.0

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago