Tag Lightning Component

Integrate third-party applications via Canvas App

Integrate third-party applications via Canvas App. Canvas makes it simple to integrate a third-party application into Salesforce. Canvas is a set of tools and JavaScript APIs for exposing an application as a canvas app. This means you can incorporate new or existing third-party applications into your Salesforce org and make them available to your users.

Subscribe Platform Event in Lightning Component

The post details a method to display a warning message on Salesforce, suggesting fields to complete or correct to improve contact data quality. The solution involves creating a "Platform Event," an Apex Trigger, and a Lightning component in Salesforce. Apex Trigger publishes an event which the Lightning component subscribes to. Upon receiving an event message, the Lightning component sends a warning message to the user.

Quick News Lightning Component

The post showcases a "NewsApp" lightning component application developed on Salesforce lightning platform. Designed to display recent articles from global sources, the application offers features like keyword search and breaking news. It's constructed with the Salesforce lightning framework and "NewsAPI", and hosted on Salesforce by embedding the component in a Visualforce page. The data from news sources is parsed and processed into readable news articles.

Lightning Stateful Button Component

The lightning:buttonStateful represents a toggleable button state similar to those found on social media. It enables dynamic display of different labels and icons. Specific examples and further information can be found on the Lightning Design System and Salesforce Developer websites.

Get Parent Record Id From Lightning URL

The post discusses creating a lighting component for a new record related to Opportunity in Salesforce. The challenge is to auto-populate the Opportunity record, but the "force:hasRecordId" interface is insufficient as it only provides the current record ID. The solution given advises using the "lightning:isUrlAddressable" interface to generate a URL and retrieve the Opportunity record ID.