JavaScript - Simple Shopping Cart Using AngularJS

In this tutorial we will create a Simple Shopping Cart Using AngularJS. This code will store a temporary data in the table without using databases when the user select a product in the table. The code itself use a angular directives that can insert a temporary data in the table in a array object using dot notation push(). This a user-friendly program feel free to modify and use it to your system. We will be using AngularJS as a comprehensive JavaScript framework that extend the browser capabilities. It handles the heavy lifting of DOM manipulation and AJAX request in a whole.

Getting Started:

First you have to download Bootstrap, this is the link for the bootstrap that i used for the layout design https://getbootstrap.com/. And, this is the link for the AngularJS https://angularjs.org/.

Creating The Interface

This is where we will create a simple form for our application. To create the forms simply copy and write it into you text editor, then save it index.html.
  1. <!DOCTYPE html>
  2. <html lang="en" ng-app="myModule">
  3.         <head>
  4.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6.         </head>
  7. <body ng-controller="myController">
  8.         <nav class="navbar navbar-default">
  9.                 <div class="container-fluid">
  10.                         <a class="navbar-brand" href = "https://sourcecodester.com">Sourcecodester</a>
  11.                 </div>
  12.         </nav>
  13.         <div class="col-md-3"></div>
  14.         <div class="col-md-6 well">
  15.                 <h3 class="text-primary">JavaScript - Simple Shopping Cart Using AngularJS</h3>
  16.                 <hr style="border-top:1px groov #ccc;"/>
  17.                 <div class="col-md-7">
  18.                         <h4>PRODUCTS<h4>
  19.                         <hr style="border-top:1px dotted #ccc;">
  20.                         <div ng-repeat = "product in products ">
  21.                                 <div style="width:150px; padding:10px; float:left; border:1px solid #000; margin:10px;">
  22.                                         <h6>{{product.p_name}}</h6>
  23.                                         <h6 style="font-style:bold;">Price: ₱{{product.p_price}}</h6>
  24.                                         <center><button type="button" ng-click="newCart(product)"><span class="glyphicon glyphicon-shopping-cart"></span> Add to cart</button></center>
  25.                                 </div>
  26.                         </div>
  27.                 </div>
  28.                 <div class="col-md-5">
  29.                         <div class="alert alert-info">MY CART</div>
  30.                         <table class="table table-bordered">
  31.                                 <thead>
  32.                                         <tr>
  33.                                                 <th>Product</th>
  34.                                                 <th>Price</th>
  35.                                                 <th>Action</th>
  36.                                         </tr>
  37.                                 </thead>
  38.                                 <tbody>
  39.                                         <tr ng-repeat = "cart in carts" ng-init="setTotals(cart)">
  40.                                                 <td>{{cart.p_name}}</td>
  41.                                                 <td>₱{{cart.p_price}}</td>
  42.                                                 <td><button type = "button" ng-click = "remove_cart(cart)" class = "btn btn-danger btn-sm"><span class = "glyphicon glyphicon-remove"></span></button></td>
  43.                                         </tr>
  44.                                         <tr>
  45.                                                 <td align="right">Total</td>
  46.                                                 <td>₱{{total}}</td>
  47.                                                 <td><button class="btn btn-sm btn-success" ng-click="confirm()">Confirm</button></td>
  48.                                         </tr>
  49.                                 </tbody>
  50.                         </table>
  51.                 </div>
  52.         </div>
  53. <script src="js/angular.js"></script>
  54. <script src="js/script.js"></script>   
  55. </body>
  56. </html>

Creating the Main Function

This code contains the main function of the application. This code will store a temporary data when the button is clicked. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js.
  1. var app = angular.module("myModule", [])
  2.                                 .controller("myController", function($scope){
  3.                                 $scope.carts=[];
  4.                                 $scope.products = [
  5.                                         {p_id: "1", p_name: "Samsung Galaxy S10", p_price: 28990},
  6.                                         {p_id: "2", p_name: "Iphone XI", p_price: 51999},
  7.                                 ];
  8.                                
  9.                                 $scope.newCart=function(product){
  10.                                         if(product){
  11.                                                 $scope.carts.push({p_id: product.p_id, p_name: product.p_name, p_price: product.p_price});
  12.                                         }      
  13.                                 }
  14.                                                
  15.                                        
  16.                                 $scope.total=0;
  17.                                
  18.                                 $scope.setTotals=function(cart){
  19.                                         if(cart){
  20.                                                 $scope.total+=cart.p_price;
  21.                                         }
  22.                                 }
  23.                                
  24.                                 $scope.remove_cart = function(cart){
  25.                                         if(cart){
  26.                                                 $scope.carts.splice($scope.carts.indexOf(cart), 1);
  27.                                                 $scope.total-=cart.p_price;
  28.                                         }
  29.                                 }
  30.                                
  31.                                 $scope.confirm=function(){
  32.                                         if($scope.total !=0){
  33.                                                 alert("Thank you for purchasing!");
  34.                                                 window.location="index.html";
  35.                                         }
  36.                                 }
  37.         });
There you have it we successfully created a Simple Shopping Cart using AngularJS. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!!

Add new comment