Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

26
Loading data without Apex/SOQL in Lightning Components Lightning Data Service: Eliminate Your Need to Load Records Through Controllers Carolyn Grabill SMTS Software Engineer [email protected] @CarolynCodes Kevin Venkiteswaran PMTS Software Engineer [email protected] @kevinv11n

Transcript of Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

Page 1: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

Loading data without Apex/SOQL in Lightning Components Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

 Carolyn Grabill  SMTS Software Engineer  [email protected]  @CarolynCodes    

Kevin Venkiteswaran PMTS Software Engineer [email protected] @kevinv11n

Page 2: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

 Safe harbor statement under the Private Securities Litigation Reform Act of 1995:

 This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services.

 The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site.

 Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.

Safe Harbor

Page 3: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

Agenda

•  The Problem

•  The <force:record> Component

•  Demonstration + Code

•  <force:record> in the Lightning Experience

•  Roadmap

•  Questions

Page 4: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

The Problem Many components need access to the same data

Page 5: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

Data re-use across components

 Highlights and Details components display data from the same Opportunity record

Page 6: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

Multiple SOQL calls for the same data

Highlights cmp

Name: Acme Anvils Phone: (123) 456-7890

Details cmp

Name: Acme Anvils Phone: (123) 456-7890 Address: 123 Main St Amount: $500 Owner: Wile E. Coyote

Component controller

Apex controller SOQL

Component controller

Apex controller

SOQL

Client Server

Page 7: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

Multiple SOQL calls for the same data

Highlights cmp

Name: Acme Anvils Phone: (123) 456-7890

Details cmp

Name: Acme Anvils Phone: (123) 456-7890 Address: 123 Main St Amount: $500 Owner: Wile E. Coyote

Component controller

Apex controller SOQL

Component controller

Apex controller

SOQL

Client Server Lots of custom code!

Page 8: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

The <force:record> component

Page 9: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

<force:record> Standard component in “force” namespace (#SafeHarbor)

Page 10: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

Shared Record Cache

<force:record recordId=“001x00123” fields=“Id,Name” />

Client

Server

Fetches record

Auto SOQL

Automatic record loading

Page 11: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

Multiple SOQL calls for the same data

Highlights cmp

Name: Acme Anvils Phone: (123) 456-7890

Details cmp

Name: Acme Anvils Phone: (123) 456-7890 Address: 123 Main St Amount: $500 Owner: Wile E. Coyote

Component controller

Apex controller SOQL

Component controller

Apex controller

SOQL

Client Server

Page 12: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

<force:record> handles loading records

Highlights cmp

Name: Acme Anvils Phone: (123) 456-7890

Details cmp

Name: Acme Anvils Phone: (123) 456-7890 Address: 123 Main St Amount: $500 Owner: Wile E. Coyote

force:record controller

force:record

controller

<force:record>

Shared Record Cache

Consolidated requests

Client Server

<force:record>

Page 13: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

<force:record>

No server trip on cache hits!

Highlights cmp

Name: Acme Anvils Phone: (123) 456-7890

Details cmp

Name: Acme Anvils Phone: (123) 456-7890 Address: 123 Main St Amount: $500 Owner: Wile E. Coyote

force:record controller

force:record

controller

Shared Record Cache

Client Server

<force:record>

Page 14: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

  <aura:component controller="MyApexController">

  <aura:attribute name="recordId" type="String" />   <aura:attribute name="record" type="SObject" /> <aura:handler name="change” value="{!v.recordId}”

action="{!c.getRecord}"/>   <ui:inputText label="Record Name"

value="{!v.record.Name}"/>  </aura:component>

Simple refactor - BEFORE  Lightning Component Apex Controller

  public with sharing class MyApexController {

  @AuraEnabled   public static <SObject> getRecord(String recordId) {

  return [SELECT Id, Name FROM <SObject> WHERE Id = :recordId];

}

  }

Page 15: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

<aura:component>

  <aura:attribute name="recordId" type="String" />   <aura:attribute name="record" type="SObject" /> <force:record recordId="{!v.recordId}"

targetRecord="{!v.record}" fields="Id, Name"/>

  <ui:inputText label="Record Name"

value="{!v.record.Name}"/>  </aura:component>

Simple refactor - AFTER  Lightning Component No Apex Controller Needed

Page 16: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

•  No Apex or SOQL

•  Performance boost from client cache

•  Data available offline

•  Data consistency across components

•  Automatic record refresh from server

•  Automatic notification when record changes

•  Components can be entity-agnostic

Benefits of <force:record> over custom record loading

Page 17: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

Demonstration

Page 18: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

Campground custom object

 Two important fields:

•  Name

•  Location

Page 19: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

<force:record> in Lightning Experience

Page 20: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

 Opportunity List  Opportunity Record + hover on parent Account

 Account Record

<force:record> in record browsing flow

 Same Opportunity record in list view and highlights

Same Account record in preview and highlights components

Page 21: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

Page load time improved  Experienced page time (milliseconds) before and after highlights component refactored to use <force:record>

0

200

400

600

800

1000

1200

1400

1600

Opportunities Accounts Users

Before <force:record>

After <force:record>

EPT

(ms)

Page 22: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

•  No Apex or SOQL

•  Performance boost from client cache

•  Data available offline

•  Data consistency across components

•  Automatic record refresh from server

•  Automatic notification when record changes

•  Components can be entity-agnostic

Benefits of <force:record> over custom record loading

Page 23: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

Roadmap

Page 24: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

•  More optimizations to record loading

•  Proactive loading of records

•  Advanced record loading with Aura method load()

•  Deleting records with Aura method delete()

Future of <force:record>

•  Saving records with Aura method save()

•  Securely storing draft records when offline

•  Supporting lists of records

Page 25: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

Thank you

Page 26: Lightning Data Service: Eliminate Your Need to Load Records Through Controllers

Questions?