Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

solution #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
var app = angular.module("movies", []);

app.controller("moviesCtr", ["$scope", function($scope) {
$scope.moviesToWatch=[
{name: "Star Wars",
length: "120 min"},
{name: "13 hours",
length: "115 min"},
{name: "Ride Along",
length: "100 min"},
{name: "Daddy's Home",
length: "110 min"},
{name: "Norm of the North",
length: "90 min"},
{name: "The Forest",
length: "134 min"},
{name: "Sisters",
length: "124 min"},
{name: "The 5th Wave",
length: "103 min"},
{name: "Dirty Grandpa",
length: "80 min"},
{name: "The Boy",
length: "130 min"}
];
$scope.addMovie=function(){
$scope.moviesToWatch.push($scope.movie);
$scope.movie={};
};
$scope.limit = 5;
$scope.incrementLimit = function() {
$scope.limit = 10;
$scope.morebtn = true;
};
$scope.decrementLimit = function() {
$scope.limit = 5;
$scope.morebtn = false;

};
$scope.deleteMovie = function(movie){
var movieToDelete = $scope.moviesToWatch.indexOf(movie);
$scope.moviesToWatch.splice(movieToDelete, 1);
};
}]);
44 changes: 44 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html >
<html lang="en" ng-app="movies">
<head>
<meta charset="UTF-8">
<title>Angular</title>
<!-- bootstrap css -->
<link type="text/css" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">

<!-- angular -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.8/angular.min.js"></script>

<!-- custom script (angular app) -->
<script type="text/javascript" src="app.js"></script>
</head>
<body ng-controller="moviesCtr">
<h4>Add A New Movie</h4>
<form ng-submit="addMovie()">
<div class="form-group">
<input type="text" class="form-control" ng-model="movie.name" placeholder="Name">
</div>
<div class="form-group">
<input type="text" class="form-control" ng-model="movie.length" placeholder="Length">
</div>
<input type="submit" class="btn btn-primary">
</form>
<p><ng-pluralize count={{moviesToWatch.length}}
when="{0 :'No Movie To Watch',
'1': '1 movie to watch',
'other': '{} movies to watch'}">
</ng-pluralize> </p>
<p>
<a href ng-click="incrementLimit()" ng-hide="morebtn">more</a>
<a href ng-click="decrementLimit()" ng-show="morebtn">less</a>
</p>
<ul>
<li ng-style="myStyle" ng-repeat="movie in moviesToWatch | orderBy: 'name'| limitTo: limit">{{movie.name}}, {{movie.length}}
<a href="javascript:void(0)" ng-click="deleteMovie(movie)"><span class="glyphicon glyphicon-trash" aria-hidden="true"></span></a>
<a href="javascript:void(0)" ng-click="myStyle={'color': 'red'}">mark as watched</a>
</li>
</ul>


</body>
</html>