Salesforce Lightning Aura Component

Salesforce

Salesforce Pre Chat for Embedded Service using Lightning Aura Component

Sample Code: Aura Component: <aura:component implements="lightningsnapin:prechatUI">     <lightningsnapin:prechatAPI aura:id="prechatAPI"/>     <aura:handler name="init" value="{!this}" action="{!c.onInit}" />     <aura:attribute name="startBool" type="Boolean" default="false"/>     <aura:attribute name="errorBool" type="Boolean" default="false"/>     <aura:attribute name="firstName" type="Boolean" default="false"/> ....

Salesforce

Popover Dialog using Aura Lightning Component

Primary component:<aura:component implements="force:appHostable" >    <aura:attribute name="showBool" type="boolean" default="false"/>    <lightning:card>        <a onmouseover="{!c.show}">View</a><br/>        <aura:if isTrue="{!v.showBool}">            <section aria-describedby="dialog-body-id-98" aria-labelledby="dialog-heading-id-103" class="slds-popover ....

Salesforce

How to pass URL Parameters to Lightning Aura Component Tab from Visualforce Page in Salesforce?

Sample Code: Visualforce Page: <apex:page controller="SampleVFController">     <apex:form>         <apex:commandButton value="Click" action="{!openLightningComponent}"/>     </apex:form> </apex:page> Apex Class: public class SampleVFController {          public PageReference openLightningComponent() {        ....