Chris Breiding
(use arrow keys to navigate through slides)
<!DOCTYPE html>
<html ng-app="myApp">
<head>
...
</head>
<body ng-controller="PageCtrl">
<h1>{{title}}</h1>
<p>{{content}}</p>
</body>
</html>
var myApp = angular.module('myApp');
myApp.controller('PageCtrl', function ($scope) {
$scope.title = 'The Eleventh Hour';
$scope.content = "There's something you better understand about me, 'cause it's important and one day your life may depend on it. I am definitely a madman with a box!";
});
<!DOCTYPE html>
<html ng-app>
<head>
...
</head>
<body>
<input ng-model="items" type="text" />
<p>{{items || 'Fezes'}} are cool!</p>
</body>
</html>
"Teach HTML new tricks"
Add behavior to DOM elements with custom attributes
Create custom elements
<!DOCTYPE html>
<html ng-app="quoteApp">
<head>
...
</head>
<body ng-controller="QuoteCtrl">
<ul>
<li ng-repeat="quote in quotes"
ng-class="{emphasize: quote.em}"
ng-click="toggleEmphasis(quote)">
"{{quote.text}}"
</li>
</ul>
</body>
</html>
var quoteApp = angular.module('quoteApp', []);
quoteApp.controller('QuoteCtrl', function ($scope) {
$scope.quotes = [
{ em : false, text : "Never ignore a ..." },
{ em : true, text : "Bow ties are cool." },
{ em : false, text : "It's a lot to take ..." },
{ em : false, text : "First things first. You ..." }
];
$scope.toggleEmphasis = function (quote) {
quote.em = !quote.em;
};
});
Attributes
<select chosen>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
Chosen site | Tutorial
Elements
<markdown>
# AngularJS
* Directives
* Services
* Filters
</markdown>
Tutorial Part 1 | Tutorial Part 2
Injectable objects that carry out specific tasks
Provide a way to separate concerns and re-use code
services.js
angular.module('quoteServices', ['ngResource'])
.factory('Quote', function ($resource) {
return $resource('/quotes/:id');
});
quote_controller.js
var quoteApp = angular.module('quoteApp', ['quoteServices']);
quoteApp.controller('QuoteCtrl', function ($scope, Quote) {
$scope.quotes = Quote.query();
$scope.toggleEmphasis = function (quote) {
quote.em = !quote.em;
};
});
Used in template expressions to format the display of data
currency
<input type="number" ng-model="amount">
<p>{{amount | currency}}</p>
filter
<input type="text" ng-model="query">
<ul>
<li ng-repeat="item in items | filter:query">
{{item}}
</li>
</ul>
angular.module('quoteApp', [],
function($routeProvider) {
$routeProvider
.when('/', {
templateUrl : 'views/index.html',
controller : 'QuoteCtrl'
})
.when('/quote/:id', {
templateUrl : 'views/show.html',
controller : 'QuoteDetailCtrl'
})
.otherwise({ redirectTo : '/' });
}
);
quote_controller.js
var myApp = angular.module('myApp');
myApp.controller('QuoteCtrl', function ($scope, $http) {
$http.get('/quotes').success(function(data) {
$scope.quotes = data;
});
});
controller_spec.js
describe('QuoteCtrl', function() {
var scope, ctrl, $httpBackend;
beforeEach(inject(function(_$httpBackend_, $rootScope, $controller) {
$httpBackend = _$httpBackend_;
$httpBackend.expectGET('/quotes')
.respond([{text: 'Four score...'}, {text: 'Ask not...'}]);
scope = $rootScope.$new();
ctrl = $controller('QuoteCtrl', {$scope: scope});
}));
it('creates a quotes model with 2 quotes fetched from xhr', function() {
expect(scope.quotes).toBeUndefined();
$httpBackend.flush();
expect(scope.quotes)
.toEqual([{text: 'Four score...'}, {text: 'Ask not...'}]);
});
});
describe('Grocery list', function() {
beforeEach(function() {
browser().navigateTo('/');
});
it('filters the grocery list based on the search query', function() {
expect(repeater('.groceries li').count()).toBe(7);
input('query').enter('b');
expect(repeater('.groceries li').count()).toBe(2);
input('query').enter('cheese');
expect(repeater('.groceries li').count()).toBe(3);
});
});