-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
135 lines (103 loc) · 3.84 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
// main application module
var appModule = angular.module('githubApp', ['ngRoute']);
// for c# like syntax
String.format = function(){
var args = arguments,
string = args[0];
// replace occurances of {n} with arguments[n]
return string.replace(new RegExp("\\{([0-9]+)\\}", "g"), function (match, subMatch) {
// added 1 because the first argument is the string itself
var index = parseInt(subMatch) + 1;
// value not found
if (typeof args[index] == "undefined")
throw String.format("value not found at index:{0} for the string:{1}", index, string);
// return the replacement
return args[index];
});
};
appModule.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'views/home.html',
controller: 'homeController'
})
.when('/commit/:userName/:repoName', {
templateUrl: 'views/commits.html',
controller: 'commitController'
})
.otherwise({
redirectTo: '/'
});
});
appModule.controller('commitController',
function ($scope, gitFetcherService, $routeParams) {
$scope.repoName = $routeParams.repoName;
$scope.userName = $routeParams.userName;
gitFetcherService
.fetchCommits($scope.userName, $scope.repoName)
.success(function (result) {
$scope.commits = result;
});
});
appModule.controller('homeController',
function ($scope, gitFetcherService) {
$scope.appTitle = 'Github Repos Explorer';
$scope.appDesc = '... may the force be with angularjs';
$scope.canSearch = false;
$scope.searchMode = 'desc';
$scope.getRepos = function () {
// fetching the repos using the fetcher service
gitFetcherService
.fetchRepos($scope.userName)
.success(function (result) {
$scope.repos = result;
if (result.length > 0)
$scope.canSearch = true;
else
$scope.canSearch = false;
});
};
});
appModule.service('gitFetcherService',
function ($http) {
var githubApiHost = "https://api.github.com"
this.fetchRepos = function (userName) {
return $http({
method: 'Get',
url: String.format("{0}/users/{1}/repos", githubApiHost, userName)
});
};
this.fetchCommits = function (userName, repoName) {
return $http({
method: 'Get',
url: String.format("{0}/repos/{1}/{2}/commits", githubApiHost, userName, repoName)
});
};
this.fetchTags = function (userName, repoName) {
return $http({
method: 'Get',
url: String.format("{0}/repos/{1}/{2}/tags", githubApiHost, userName, repoName)
});
};
});
appModule.filter('searchRepoFilter',
function () {
return function (items, term, mode) {
if (items != null && items.length > 0 && term != null) {
var itemsResult = [];
items.forEach(function (item) {
if (mode == 'name') {
term = term.toLowerCase();
if (item.name != null && item.name.toLowerCase().search(term) > -1)
itemsResult.push(item);
} else {
term = term.toLowerCase();
if (item.description != null && item.description.toLowerCase().search(term) > -1)
itemsResult.push(item);
}
});
return itemsResult;
}
return items;
};
});