User Gallery
The client front-end would show the user all his repo colleagues details.
User details format:
User = {
username: String,
ip: String, //ip isn't a number
email: String,
avatar: String // should be reference to the user avatar
}
Design:
An Angular 2 component which will have the following features:
input - array of User objects.
- Avater fetching method:
if (User.avatar === undefined || User.update === true) {get user avatar from Gravatar and update User;}
consider using gravatar-npm
- Display users gallery which will show user.avatar and below it all other user details.
User Gallery
The client front-end would show the user all his repo colleagues details.
User details format:
Design:
An
Angular 2component which will have the following features:input- array ofUserobjects.if (User.avatar === undefined || User.update === true) {get user avatar from Gravatar and update User;}
consider using gravatar-npm