If you're interested in functional programming, you might also want to checkout my second blog which i'm actively working on!!

Saturday, April 12, 2014

AngularJS demo

/**
* movies.json
**/
[
{
"title": "Avatar",
"year": 2009,
"director": "James Cameron",
"actors": ["Sam Worthington", "Sigourney Weaver"]
},
{
"title": "Aliens",
"year": 1986,
"director": "James Cameron",
"actors": ["Michael Biehn", "Sigourney Weaver"]
},
{
"title": "The Terminator",
"year": 1984,
"director": "James Cameron",
"actors": ["Michael Biehn", "Arnold Schwarzenegger", "Linda Hamilton"]
},
{
"title": "Indiana Jones and the Temple of Doom",
"year": 1984,
"director": "Steven Spielberg",
"actors": ["Harrison Ford", "Kate Capshaw"]
}
]
view raw gistfile1.js hosted with ❤ by GitHub
<!DOCTYPE html>
<html ng-app="moviesApp">
<!-- This demo only works in you serve the files from tomcat or any other webserver -->
<head>
<title>AngularJS demo</title>
<link rel="stylesheet" href="styles/movies.css" type="text/css"/>
<script data-main="scripts/movies" src="scripts/require.js"></script>
</head>
<body ng-controller="moviesController">
<h1>This page is dynamically constructed using AngularJS</h1>
<p>Total number of movies is {{movies.length}}</p>
<div>Search: <input ng-model="query"></div>
<div>Sort by:
<select ng-model="orderProp">
<option value="director">director</option>
<option value="title">title</option>
<option value="year">year</option>
</select>
</div>
<table>
<thead>
<tr>
<th>Title</th>
<th>Year</th>
<th>Director</th>
<th>Actors</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="movie in movies | filter:query | orderBy:orderProp">
<td>{{movie.title}}</td>
<td>{{movie.year}}</td>
<td>{{movie.director}}</td>
<td>{{movie.actors.join(",")}}</td>
</tr>
<tbody>
</body>
</html>
view raw gistfile1.html hosted with ❤ by GitHub
/* movies.css */
table {
border-collapse:collapse;
}
th {
text-align: left;
padding:3px;
border: 1px solid red;
}
td {
border: 1px dotted black;
padding: 3px;
}
view raw gistfile1.css hosted with ❤ by GitHub
/**
* movies.js
**/
require.config({
baseUrl: 'scripts',
paths: {
'angular': 'angular.min'
},
shim: {
"angular": {
exports: "angular"
}
}
});
requirejs(['angular'], function(angular) {
var moviesApp = angular.module('moviesApp', []);
moviesApp.controller('moviesController', function ($scope, $http) {
$http.get('data/movies.json')
.success(function(data) {
$scope.movies = data;
});
$scope.orderProp = 'title';
});
});
view raw gistfile1.js hosted with ❤ by GitHub

No comments:

Post a Comment