123456789101112131415161718192021222324252627282930313233 |
- app.controller('ShoppingCartPageController',['$scope','$window','$timeout',function($scope,$window,$timeout){
- var firebaseShoppingCart = firebase.database().ref().child('users').child(firebase.auth().currentUser.uid).child('shoppingCart');
- $scope.shoppingCartItems = {};
- firebaseShoppingCart.on('value',function(snap){
- $scope.shoppingCartItems = snap.val();
- })
-
- $scope.totalPrice = function(){
- $scope.total = 0;
- angular.forEach($scope.shoppingCartItems,function(item){
- $scope.total += item.overallPrice;
- })
- return $scope.total;
- }
- $scope.removeItem = function(i){
-
-
-
-
-
-
-
-
-
- var keys = Object.keys($scope.shoppingCartItems);
- delete $scope.shoppingCartItems[keys[i]];
- firebaseShoppingCart.set($scope.shoppingCartItems);
- }
- }])
|