Monday, 18 January 2016

Lightning components - Where all can I have thee...

With Salesforce investing lot on lightning components and I am sure lot of devs in salesforce world have started working with lightning components .

I have also started working on lightning components and below is some cool list on where all currently salesforce allows these components and a small snippet for each showing the interface that lightning component must implement .

Exciting ...Exciting ...Lets start...


  • Add Lightning Components to Salesforce1


<aura:component implements="force:appHostable">
view raw SF1LG hosted with ❤ by GitHub
 The appHostable interface makes the component available as a custom tab.

All that one has to do is to create a lightning custom tab from salesforce Tabs and add to SF1 Navigation's .




  • Add Lightning Components to Lightning Experience

<aura:component implements="force:appHostable">
view raw SF1LG hosted with ❤ by GitHub

The interface implemented remains as appHostable .The key here is how we can add this tab to new App launcher 





  • Configure Components for Communities
<aura:component implements="forceCommunity:availableForAllPageTypes">
</aura:component>
view raw LC_Communities hosted with ❤ by GitHub

  • Configure Components for Lightning App Builder
<aura:component implements="flexipage:availableForAllPageTypes">
</aura:component>
view raw LDAppBuilder hosted with ❤ by GitHub

  • Configure Components for Lightning Experience Record Home Pages (PILOT)

<aura:component implements="flexipage:availableForRecordHome,force:hasRecordId,force:hasSObjectName">
</aura:component>




















A good example can be one demonstrated by BalaKishan.Please read his articles on lightning .Some great insights into it .

The key here is you have an attribute recordId and sObjectName populated automatically with correctId and API name


<aura:attribute name="sObjectName" type="String"></aura:attribute>
    <!-- Atrribute Defination for Record Id -->
 <aura:attribute name="recordId" type="String"></aura:attribute>

  • Add Lightning Components to Visualforce Pages
<aura:application access="GLOBAL" extends="ltng:outApp">
<aura:dependency resource="c:SimpleTestCmp" />
</aura:application>
This is coolest feature that's been added lately .To add a lightning component to the VF you first define an aura:application that has aura:dependency and extends  ltng:out .

The sample component code
<aura:component >
<aura:attribute name="richtextData" type="String"></aura:attribute>
<ui:inputRichText value="{!v.richtextData}" aura:id="inputRT" label="Rich Text Demo"/>
</aura:component>
view raw Richtextcmp.cmp hosted with ❤ by GitHub
The VF code will look like below
<apex:page standardStylesheets="false" showHeader="false" sidebar="false">
<html xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<head>
<apex:stylesheet value="{!URLFOR($Resource.SLDS0102, 'assets/styles/salesforce-lightning-design-system-vf.css')}" />
<apex:includeLightning />
</head>
<body>
<div class="slds">
<div class="slds-grid slds-wrap">
<!--Action Buttons -->
<div class="slds-col slds-size--1-of-1">
<a href="#" class="slds-button slds-button--neutral slds-float--right" id="callbtn" onclick="sendEmail();">Send Email</a>
</div>
<div class="slds-col slds-size--1-of-1 slds-m-vertical--small">
<h2 class="slds-text-heading--medium">Send Email</h2>
</div>
<div class="slds-col slds-size--1-of-1" id="messagewrapper">
</div>
<div class="slds-col slds-size--1-of-1">
<div class="slds-form-element" id="richTextEditor">
</div>
</div>
</div>
</div>
<script>
var richtext;
$Lightning.use("c:RichtextApp", function() {
$Lightning.createComponent("c:Richtextcmp", {},
"richTextEditor",
function(cmp) {
// do some stuff
richtext = cmp;
});
});
function sendEmail() {
console.log(richtext.find("inputRT").get("v.value"));
}
</script>
</body>
</html>
</apex:page>


I hope you enjoyed this little article :)

No comments:

Post a Comment

Introducing Lightning Base Components

Lightning Base Components are great addition to the platform and in fact revolutionary .One of the concerns around lightning component ...