In my Last post we learn the basic of lightning components. Today we will continue with where we can use Lightning Components in UI.
We can use lightning component in 6 places.
- Lightning App
- Salesforce 1
- Lightning Experience
- Visualforce
- Lightning Community
- Lightning Flow
We all know how to use Lightning component in Lightning App. Today we learn to how we can use lightning component in all remaining places.
Use Lightning Components in Salesforce1
The component we wish to use in salesforce 1, we need to include the interface implements=”force:appHostable” in your aura:component tag and save the changes.
<aura:component implements="force:appHostable">
The appHostable
interface makes the component available as a custom tab.
Include your components in the Salesforce1 navigation menu by following these steps.
- Create a custom Lightning component tab for the component. From Setup, enter Tabs in the Quick Find box, then select Tabs.
Note: You must create a custom Lightning component tab before you can add your component to the Salesforce1 navigation menu. Accessing your Lightning component from the full Salesforce site is not supported.
- Add your Lightning component to the Salesforce1 navigation menu.
- From Setup, enter Navigation in the Quick Find box, then select Salesforce1 Navigation.
- Select the custom tab you just created and click Add.
- Sort items by selecting them and clicking Up or Down. In the navigation menu, items appear in the order you specify. The first item in the Selected list becomes your users’ Salesforce1 landing page.
- Check your output by going to the Salesforce1 mobile browser app. Your new menu item should appear in the navigation menu.
Use Lightning Components in Lightning Experience
In the components you wish to include in Lightning Experience, add implements=”force:appHostable” in the aura:component tag and save your changes.
<aura:component implements="force:appHostable">
Follow these steps to include your components in Lightning Experience as a tab and make them available to users in your organization.
- Create a custom tab for this component.
- From Setup, enter Tabs in the Quick Find box, then select Tabs.
- Click New in the Lightning Component Tabs related list.
- Select the Lightning component that you want to make available to users.
- Enter a label to display on the tab.
- Select the tab style and click Next.
- When prompted to add the tab to profiles, accept the default and click Save.
- Add your Lightning components to the App Launcher.
- From Setup, enter Apps in the Quick Find box, then select Apps.
- Click New. Select Custom app and then click Next.
- Enter Lightning for App Label and click Next.
- In the Available Tabs dropdown menu, select the Lightning Component tab you created and click the right arrow button to add it to the custom app.
- Click Next. Select the Visible checkbox to assign the app to profiles and then Save.
- Check your output by navigating to the App Launcher in Lightning Experience. Your custom app should appear in theApp Launcher.
Click the custom app to see the components you added.
Use Lightning Components in Visualforce Pages
Add Lightning components to your Visualforce pages to combine features you’ve built using both solutions. Implement new functionality using Lightning components and then use it with existing Visualforce pages.
There are three steps to add Lightning components to a Visualforce page.
- Add the <apex:includeLightning /> component to your Visualforce page.
- Reference a Lightning app that declares your component dependencies with $Lightning.use().
- Write a function that creates the component on the page with $Lightning.createComponent().
Add <apex:includeLightning /> at the beginning of your page. This component loads the JavaScript file used by Lightning
To use Lightning Components for Visualforce, define component dependencies by referencing a Lightning dependency app. This app is globally accessible and extends ltng:outApp. The app declares dependencies on any Lightning definitions (like components) that it uses. Here’s an example of a simple app called lcvfTest.app. The app uses the <aura:dependency> tag to indicate that it uses the standard Lightning component, lightning:button.
<aura:application access="GLOBAL" extends="ltng:outApp">
<aura:dependency resource="lightning:button"/>
</aura:application>
To reference this app, use the following markup where theNamespace is the namespace prefix for the app. That is, either your org’s namespace, or the namespace of the managed package that provides the app.
`$Lightning.use(“theNamespace:lcvfTest”, function() {});`
If the app is defined in your org (that is, not in a managed package), you can use the default “c” namespace instead, as shown in the next example. If your org doesn’t have a namespace defined, you must use the default namespace.
Creating a Component on a Page
Finally, create your component on a page using $Lightning.createComponent(String type, Object attributes, String locator, function callback). This function is similar to $A.createComponent(), but includes an additional parameter, domLocator, which specifies the DOM element where you want the component inserted.
Let’s look at a sample Visualforce page that creates a lightning:button using the lcvfTest.app from the previous example.
<apex:page>
<apex:includeLightning />
<div id=”lightning” />
<script>
$Lightning.use(“c:lcvfTest”, function() {
$Lightning.createComponent(“ui:button”,
{ label : “Press Me!” },
“lightning”,
function(cmp) {
// do some stuff
});
});
<script>
</apex:page>
This code creates a DOM element with the ID “lightning”, which is then referenced in the $Lightning.createComponent() method. This method creates a lightning:button that says “Press Me!”, and then executes the callback function.
Important: You can call $Lightning.use() multiple times on a page, but all calls must reference the same Lightning dependency app.
Did you like the post or want to add anything, let me know in comments. Happy programming 🙂