Skip to main content

Communicate with Events inLightning web components (LWC) - Salesforce Developers

There are mainly 3 approaches for communication between the Lightning components using events.
  1. Communication using Method in LWC ( Parent to Child )
  2. Custom Event Communication in Lightning Web Component (Child to Parent )
  3. Publish Subscriber model in Lightning Web Component ( Two components which doesn't have a direct relation )
1. Communication using Method in LWC ( Parent to Child )
we can call the method of Child Component from the Parent Component with the help of JavaScript Methods.
LWC have used @api decorator to make the children properties public available so parent can be able to call it directly using JavaScript API.
For example create one public variable and method (which we need to access in parent component) in ChildComponent with @api decorator like below:

ChildComponent:

import { LightningElementapi } from 'lwc';

export default class HelloWorld extends LightningElement {
    @api name;
    @api message;

    @api upperCaseMessage(strString) {
     this.Message = strString.toUpperCase();
}
}

<template>
    Message Will Come here from Parent Component :- {Message}
</template>

ParentComponent:

<template>
  <lightning-layout-item flexibility="auto" padding="around-small"  >
    <lightning-input label="Enter the Message" onchange={handleChangeEvent}>
</lightning-input>
</lightning-layout-item>
<lightning-card title="childData">
   <c-lwc-hello-world></c-lwc-hello-world><!--childComponent Name-->
</lightning-card>
</template>

import { LightningElement } from 'lwc';


export default class MyComponent extends LightningElement {
handleChangeEvent(event){
  this.template.querySelector('c-lwc-hello-world').changeMessage(event.target.value);
 }
}

2. Custom Event Communication in Lightning Web Component (Child to Parent )
Custom Event is used to make the communication from Child Component to Parent Component.
In LWC we can create and dispatch the custom event.

Create and Dispatch an Event
Create Event : We can use the customEvent() constructor to create an event. In constructor we need to pass custom event name and detail of the event.
new customEvent(eventName, detail);

Dispatch Event : We have to dispatch an event at with EventTarget.dispatchEvent() method.
  this.dispatchEvent(new customEvent(eventName, detail);

Handle an Event : There are two ways to listen to an event 
  • Declarative via html markup : We need to add “on” prefix in the event name in Parent Component during calling of Child Component for Declaratively event listener.
ParentComponent:
    <template>
          <c-child-component oneventName={listenerHandler}></c-child-component >
    </template>
  • JavaScript using addEventListener method : We can explicitly attach a listener by using the addEventListner method in the parent component.
ChildComponent:
this.template.addEventListener('eventName', this.handleNotification.bind(this));

For More Details And Examples on this please visit : EventDispatch/Listner 

3. Publish Subscriber model in Lightning Web Component ( Two components which doesn't have a direct relation )

Llibrary called pubsub to achieve the communication between two components which doesn't have a direct relation to each other. An event is subscribed by a component and handled when another component which publishes the event within the same scope.

Please use this link to get the pub sub utility code. Pubsub module support below three method
  1. Register 
  2. UnRegister
  3. Fire
Example :

import { LightningElementapiwire } from 'lwc';
import { CurrentPageReference } from 'lightning/navigation';
import {
    registerListener,
    unregisterListener,
    unregisterAllListeners,
    fireEvent
from 'c/pubsub';

export default class AuraPubsub extends LightningElement {
    @wire(CurrentPageReferencepageRef;

    connectedCallback() {
        this.dispatchEvent(new CustomEvent('ready'));
    }

    @api
    registerListener(eventNamecallback) {
        registerListener(eventNamecallbackthis);
    }

    @api
    unregisterListener(eventNamecallback) {
        unregisterListener(eventNamecallbackthis);
    }

    @api
    unregisterAllListeners() {
        unregisterAllListeners(this);
    }

    @api
    fireEvent(eventNamedata) {
        fireEvent(this.pageRefeventNamedata);
    }
}

Fire the event from other Component. In that js file, We need to trigger the event with name and value. Remember, we also need to send the page reference attribute as current page reference for successful communication

import {  fireEvent } from 'c/pubsub';
import { CurrentPageReference } from 'lightning/navigation';
export default class OtherComponent extends LightningElement {
     @track myMessage;
     @wire(CurrentPageReferencepageRef;

     sendMessage() {
          fireEvent(this.pageRef'messageFromSpace'this.myMessage);
     }
}

Comments

Popular posts from this blog

Maintain Your Administrator Certification for Spring ’24

Maintain Your Administrator Certification for Spring ’24 Intelligence Views Intelligence views are now available for leads, contacts, and accounts in Sales Cloud. Turn on a view in Setup and then add the Intelligence View button to the view-button layout for the applicable page. New Salesforce organizations include the views by default, but admins for existing orgs can enable: Lead Intelligence View Contact Intelligence View Account Intelligence View Find specifics about these views in the next three topics. Turn on Contact Intelligence View in Contact Intelligence View Setup and add the Intelligence View button to the Contact List View button layout. To view engagement metrics, enable Email Tracking in the Inbox section of Sales Engagement Setup. To see the Intelligence View, users go to the Contact home page and click Intelligence View. To view engagement metrics, choose Engagement Metrics from the Metrics menu. To see the Account Intelligence view, go to the account home page and cl

Administrator Certification Maintenance (Spring '23)

 Maintain Your Administrator Certification for Spring '23 1. What information is listed in the Details panel for recently used reports? Answer: A, B, C 2. What is used to give sales reps access to a guided process to import contacts and leads? Answer:  Sample CSV file 3. Which feature efficiently removes inactive picklist values? Answer: Bulk Delete Unused Values 4. Which type of Process Builder processes can be converted using the Migrate to Flow tool? Answer: Record-triggered Get Hands-on with Enhance Record Pages With Dynamic Forms Follow steps show in Screenshot also highlighted with Red Box:

Platform App Builder Certification Maintenance (Winter '24)

 Maintain Your Platform App Builder Certification for Winter ’24 The Enable Reactive Components for Screen Flows running API Version 57.0 and 58.0 setting expires in Winter ’25. Before that release, upgrade your flows to run on API version 59.0 or later to take advantage of reactive components. Build Screen Flows with Reactive Global Variables Save time by referencing global variables in reactive formulas on flow screens. Use custom labels in reactive formulas to display translatable text to your users. For example, create a custom setting called DiscountPercentage, which specifies org, profile, and user discount percentages. Reference the variable in reactive formulas across a screen flow. The screen flow applies the correct discount value for the user running the flow and recalculates the value as the user makes changes.   Build Screen Flows with Reactive Selections Use choice components to respond to user selections elsewhere on the same screen. For example, on a flow screen used fo

Translate