LMS is a publish and subscribe service that helps communicating between LWC, Aura components, and Visualforce pages.
In this, first we have to defined channels called as messaging channel to define attributes through which we can publish information. Both the components (publisher and subscriber) needs to import this channel. Consider message channel as protocol through which information will be shared between 2 components.
In order to define messaging channel, you have create a folder named as "messageChannels" under default folder in VS code.
Now create a new file named as "enquiry_sender.messageChannel-meta.xml". You can give any name to file but make sure that it has extension as ".messageChannel-meta.xml".
In this xml file you define, lightningMessageFields and its description. These fields names will be used to used information from one component to another.
Note:
If you are getting a validation error for the XML, then turn XML validation off.
In VS Code, click File > Preferences > Settings (Windows) or Code > Settings > Settings (macOS). Search for Validation. Select XML and uncheck Validation.
Now we have defined a message channel, lets use it to publish and subscriber message.
Publish LMS
In order to publish message using this channel, we need to import LMS and channel that we created
Use below syntax to publish the LMS:
Subscribe LMS
<template> | |
<lightning-card title="Subscriber Component"> | |
<div style="background-color:#a3ce98;border-style: solid;margin:5%;padding:2%;"> | |
<p>This component is using LMS framework to subscribe message</p> | |
<div style="background-color:#7ff6f6;border-style: solid;padding:2%;"> | |
<p>Email-<b>{conEmail}</b></p> | |
</div> | |
<div style="background-color:#7ff6f6;border-style: solid;padding:2%;"> | |
<p>Phone-<b>{conPhone}</b></p> | |
</div> | |
</div> | |
</lightning-card> | |
</template> |
import { LightningElement,wire,track } from 'lwc'; | |
import { subscribe, MessageContext } from 'lightning/messageService'; | |
import SEND_ENQUIRY_CHANNEL from '@salesforce/messageChannel/Enquiry_Sender__c'; | |
export default class ContactCheck extends LightningElement { | |
@track conEmail; | |
@track conPhone; | |
@wire(MessageContext) | |
messageContext; | |
subscribeToLMS() { | |
this.subscription = subscribe( | |
this.messageContext, | |
SEND_ENQUIRY_CHANNEL, | |
(message) => this.handleMessage(message) | |
); | |
} | |
handleMessage(message) { | |
console.log('**message:'+JSON.stringify(message)); | |
this.conEmail=message.email; | |
this.conPhone=message.phone; | |
} | |
connectedCallback() { | |
this.subscribeToLMS(); | |
} | |
} |
<?xml version="1.0" encoding="UTF-8"?> | |
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata"> | |
<apiVersion>58.0</apiVersion> | |
<isExposed>true</isExposed> | |
<targets> | |
<target>lightning__AppPage</target> | |
</targets> | |
</LightningComponentBundle> |
<?xml version="1.0" encoding="UTF-8" ?> | |
<LightningMessageChannel xmlns="http://soap.sforce.com/2006/04/metadata"> | |
<masterLabel>EnquirySender</masterLabel> | |
<isExposed>true</isExposed> | |
<description>Message Channel to pass user email Id</description> | |
<lightningMessageFields> | |
<fieldName>email</fieldName> | |
<description>Specify the email</description> | |
</lightningMessageFields> | |
<lightningMessageFields> | |
<fieldName>phone</fieldName> | |
<description>Specify the user email</description> | |
</lightningMessageFields> | |
</LightningMessageChannel> |
<template> | |
<lightning-card title="Publisher Component"> | |
<div style="background-color:#E6E6FA;border-style: solid;margin:5%;padding:2%;"> | |
<p>This component is using LMS framework to publish message</p> | |
<div style="padding:2%;"> | |
<lightning-input name="uEmail" type="email" label="Enter Email" value={userEmail} | |
required=true onchange={onChangeHandler} variant="label-inline"></lightning-input> | |
<lightning-input name="uPhone" type="tel" label="Enter Phone" value={userPhone} | |
required=true onchange={onChangeHandler} variant="label-inline"></lightning-input> | |
<lightning-button label="Send" onclick={sendUserInputToSubscriber}></lightning-button> | |
</div> | |
</div> | |
</lightning-card> | |
</template> |
import { LightningElement,wire,track } from 'lwc'; | |
import { publish, MessageContext } from 'lightning/messageService'; | |
import SEND_ENQUIRY_CHANNEL from '@salesforce/messageChannel/Enquiry_Sender__c'; | |
export default class UserEnquiry extends LightningElement { | |
@track userEmail; | |
@track userPhone; | |
@wire(MessageContext) | |
messageContext; | |
//syntax to publish | |
sendUserInputToSubscriber(){ | |
const payload = { | |
email: this.userEmail, | |
phone: this.userPhone | |
}; | |
console.log('***payload:'+JSON.stringify(payload)); | |
publish(this.messageContext, SEND_ENQUIRY_CHANNEL, payload); | |
} | |
onChangeHandler(event){ | |
const inputValue = event.target.value; | |
const inputTarget = event.target.name; | |
console.log('****onChangeHandler called**inputTarget-inputValue:'+inputTarget+'-'+inputValue); | |
if(inputTarget=='uEmail'){ | |
this.userEmail= inputValue; | |
}if(inputTarget=='uPhone'){ | |
this.userPhone= inputValue; | |
} | |
} | |
} |
<?xml version="1.0" encoding="UTF-8"?> | |
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata"> | |
<apiVersion>58.0</apiVersion> | |
<isExposed>true</isExposed> | |
<targets> | |
<target>lightning__AppPage</target> | |
</targets> | |
</LightningComponentBundle> |