is it possible to render a lightning component spinner "slds-spinner" whilst waiting for a skuid:pag

We are deploying a skuid page through a lightning component, which is placed into the right hand panel on a record detail page in lightning. The content of the skuid page takes a little while to load.

Would it be possible to show a spinner whilst waiting for this content to load, to show the user that there is more information coming into the page?

Ideally this would use the “aura:renderIf” attribute within the lightning component - https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/aura_compref_aura_renderI…

e.g.

<aura:component implements="flexipage:availableForRecordHome,force:hasRecordId" access="global">
 <aura:attribute name="pageLoadComplete" type="Boolean" />
 <aura:renderIf isTrue="{!v&#46;pageLoadComplete}">
 <skuid:page page="InquirySectorsComponent" id="{!v&#46;recordId}" />
 <aura:set attribute="else">
 <!-- show the spinner until the page is loaded -->
 <div class=&quot;demo-only&quot; style=&quot;height: 6rem;&quot;>
 <div role=&quot;status&quot; class=&quot;slds-spinner slds-spinner_medium&quot;> <span class=&quot;slds-assistive-text&quot;>Loading</span> <div class=&quot;slds-spinner__dot-a&quot;></div> <div class=&quot;slds-spinner__dot-b&quot;></div> </div> </div> </aura:set> </aura:renderIf> </aura:component>

Ideally the skuid page would need to set the component attribute (aura:attribute pageLoadComplete) variable to ‘true’ once it has finished loading. But this would require the skuid page to update a value in the lightning component, and I’m not sure whether this is possible.

Hi Greg,

In Millau, the latest major release of Skuid, you can do quite a bit with events that you couldn’t do before. And, you can publish standard Lightning events as well. Perhaps if you’re building a custom Lightning component, you can configure it to listen for the published event from the Skuid component?

At the bottom of this documentation is a little bit of info on this topic:
https://docs.skuid.com/latest/en/skuid/action-framework/action-sequences/#event-triggered-sequences

Greg, another follow-up to this: we are working on two fronts to improve the “Skuid Page” Lightning Component user experience:

  1. Visual indicators that the component is loading — we have a very light, nearly-invisible blue “in progress” bar that you may have noticed which shows up about half-way through the load process, but we’d like to do better here, making a consistent indicator that’s visible throughout the load.
  2. Speeding up the load time — we’re working in a number of ways to minimize the load time for the Skuid Page Lightning Component.

In the meantime, as Mark indicated, you may be able to wrap the Skuid page Lightning Component in your own Lightning Component, displaying a spinner until the Skuid Page component’s “Page Rendered” event is fired, at which point your Lightning Component could, via an <aura:handler /> tag, remove the spinner. See the link Mark posted above as well as this tutorial for more details: https://docs.skuid.com/latest/en/skuid/salesforce/event-handling-lightning.html

Thanks Zach & Mark, I was eventually able to get this figured out using the event handling as described (with a little help from someone more experienced in this than myself). For anyone looking to implement this, here are a few steps:

NOTE - it would be great in the future to have a declarative Skuid action which can be executed on page load, e.g. “page load events to execute” - this would remove the need for the snippet in step 1.

  1. Add an inline snippet to your skuid page, lets call this snippet “pageLoadEvent”:
(function(skuid){
 var $ = skuid&#46;$;
 $(document&#46;body)&#46;one('pageload',function(){
 var evt = $A&#46;get("e&#46;skuid:event"); &#47;&#47; Create the event reference
 evt&#46;setParams({"name": "skuid&#46;pageRendered"}); &#47;&#47; Set the event name
 evt&#46;fire(); &#47;&#47; 
 });
})(skuid);
  1. Deploy your skuid page with a Lightning Component, using the aura:renderIf tag to render a spinner:

<aura:component implements="flexipage:availableForRecordHome,force:hasRecordId" access="global" >
<aura:handler event="skuid:event" action="{!c&#46;handleSkuidEvent}"/>
<aura:attribute name="showSpinner" type="Boolean" default="true"/>
<div class="slds-card">
 <aura:renderIf isTrue="{!v&#46;showSpinner}">       
 <lightning:spinner variant="brand"  size="medium" />     
 </aura:renderIf> 
<div>
<lightning:tile label="">     
 <skuid:page page="SkuidPageNameHere" id="{!v&#46;recordId}" />      
</lightning:tile> 
</div>
</div>
</aura:component>
  1. Add a javascript controller to the component:
({
 handleSkuidEvent: function(cmp, event, helper) {
 console&#46;log('skuid event');
 var eventName = event&#46;getParam("name");
 if(eventName == 'skuid&#46;pageRendered')
 {
 cmp&#46;set('v&#46;showSpinner',false);
 }
 }
})
  1. Drop your component into the Lightning page. You could also remove the id=“{!v.recordId}” attribute from the skuid:page attribute if its not a record detail page.

Hi Greg, glad to hear that you were able to find a solution! In Millau, you can create an event-driven action sequence, and set Skuid: Page rendered as the triggering event. This should eliminate the need for the snippets watching for a pageload.

Also note that you can set the scope to listen for this Skuid Page: Rendered event. Choices are “Only This page,” “All active pages,” and “All active pages and Lightning Components.”

And this same Skuid Page: Rendered event-triggered action sequence can trigger other action sequences you might build. In this way, you should be able to have one place you can keep page-load triggered action sequences, and you should also be able to order them in the appropriate order so that the sequences that depend on others being completed won’t run until it’s their turn, so to speak.