Skip to content

AndrewJBateman/ionic-angular-cart

Repository files navigation

⚡ Ionic Angular Cart

  • Ionic app to show a shopping cart where the user can select items and see them added to a cart.
  • Items can also be removed and the total price and product quantities will be updated.
  • This is another great tutorial from Simon Grimm - see 👏 Inspiration below.
  • Note: to open web links in a new window use: ctrl+click on link

GitHub repo size GitHub pull requests GitHub Repo stars GitHub last commit

📄 Table of contents

📚 General info

  • modal used to show shopping cart contents: product quantities can be increased or decreased and total price will be adjusted using a simple reduce function.
  • animate.css used to provide some fun visual effects when items are added to the cart and when the cart modal is activated and dismissed. There are options to control delays, speed of animation etc.

📷 Screenshots

screenshot screenshot

📶 Technologies

💾 Setup

  • npm i to install dependencies
  • ionic serve to start the server on localhost://8100
  • To start the server on a mobile using Ionic devapp and connected via wifi, type: 'ionic serve --devapp'
  • The Ionic DevApp was installed on an Android device from the Google Play app store.

💻 Code Examples

  • Cart service: function to add a product to the shopping cart.
addProduct(product: Product) {
	let added = false;
	for (const item of this.cart) {
		if (item.id === product.id) {
			item.amount += 1;
			added = true;
			break;
		}
	}
	!added
		? this.cart.push(product)
		: this.cartItemCount.next(this.cartItemCount.value + 1);
}

🆒 Features

📋 Status & To-do list

  • Status: Working.
  • To-do: add a backend product list. Add to functionality, including a checkout and payment function.

👏 Inspiration

📁 License

  • This project is licensed under the terms of the MIT license.

✉️ Contact

  • Repo created by ABateman, email: gomezbateman@gmail.com

About

📋 Ionic 5 app to collect items in a shopping basket, tutorial code from Simon Grimm at the Ionic Academy

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published