npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vuex-shopping-cart

v1.0.2

Published

A lightweight, persistent, local shopping cart that is used as a Vuex module.

Downloads

6

Readme

vuex-shopping-cart

A lightweight, persistent, local shopping cart that is used as a Vuex module.

Installing

npm install vuex-shopping-cart

Adding to Your Project

vuex-shopping-cart is a Vuex module, so adding it to your project is as simple as including the package as a module in your Vuex store. The index.js for your Vuex store should look something like this:

import Vue from "vue";
import Vuex from "vuex";
import cart from "vuex-shopping-cart";

Vue.use(Vuex);

export default new Vuex.Store({
  modules: { cart },
  state: {},
  mutations: {},
  actions: {},
  getters: {},
});

Data Schemas

Cart Item

A cart item must contain a variants object, which contains objects that describe a variation of a product. Each variant is a object whose key is the variant unique identifier(maybe a sku?). The value is an object with name and price objects.

{
  ...<Your Custom Attributes>...,
  variants: {
    <variant_1_id>: {
      name: <variant_1_name>,
      price: <variant_1_price>
    },
    ...<More variants>...
  }
}

Usage

  • Import the Vuex store action constants(Only import the ones you need)
import {
  ADD_ITEM_TO_CART,
  REMOVE_ITEM_FROM_CART,
  DELETE_VARIATION,
  LOAD_CART_FROM_STORAGE,
  CLEAR_CART,
  CART_ITEMS,
  CART_TOTAL,
  NUM_ITEMS,
} from "vuex-shopping-cart/constants.type";
  • Add an item to the cart
this.$store.dispatch(ADD_ITEM_TO_CART, {
  item: <Insert Your Item(Follow schema above)>,
  sku: <Unique ID for the product>,
});
  • Remove an item from the cart
this.$store.dispatch(REMOVE_ITEM_FROM_CART, <Insert Unique ID for the product>);
  • Delete all items of a particular variant ID
this.$store.dispatch(DELETE_VARIATION, <Insert Unique ID for the product>);
  • Clear the entire cart
this.$store.dispatch(CLEAR_CART);
  • Load the items from local storage
store.dispatch(LOAD_CART_FROM_STORAGE);

This is commonly dispatched every time that your vue application mounts. For example, in the mounted in your app.vue or in a router.beforeEach().

Built With

  • lodash - A modern JavaScript utility library
  • Vue - JavaScript framework

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details