Update Shopping Carts in Real-time
Learn how to update shopping carts in real-time.
We'll cover the following...
Updating the cart
We’ll hook into two different functions to update the tracked cart:
- When the Channel broadcasts its cart.
- When it receives a broadcast that the cart contents have changed.
Add the highlighted send/2
function calls in the existing ShoppingCartChannel
functions.
Press + to interact
# sneakers_23_admin/lib/sneakers_23_web/channels/shopping_cart_channel.exdef handle_info(:update_tracked_cart, socket = %{assigns: %{cart: cart, cart_id: id}}) do{:ok, _} = Sneakers23Web.CartTracker.update_cart(socket, %{cart: cart, id: id}){:noreply, socket}enddef handle_out("cart_updated", params, socket) domodify_subscriptions(params)cart = get_cart(params)socket = assign(socket, :cart, cart)push(socket, "cart", cart_to_map(cart))send(self(), :update_tracked_cart){:noreply, socket}enddefp broadcast_cart(cart, socket, opts) dosend(self(), :update_tracked_cart){:ok, serialized} = Checkout.export_cart(cart)broadcast_from(socket, "cart_updated", %{"serialized" => serialized,"added" => Keyword.get(opts, :added, []),"removed" => Keyword.get(opts, :removed, [])})end
Presence works by sending an initial state to a client and keeping that state up to date by pushing changes. We need to send the initial state ourselves in the Admin.DashboardChannel
. Add the following ...