Address details component

Learn how to use the Address details component.

Note: The information in this section applies to both the drb2b_addressDetails component (Aura only) and drb2b_addressDetails_LWR component (LWR only).

Use the drb2b_addressDetails component to display the shopper's shipTo and billTo address. You can configure this component in the experience builder or flow.

You can publish an event to reload the address details component. Depending on your flow, you may be required to reload the component if the shopper updates their shipping or billing address.

Publish the Address details component event

Complete the following tasks to publish various event types. The event purpose and payload will vary depending on the use case.

Import DigitalRiverMessageChannel__c message channel and message service into a custom JavaScript file, as shown below.

Import example
import dr_lms from "@salesforce/messageChannel/digitalriverv3__DigitalRiverMessageChannel__c";

import {publish, MessageContext } from "lightning/messageService";

Declare the message context variable as shown below.

Declare variable example
@wire(MessageContext) messageContext;

Publish the event.

Event publishing example
publish(this.messageContext, dr_lms, { 
                    purpose: '<purpose>',           
                    payload: '<payload>'            
                });

Refer to the following table for more information on the Address details component events.

Event purposeEvent payload exampleDescription

reloadAddressDetails

n/a

Publish this event to reload the Address details component.

Last updated