Add to Bag is one of the basic actions on the Kuika platform that allows a product or item to be added to the user's shopping cart. It is used in e-commerce, reservation, or selection-based applications to temporarily store user preferences on the client side. With this action, content can be easily added to a dynamically defined shopping cart (bag).
Technical Features
Defining the Action in UI Design
Configuring Action Parameters
{‘id’: product.id,“name”: product.name,‘price’: product.price,‘quantity’: 1}
When the ‘Add to Cart’ button in a product list is clicked, the relevant product information should be added to the default cart.
Configuration Steps:
{‘id’: product.id,‘name’: product.name,“price”: product.price,‘quantity’: 1}
Technical Risks and Precautions
The Add to Bag action is one of the most effective ways to manage user interactions and start processing selections in the system. It can be easily applied in any scenario based on cart logic and provides a powerful shopping/ordering experience when used in conjunction with other actions.