ryan campbell - openflux and flex 4

39
OpenFlux and Flex 4 By Ryan Campbell Friday, May 15, 2009

Upload: 360conferences

Post on 06-Sep-2014

1.736 views

Category:

Technology


2 download

DESCRIPTION

Now that Flex 4 is getting closer, find out what that means for OpenFlux. Learn when is best to use OpenFlux and when is best to use Flex 4 for custom components. I'll show the differences and similarities between the two architectures giving you a better understanding of both frameworks and how well they can actually work together. You'll also learn what's new with OpenFlux, including virtualized lists, and what our future plans are, including pure-AS3-only support.

TRANSCRIPT

Page 1: Ryan Campbell - OpenFlux and Flex 4

OpenFlux and Flex 4By Ryan Campbell

Friday, May 15, 2009

Page 2: Ryan Campbell - OpenFlux and Flex 4

About This Session

• OpenFlux vs. Flex 4

• Component / Model

• Views

• Controllers

• Metadata

• Layouts

• Virtualization

• Extending Components vs Adding Controllers

• DataGrid Component

• OpenFlux Independent of Flex

Friday, May 15, 2009

Page 3: Ryan Campbell - OpenFlux and Flex 4

What is OpenFlux?

Friday, May 15, 2009

Page 4: Ryan Campbell - OpenFlux and Flex 4

OpenFlux is:

• Lightweight MVC Component Framework

• Makes Custom Components Easier

• Works with Flex 3, Flex 4 and AS3

• Open source, licensed under MIT

• Currently at version Beta 3

Friday, May 15, 2009

Page 5: Ryan Campbell - OpenFlux and Flex 4

OpenFlux vs. Flex 4

Friday, May 15, 2009

Page 6: Ryan Campbell - OpenFlux and Flex 4

Major Flex 4 Similarities

• Component logic is separate from view logic

• Supports custom layouts

• Less code duplication / monkey patching compared to Flex 3

• Both run on computers?

Friday, May 15, 2009

Page 7: Ryan Campbell - OpenFlux and Flex 4

Major Flex 4 Differences

• OpenFlux separates logic into controllers

• Flex 4, keeps logic in the component and base classes (same as Flex 3)

• OpenFlux focuses on being lightweight

• Flex 4 is actually pretty huge

Friday, May 15, 2009

Page 8: Ryan Campbell - OpenFlux and Flex 4

Component / Model

Friday, May 15, 2009

Page 9: Ryan Campbell - OpenFlux and Flex 4

Component / Model

• Contains no logic

• Only contains public properties

• Extends FluxComponent

• FluxComponent handles attaching controllers and views

Friday, May 15, 2009

Page 10: Ryan Campbell - OpenFlux and Flex 4

Component / Model

EXAMPLE:

Friday, May 15, 2009

Page 11: Ryan Campbell - OpenFlux and Flex 4

Views

Friday, May 15, 2009

Page 12: Ryan Campbell - OpenFlux and Flex 4

Views

• OpenFlux views implement IFluxView

• Flex 4 views extend Skin (which extends Group)

• OpenFlux uses Degrafa

• Flex 4 uses FXG

Friday, May 15, 2009

Page 13: Ryan Campbell - OpenFlux and Flex 4

Views

EXAMPLE:

Friday, May 15, 2009

Page 14: Ryan Campbell - OpenFlux and Flex 4

Controllers

Friday, May 15, 2009

Page 15: Ryan Campbell - OpenFlux and Flex 4

Controllers

• OpenFlux separates component logic in to multiple controllers

• Flex 4 doesn’t have controllers

• Listen for events and modify the model

• Don’t need drag’n drop? Don’t include it!

• Add / remove controllers even at runtime

Friday, May 15, 2009

Page 16: Ryan Campbell - OpenFlux and Flex 4

Controllers

EXAMPLE:

Friday, May 15, 2009

Page 17: Ryan Campbell - OpenFlux and Flex 4

Metadata

Friday, May 15, 2009

Page 18: Ryan Campbell - OpenFlux and Flex 4

Metadata

• OpenFlux has 7 different [Metadata] tags

• Uses custom metadata to reduce code duplication

• Dependency Injection

• Handles adding/removing event listeners

Friday, May 15, 2009

Page 19: Ryan Campbell - OpenFlux and Flex 4

Metadata

[ViewHandler(event="click", handler="clickHandler")][EventHandler(event="click", handler="clickHandler")][ViewContract][ModelAlias]

Controller

Component

[Capacitor][DefaultSetting(property="value"]

Common

[StyleBinding]

Friday, May 15, 2009

Page 20: Ryan Campbell - OpenFlux and Flex 4

Metadata

EXAMPLE:

Friday, May 15, 2009

Page 21: Ryan Campbell - OpenFlux and Flex 4

Layouts

Friday, May 15, 2009

Page 22: Ryan Campbell - OpenFlux and Flex 4

OpenFlux Layouts

• Implement ILayout (4 methods)

• Optionally implement IDragLayout (2 more methods)

• Optionally extend LayoutBase (handles 2 ILayout methods for you)

• HorizontalLayout is 132 lines of code

Friday, May 15, 2009

Page 23: Ryan Campbell - OpenFlux and Flex 4

Flex 4 Layouts

• Don’t implement an interface

• Must extend LayoutBase

• Also handle virtualization (with DataGroup)

• HorizontalLayout is 1,720 lines of code

Friday, May 15, 2009

Page 24: Ryan Campbell - OpenFlux and Flex 4

Layouts

EXAMPLE:

Friday, May 15, 2009

Page 25: Ryan Campbell - OpenFlux and Flex 4

Virtualization

Friday, May 15, 2009

Page 26: Ryan Campbell - OpenFlux and Flex 4

• Flex 4 virtualization is handled by DataGroup and Layouts

• OpenFlux components know nothing about virtualization

• Handled by VirtualCollection

• Looks like a regular array collection to the component

Virtualization

Friday, May 15, 2009

Page 27: Ryan Campbell - OpenFlux and Flex 4

Virtualization

<VirtualCollection id="virtual"data="{ someHugeDataSet }"position="{ scrollBar.position }"size="30" />

<List id=”list” data="{ virtual }" />

<ScrollBar id="scrollBar“max="{ someHugeDataSet.length - virtual.size }" />

Friday, May 15, 2009

Page 28: Ryan Campbell - OpenFlux and Flex 4

Virtualization

EXAMPLE:

Friday, May 15, 2009

Page 29: Ryan Campbell - OpenFlux and Flex 4

Extending, extending, extending

Friday, May 15, 2009

Page 30: Ryan Campbell - OpenFlux and Flex 4

Extending a Component

<TextInput id=”input”> <PromptController prompt=”First Name” /> <AutoCompleteController items=”{ names }” /></TextInput>

<AutoCompletePromptTextInput id=”input” prompt=”First Name” items=”{ names }” />

Adding Controllers

Friday, May 15, 2009

Page 31: Ryan Campbell - OpenFlux and Flex 4

DataGrid & Tree

Friday, May 15, 2009

Page 32: Ryan Campbell - OpenFlux and Flex 4

DataGrid & Tree

• Built over a weekend (including Tree and TreeDataGrid)

• Extends from List. Header is even horizontal List.

• One new controller for DataGrid, One for Tree

Friday, May 15, 2009

Page 33: Ryan Campbell - OpenFlux and Flex 4

DataGrid & Tree

EXAMPLE:

Friday, May 15, 2009

Page 34: Ryan Campbell - OpenFlux and Flex 4

OpenFlux Independence

Friday, May 15, 2009

Page 35: Ryan Campbell - OpenFlux and Flex 4

What’s that mean?

• Use OpenFlux components with or without Flex.

• Lighter weight implementations of Flex interfaces

• Still supports MXML, CSS, Data Binding and Resource Bundles

• Compiled SWFs as small as 75KB without RSL

Friday, May 15, 2009

Page 36: Ryan Campbell - OpenFlux and Flex 4

What was replaced?

• UIComponent, SystemManager, LayoutManager

• Application, Label and Image

• Holy crap that was a lot of work...

Friday, May 15, 2009

Page 37: Ryan Campbell - OpenFlux and Flex 4

What was kept?

• StyleManager, BindingManager, ResourceManager we’re keeping (because we have to)

• Events and interfaces

• Any other classes that don’t reference UIComponent

Friday, May 15, 2009

Page 38: Ryan Campbell - OpenFlux and Flex 4

OpenFlux App

EXAMPLE:

Friday, May 15, 2009

Page 39: Ryan Campbell - OpenFlux and Flex 4

www.openflux.orgBlog, Examples, Docs, Source

Code and Google Group

Friday, May 15, 2009