Developing Offline Mobile Apps with the Salesforce.com Mobile SDK SmartStore, and SmartSync

Preview:

DESCRIPTION

Dreamforce 2013 Session. At some point, all mobile app users lose their data signal. Join us to learn best-practices for coding for offline requirements with the salesforce.com Mobile SDK. We'll develop a simple app using SmartStore offline storage, highlighting the new SmartSQL and SmartSync features. With these tools, you can take your mobile apps to the next level, developing native and hybrid applications on iOS and Android that have offline access to your data.

Citation preview

Developing Offline Mobile AppsSalesforce Mobile SDK SmartStore and SmartSync

Tom Gersic, Salesforce.comDirector, Mobile Services Delivery@tomgersic

Safe harborSafe 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.

Tom GersicDirector, Mobile Services Delivery@tomgersic

AgendaWhat we are going to build today

Salesforce Mobile SDK Overview

SmartStore Terminology

SmartSync Terminology

Walking through some code

“I need this data, but my connection is awful!!!”

Why offline?

Data based decisionsIn the field, and by management

What we’ll build today

https://github.com/tomgersic/Opportune

Customer DataSalesforce.com Mobile SDK

Three Options: Which One Is Right For You?

Web developer skillsWeb developer skillsAccess to native platformAccess to native platformApp store distributionApp store distribution

Advanced UI interactionsAdvanced UI interactionsFastest performanceFastest performanceApp store distributionApp store distribution

Web developer skillsWeb developer skillsInstant updatesInstant updatesUnrestricted distributionUnrestricted distribution

I swear this makes sense!

I swear this makes sense!

SmartSync

Terminology

Stores

Soups• Hold Indexed JSON Documents

• JSON Responses can encompass data from multiple tables

Id Soup Created lastModified Index 1 Index 2 Index N…

1 {JSON} 1371069899796 1371070436125 a00E0000009Xj2mIAC Salesforce.com …

2 {JSON} 1371069899802 1371070436126 a00E0000009Xj36IAC Facebook …

3 {JSON} 1371069899803 1371129103154 a00E0000004h2MnIAI Google …

REST API Returns a JSON Response/services/data/v28.0/query/?q=SELECT Id, Name FROM Opportunity

Some things you can do with your soup…• Register a Soup with an IndexSpec• Query a Soup using a QuerySpec• Upsert Data to a Soup

• Delete Data from a Soup

• Remove a Soup

IndexSpec• JSON Object

• Fields to index

• “string” or “integer”[

{"path":"Id","type":"string"},

{"path":"Name","type":"string"}

]

QuerySpec

buildAllQuerySpec(path,order,pageSize)Query all records from the object in the given sort order (or null order)

buildExactQuerySpec(path,matchKey,pageSize)Search for records with index path values matching the key.

buildRangeQuerySpec(path,beginKey,endKey,pageSize)Return all records with an index path value between the two range values

buildLikeQuerySpec(path,likeKey,order,pageSize)Basically “select * from [table] LIKE ‘%[likeKey]%’”

buildSmartQuerySpec(smartSql,pageSize)Basically “select * from [table] LIKE ‘%[likeKey]%’”

SmartSQLSELECT {departments:name}, {employees:lastName}

FROM {employees}, {departments}

WHERE {departments:deptCode} = {employees:deptCode}

ORDER by {departments:name}, {employees:lastName}

SmartSync• Extends Backbone.js

• Can be used with or without a SmartStore Cache

• Queries returned as Backbone Model Collections

Backbone• MV* Framework

• Models: Individual records• Collections: Collections of Model records

• View: Javascript backing for the stuff that you see

• Router: routes everything after the # in a URL to application functions• http://myapp.com/#/user/list

Force.SObject• sobjectType: Account, Opportunity, etc.

• fieldlist: ["Id", "Name", "Amount", "StageName"]

• cacheMode: client, server write order

• mergeMode: how to handle conflicts

• cache: if using SmartStore

• cacheForOriginals: backup data for conflict detection

Force.SObjectCollection• config: determines queries used to access data

• cache: if using SmartStore

• cacheForOriginals: backup data for conflict detection

Force.StoreCache• soupName: Name of the SmartStore Soup

• additionalIndexSpecs: IndexSpecs to use, in addition to defaults

• keyField: Name of the field containing the record Id

• __locally_created__• __locally_updated__• __locally_deleted__• __local__ (set to true if any of the previous three are true)

Patterns for Offline Success

Offline Queueing

Tom Gersic

Director, Mobile Services Delivery@tomgersic

@tomgersic

Recommended