1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- (function ()
- {
- 'use strict';
- app.controller('BooksList', ['$scope', 'books.repository', '$uibModal', function ($scope, booksRepository, $uibModal)
- {
- $scope.sortField = 'title';
- $scope.addBook = function(){
- var modalInstance = $uibModal.open({
- templateUrl : 'app/modals/add-book.template.html',
- controller: 'AddBook',
- size: 'lg'
- })
- modalInstance.result
- .then(function(data){
- booksRepository.addBook(data);
- $scope.books.push(data)
- }, function(){})
- }
- $scope.sortBy = function (field)
- {
- if ($scope.sortField == field)
- {
- $scope.sortField = '-' + field;
- }
- else
- {
- $scope.sortField = field;
- }
- };
- $scope.deleteBook = function (book){
- var modalInstance = $uibModal.open({
- templateUrl: 'app/modals/confirm/confirm.template.html',
- controller: 'Confirm',
- size: 'sm'
- });
- modalInstance.result
- .then(function(result){
- if(!result) return;
- booksRepository.deleteBook(book.id)
- .then(function(response){
- $scope.books.splice($scope.books.indexOf(book), 1)
- })
- })
- };
- var searchResult = sessionStorage.getItem('searchResult');
- if(searchResult){
- $scope.books = JSON.parse(searchResult);
- sessionStorage.removeItem('searchResult')
- }else {
- booksRepository.getBooks()
- .then(function (response)
- {
- $scope.books = response.data;
- }, function (error)
- {
- alert(error);
- }
- );
- }
- $scope.$on('search', function(event, data){
-
- $scope.books = data;
- });
- }
- ]);
- }
- )();
|