Git Product home page Git Product logo

Comments (2)

Julien-ELKAD avatar Julien-ELKAD commented on May 16, 2024 1

I've finally found a way to do it by doing this

if (requestState.requestType == "change") {
      subscribeToResult((requestState) => {
        if (requestState.responseData?.ok) {
          const state = getCartState();
          const previousCart = state.previousCart.items;
          const currentCart = state.cart.items;
          const previousCartNumberOfItems = state.status.cartStateSet ? previousCart.length : undefined;
          const currentCartNumberOfItems = state.status.cartStateSet ? currentCart.length : undefined;

          if (previousCartNumberOfItems != undefined && currentCartNumberOfItems != undefined) {
            if (previousCartNumberOfItems - currentCartNumberOfItems != 0){
              for (let i = 0; i < previousCart.length; i++) {
                const previousItem = previousCart[i];
                const previousId = previousItem.key;

                const found = currentCart.some((currentItem) => currentItem.key === previousId);

                if (!found) {
                  console.log(`${previousItem.title} has been removed`)
                }
              }
            }
          }
        }
      });
    }

from liquid-ajax-cart.

EvgeniyMukhamedjanov avatar EvgeniyMukhamedjanov commented on May 16, 2024

Hey @Julien-FLEXY Just a small update,
if you want to see what is inside the Form Data, use the entries method.

from liquid-ajax-cart.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.