Files
2014-05-09 20:05:55 +08:00

45 lines
1.2 KiB
JavaScript

angular.module('uiRouterSample')
// A RESTful factory for retreiving contacts from 'contacts.json'
.factory('contacts', ['$http', function ($http, utils) {
var path = 'contacts.json';
var contacts = $http.get(path).then(function (resp) {
return resp.data.contacts;
});
var factory = {};
factory.all = function () {
return contacts;
};
factory.get = function (id) {
return contacts.then(function(){
return utils.findById(contacts, id);
})
};
return factory;
}])
.factory('utils', function () {
return {
// Util for finding an object by its 'id' property among an array
findById: function findById(a, id) {
for (var i = 0; i < a.length; i++) {
if (a[i].id == id) return a[i];
}
return null;
},
// Util for returning a randomKey from a collection that also isn't the current key
newRandomKey: function newRandomKey(coll, key, currentKey){
var randKey;
do {
randKey = coll[Math.floor(coll.length * Math.random())][key];
} while (randKey == currentKey);
return randKey;
}
};
});