How to clear a service at the end of your use Ionic / Angularjs

Asked

Viewed 231 times

1

I have a service that is so:

  angular.module('nhaac.services', [])


.factory('sharedCartService', ['$ionicPopup',function($ionicPopup){

    // OKAY, MAS ONDE ELE ESTÁ PEGANDO?

    // DECLARA AS VARIÁVEIS

    var cartObj = {};
    cartObj.cart=[];
    cartObj.total_amount=0;
    cartObj.total_qty=0;


    // VERIFICA DE JÁ EXISTE ITENS NO CARRINHO
    cartObj.cart.add=function(id,image,name,price,qty,supply_id,deliver){
        if( cartObj.cart.find(id)!=-1  ){
            var alertPopup = $ionicPopup.alert({
                title: 'Este produto já foi Adicionado',
                template: 'Acrescente mais quantidade abaixo da oferta no carrinho'   
            });     

//        }if (CartObj, { 'cart_item_supply': supply_id}) {
        }if (cartObj.cart.findvovo(supply_id) !=-1 ){    
            var alertPopup = $ionicPopup.alert({
               title: "Você só pode comprar de uma única Vovó por vez",
                template: "Volte ao carrinho e escolha a opção COMPRAR MAIS DELICIAS."
            });
        }else{
            cartObj.cart.push( { "cart_item_id": id , "cart_item_image": image , "cart_item_name": name , "cart_item_price": price , "cart_item_qty": qty, "cart_item_supply": supply_id, "cart_item_deliver": deliver  } );
            cartObj.total_qty+=1;   
            cartObj.total_amount+=parseInt(price);  
            console.log(cartObj);
        }
    };


    // PROCURA PRODUTOS NO CARRINHO PELO ID 
    cartObj.cart.find=function(id){       
        var result=-1;
        for( var i = 0, len = cartObj.cart.length; i < len; i++ ) {
            if( cartObj.cart[i].cart_item_id === id ) {
                result = i;
                console.log(result);
                break;
            }
        }
        return result;        
    };

    // PROCURA COD FORNECEDOR É IGUAL
    cartObj.cart.findvovo=function(supply_id){    
        var result=-1;
        for( var i = 0, len = cartObj.cart.length; i < len; i++ ) {            
            if( cartObj.cart[i].cart_item_supply === supply_id ) {            
                result = i;
               console.log('Qual Vovo achou '+result);
                break;
            }
    };
        return result; 
    };


    // LIMPA O CARRINHO
    cartObj.cart.drop=function(id){
     var temp=cartObj.cart[cartObj.cart.find(id)];
     cartObj.total_qty-= parseInt(temp.cart_item_qty);
     cartObj.total_amount-=( parseInt(temp.cart_item_qty) * parseInt(temp.cart_item_price) );  
     window.localStorage.removeItem("fonecedor_carrinho",cartObj.supply_id);    
     cartObj.cart.splice(cartObj.cart.find(id), 1);

    };

    // ADICIONA ITENS AO CARRINHO   
    cartObj.cart.increment=function(id){
         cartObj.cart[cartObj.cart.find(id)].cart_item_qty+=1;
         cartObj.total_qty+= 1;
         cartObj.total_amount+=( parseInt( cartObj.cart[cartObj.cart.find(id)].cart_item_price) );  
    };

    // DIMINUI A QUANTIDADE DE ITENS NO CARRINHO
    cartObj.cart.decrement=function(id){

         cartObj.total_qty-= 1;
         cartObj.total_amount-= parseInt( cartObj.cart[cartObj.cart.find(id)].cart_item_price) ;


         if(cartObj.cart[cartObj.cart.find(id)].cart_item_qty == 1){  // if the cart item was only 1 in qty
            cartObj.cart.splice( cartObj.cart.find(id) , 1);  //edited
         }else{
            cartObj.cart[cartObj.cart.find(id)].cart_item_qty-=1;
         }

    };


    console.log('chama return');
    return cartObj;
}])

You can tell it’s from a shopping cart.

I’m trying to reset this cart with a buttono, make new request, but the amount of it continues, and whenever it does a new application plus the quantity of the previous application.

I’m trying to delete this service so:

$scope.novoPedido = function () {


            // LIMPA O CARRINHO            
            var cart = sharedCartService.cart;
            sharedCartService.cart.splice(0, sharedCartService.cart.length);

          //  sharedCartService.cart.drop("");
 >> Este aqui dá erro



  //          $state.go('novopedido');

        };

But do not delete the quantity, only cleans the items, the amount continues, how to delete everything, including quantity? I don’t know how to do... Thank you!

1 answer

0


Resolved with:

var cart = sharedCartService.cart;
        sharedCartService.cart.splice(0, sharedCartService.cart.length);

        sharedCartService.total_qty = 0;
        sharedCartService.total_amount = 0;

Browser other questions tagged

You are not signed in. Login or sign up in order to post.