HTML is good for declaring static documents, but it falters when declaring dynamic views. Angular.js extends HTML with new attributes and is perfect for Single Page Applications.
And the basics are pretty easy to learn.
✌
A design language developed by Google, material design is a guide for visual, motion, and interaction design across platforms and devices.
That basically means more responsive (and prettier) elements, and many cool animations and effects.
Google Inbox
QuickPic
Put one and two together...
And you get...
angularjs
angular material
Angular.js creates live templates as a view. This is very convenient as the view reflects dynamic changes any time the model is changed in the client.
Hello {{name}}
Demo!
Modules are the main way to define an Angular.js app.
Modules keep the global namespace clean and
also make it easy to share code between applications.
More importantly, having modules allow the application
to load different parts of the code in any order.
Two parameters are needed:
{String} Name of the module
{Array} List of dependencies
// Defining the module
angular.module('myApp', []);
// Getting the module
angular.module('myApp');
Scopes are a core fundamental of any Angular app and are used all over the framework.
Business functionality of the application
Methods in controllers
Properties in views
between the controller and view
for application state
All properties found on the $scope object is automatically accessible to the view
Controllers exist to augment the view, adding functionality to the scope of the view.
Controllers create new scopes
Demo!
Directives are Angular's way of creating new HTML elements that have their own custom functionality.
Usually with prefix ng-.
ng-app: Initialises an Angular application
ng-init: Initialises the application data
ng-model: Binds the value to application data
Demo!
Angular compiles the HTML code we write and invokes it as a directive.
Demo!
Click me!
Using replace: true
Click me!
There are four declaration formats:
Element
Attribute
Class
Comment
restrict: E
restrict: A
restrict: C
restrict: M
Attributes can be declared for our custom directive. These attributes are set on the inner scope of our custom directive.
Demo!
Angular gives three ways to bind data from outside the directive scope to the isolate scope inside the directive.
Local scope property
scope: {
// Binds a String to the value of the DOM attribute
myAttr: '@'
}
Bi-directional property
scope: {
// Binds the parent property with the local property
myProperty: '='
}
Parent execution binding
scope: {
// To execute a function in the parent scope
myFunc: '&'
}
This simple ToDoList app illustrates the basic usage of a controller and directive.
Demo!
Angular directives used:
ng-app | ng-controller | ng-if | ng-model |
ng-click | ng-repeat | ng-show
This controller initialises the ToDoList with three items and creates some functions to get the relevant information.
This directive is the view for each item in the ToDoList, which includes a checkbox and the ToDo description.
This looks ugly...
Let's bring in angularmaterial!
angularmaterial uses custom directives
Usually with prefix md-.
Demo!
angularmaterial directives used:
md-content | md-tabs | md-input-container |
md-button | md-subheader | md-list