javascript patterns and practices from the salesforce experts

45
JavaScript Patterns and Practices from the Salesforce Experts The subtitle goes here Kris Gray, salesforce.com SMTS UI Architecture and Performance @GrayJustise

Upload: salesforce-developers

Post on 14-Dec-2014

658 views

Category:

Documents


3 download

DESCRIPTION

 

TRANSCRIPT

Page 1: JavaScript Patterns and Practices from the Salesforce Experts

JavaScript Patterns and Practices

from the Salesforce Experts

The subtitle goes here

Kris Gray, salesforce.com SMTS

UI Architecture and Performance

@GrayJustise

Page 2: JavaScript Patterns and Practices from the Salesforce Experts

Safe Harbor

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 intellectual property and other l itigation, risks associated

with 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-Q for the most recent fiscal quarter ended July 31, 2012. This

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.

Page 3: JavaScript Patterns and Practices from the Salesforce Experts

Who We Are

Page 4: JavaScript Patterns and Practices from the Salesforce Experts
Page 5: JavaScript Patterns and Practices from the Salesforce Experts

Whats special about salesforce.com?

Page 6: JavaScript Patterns and Practices from the Salesforce Experts

Picture: salesforce.com with Other Top 9

Companies

Page 7: JavaScript Patterns and Practices from the Salesforce Experts

1999

Page 8: JavaScript Patterns and Practices from the Salesforce Experts

+ Platform all in the cloud.

Single code base Application

Page 9: JavaScript Patterns and Practices from the Salesforce Experts

What have we learned?

Page 10: JavaScript Patterns and Practices from the Salesforce Experts

The Good

Page 11: JavaScript Patterns and Practices from the Salesforce Experts

The Good

Page 12: JavaScript Patterns and Practices from the Salesforce Experts

The Bad

Anti-Patterns

Page 13: JavaScript Patterns and Practices from the Salesforce Experts

Functions.js

Page 14: JavaScript Patterns and Practices from the Salesforce Experts

Functions.js

Early

Grouping

Infrastructure

Page 15: JavaScript Patterns and Practices from the Salesforce Experts

Functions.js

Early

Grouping

Infrastructure

Rise of the

Libraries

Page 16: JavaScript Patterns and Practices from the Salesforce Experts

Functions.js

Early

Grouping

Infrastructure

Rise of the

Libraries

Build

Optimization

Tools

Page 17: JavaScript Patterns and Practices from the Salesforce Experts

Prototype

Dojo

ExtJS

jQuery

Accent

Page 18: JavaScript Patterns and Practices from the Salesforce Experts

Functions.js

jQuery

Prototype

DOJO

ExtJS

+1

?

Page 19: JavaScript Patterns and Practices from the Salesforce Experts

ANTI-PATTERN:

Excessive Library usage.

Page 20: JavaScript Patterns and Practices from the Salesforce Experts

DEVELOPER PRODUCTIVITY

Establish a standard API for developer confidence.

Page 21: JavaScript Patterns and Practices from the Salesforce Experts

Accent

Page 22: JavaScript Patterns and Practices from the Salesforce Experts
Page 23: JavaScript Patterns and Practices from the Salesforce Experts

ANTI-PATTERN:

Sacrificing maintainability for convenience.

Page 24: JavaScript Patterns and Practices from the Salesforce Experts
Page 25: JavaScript Patterns and Practices from the Salesforce Experts

Show Picture: Some Dropdown Code

Page 26: JavaScript Patterns and Practices from the Salesforce Experts

Show Code: Accent usage of Eventing and Dom

interaction

Page 27: JavaScript Patterns and Practices from the Salesforce Experts

Show Picture: Web Page + One main group and a

bunch of little groups.

Add red indicator to main group to show the first

option.

Page 28: JavaScript Patterns and Practices from the Salesforce Experts

Show Picture: Web Page + One main group and a

bunch of little groups.

Add red indicator to a few of the little group to

show the second option.

Page 29: JavaScript Patterns and Practices from the Salesforce Experts

Show Picture: Web Page + One main group and a

bunch of little groups.

Add another red group to indicate a 3rd option.

Page 30: JavaScript Patterns and Practices from the Salesforce Experts

Show Picture: JSLibrary XML definition for

component group.

Page 31: JavaScript Patterns and Practices from the Salesforce Experts

Show Picture: Code Collab + SmartBear Logo

Page 32: JavaScript Patterns and Practices from the Salesforce Experts

ANTI-PATTERN:

No degraded user experience for accessible users.

Page 33: JavaScript Patterns and Practices from the Salesforce Experts

Show Code: Use List item with role attribute.

Page 34: JavaScript Patterns and Practices from the Salesforce Experts
Page 35: JavaScript Patterns and Practices from the Salesforce Experts

Show Picture: Cadence Graph

Page 36: JavaScript Patterns and Practices from the Salesforce Experts

DEVELOPER PRODUCTIVITY

Always know the performance of your application.

Page 37: JavaScript Patterns and Practices from the Salesforce Experts

DEVELOPER PRODUCTIVITY

Make Testing Easier

Page 38: JavaScript Patterns and Practices from the Salesforce Experts
Page 39: JavaScript Patterns and Practices from the Salesforce Experts
Page 40: JavaScript Patterns and Practices from the Salesforce Experts

DEVELOPER PRODUCTIVITY

• Give a clear defined way.

• Always know the performance

of your application.

• Make Testing Easier

Page 41: JavaScript Patterns and Practices from the Salesforce Experts

UI Performance

• Reduce duplication

• Reduce web requests

• Build up your infrastructure.

Page 42: JavaScript Patterns and Practices from the Salesforce Experts

ANTI-PATTERNS

•Library Duplication

• No degraded user

experience for accessible

users.

• Sacrificing maintenance

for convenience.

Page 43: JavaScript Patterns and Practices from the Salesforce Experts

Kris Gray

Speaker Title,

@twittername

John Buchanan

Speaker Title,

@twittername

David Brady Jay Tanaka

Speaker Title,

@twittername

Speaker Title,

@twittername

Speaker Title,

@twittername

Nathan McWilliams

Page 44: JavaScript Patterns and Practices from the Salesforce Experts
Page 45: JavaScript Patterns and Practices from the Salesforce Experts

References