mradisis / sfdc-reloadable-visualforce-lightning-component

Demo embedding Flow (via Visualforce) in Lightning Record Page and it reloading when the record is updated.

Home Page:https://douglascayers.com/2017/07/17/keep-flows-and-data-in-sync-on-lightning-record-pages/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

New Project Available

Specifically for helping keep Flows embedded on Lightning Pages in sync on the page, I've developed a new solution Reloadable Flow Component based on new features available in Winter '18.


Reloadable Visualforce Lightning Component

Overview

This project is inspired by Jennifer Lee who asked on Twitter how to have a Flow component in Lightning Record Page refresh and reflect changes when the record was updated. This project is also inspired by my growing interest in embedding Flows in Lightning Pages.

screen shot

To my knowledge, the standard Flow component provided by Salesforce does not (yet) provide this capability. The Flow is static and doesn't react when the underlying record has changed.

The wonderful Shawna Wolverton replied saying that the Flow needed something to tell it to refresh. In her reply she mentions Scott Kozinchik, Product Manager for Flow, and hints at future capabilities ^_^ #safeharbor

screen shot

While we wait for Salesforce to roll this out as standard feature, this project demos embedding Flow (via Visualforce) in Lightning Record Page and reloading the Flow when the record is updated.

This is achieved by the magic of Lightning Data Service which allows us to know when the record on the page has changed so that we can refresh the Visualforce page that embeds the Flow. Likewise, if the Flow finishes then it may have created, updated, or deleted data too, so the Lightning Record Page is refreshed in those scenarios. Bi-directional.

You can achieve the exact same effect without this project by manually refreshing your browser page after saving the record ;) But who has time to do such trivial things like refreshing their browser page?!?! "Not I", said the Cat. Yeah, me neither, so let's automate it!

Demo Video

video

Installation

You may install the unmanaged code from GitHub and make any desired adjustments.

This project includes the following:

  • Flow (Demo_Account_Flow) - demo loading some account data
  • Visualforce Page (DemoAccountFlowPage) - embeds the flow
  • Lightning Component (VisualforceRecordCmp) - embeds the visualforce page, reloading it when the account record is updated
  • Lightning Record Page (Refresh_Flow_Account_Page) - embeds the lightning component

Getting Started

  1. Install this unmanaged package to your org using link above.
  2. Edit (or create new) a Lightning Record Page for Account object (later you can repeat this for any other objects).
  3. Ensure the Standard component named Record Detail is on your Lightning Page.
  4. Drag the Custom component named Visualforce onto your Lightning Page.

screen shot

  1. Configure the Custom component by specifying Visualforce Page name (e.g. DemoAccountFlowPage).

screen shot

  1. Save and Activate your Lightning Record Page.
  2. Navigate to an Account record page to test.
  3. Edit and save the account record and notice your Flow refreshes too!
  4. Click the Finish button on your Flow and notice the rest of the page refreshes too!

Customizations

The Lightning Component (VisualforceRecordCmp) is reusable. It really should be just drag-n-drop to your Lightning Record Pages and you're off to the races! It prompts for two parameters: the name of a Visualforce Page to embed and the height in pixels. Being as generic as it is, this simply lets you embed Visualforce Pages in your Lightning Record Pages and be able to refresh automatically when the underlying record changes.

We build on top of that functionality to load a Visualforce Page that embeds a Flow, thereby being able to have our Flow automatically refresh when the underlying record changes.

You do not have to use the included Flow (Demo_Account_Flow), it's just an example. You can come up with whatever Flow you want provided that is has at least one input text variable to receive the record ID from the page. Check out the DemoAccountFlowPage as example of how to embed your Flow in your page.

Technical Architecture

For those curious how this all works "under the hood", let's discuss the below diagram.

screen shot

We have a Lightning Record Page with two Lightning Components side-by-side. Within our custom component on the left is an embedded Visualforce Page which in-turn embeds a Flow. The standard component on the right simply loads the record's layout and allows the user to edit the fields.

To communicate from the standard component to our custom component we do so indirectly. With the Lightning Data Service our custom component subscribes to updates to the record then takes action. This decouples the left and right components entirely, which is good because we can't do much with the standard component to get it to talk to us anyways.

When our custom component receives event that the record has been updated then it simply reloads the iframe of the Visualforce Page embedding our Flow. Our Flow runs again and re-queries fresh data. This is a good time to remind you that Flows that are embedded on Visualforce Pages or Lightning Pages should not perform any actions such as create or delete records before the first screen.

Ok, so that handles when the user updates the record using the standard component to cause our Flow to refresh.

What about the other way around, when our Flow finishes to cause the page to refresh?

When the user clicks the Finish button on your Flow you may have made some data changes, created, updated, or deleted records. To ensure the whole page still displays current and relevant data then we should refresh those components too.

A couple challenges though, when the Flow finishes the only entity that knows is the Visualforce Page, and the Visualforce Page embedded in an iframe on a different domain than the Lightning Components cannot simply tell the window to refresh due to browser security. If the Visualforce Page were to attempt a window.parent.reload(); then it will be met with error DOMException: Blocked a frame with origin "https://your-instance.visual.force.com" from accessing a cross-origin frame..

But fear not, Christophe Coenraets has taught us how to send messages from Visualforce Pages to Lightning Components. When our flow finishes then the Visualforce Page posts a message to its parent window, which is the Lightning Component. The Lightning Component then tells the other components on the page they all need to refresh.

About

Demo embedding Flow (via Visualforce) in Lightning Record Page and it reloading when the record is updated.

https://douglascayers.com/2017/07/17/keep-flows-and-data-in-sync-on-lightning-record-pages/

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:JavaScript 100.0%