Presentation is loading. Please wait.

Presentation is loading. Please wait.

Mail RIA & Silverlight – Defining new experience on the Web Our RIA objectives - Eric Hoffman A Silverlight development tale – Eric Hoffman A new verse.

Similar presentations


Presentation on theme: "Mail RIA & Silverlight – Defining new experience on the Web Our RIA objectives - Eric Hoffman A Silverlight development tale – Eric Hoffman A new verse."— Presentation transcript:

1

2

3 Mail RIA & Silverlight – Defining new experience on the Web Our RIA objectives - Eric Hoffman A Silverlight development tale – Eric Hoffman A new verse in web User Interface – Marc Katchay The underlying nuts and bolts – Stefan Gal Monetization opportunities – Seth Halvaksz An Invitation An Invitation

4 The next chapter for web applications Rich and performant Personalization taken to another level Write it once, run it everywhere Beyond the web cache Enhanced engagement New monetization opportunities

5 Beginning with Silverlight 1.0 / 2.0 Research and exploration project We were hopeful… High Definition video and audio playback Compact size and the idea of “write it once” The “DNA” for some controls.NET runtime – really appealing to us developers Challenges presented themselves throughout the summer of 07

6 “grid” & “stack” prototype “grid” & “stack” prototype

7 Silverlight 2.0 provided… Basic layout Grid & stack panels Isolated storage – size was a factor still Could we build an application with just this.. Pivotal moment was reached Hybrid approach was contemplated Delay project several months In the end..our team decided to write some code..

8 namespace Client.Controls.Button { [TemplatePart(Name="Part_MouseUp“,Type=typeof(S toryboard)), … public abstract class ButtonBase : Control { … }

9 What we really needed … more advanced controls.. Buttons, checkboxes Tree control ListView,- virtualized.. Listboxes – for settings Html control for read and write mail Grid splitters & custom layout Databinding – move data from model to our controls

10 Morphed into a Collaboration.. Contribution to the core Silverlight feature set Request functionality as we needed.. A validation of the usability of the framework Some examples Adding encryption for secure isolated storage Imagine background worker threads – in a web application ! Cross domain would be nice …

11 using (Stream xstream = new CryptoStream(stream, _alghoritm.CreateDecryptor(), CryptoStreamMode.Read)) { using (Stream zstream = new GZipStream(xstream, CompressionMode.Decompress)) { data = LoadObject (zstream); }

12 public void SaveObject (string path, T data, Action cb) where T : class { // Main thread here … ThreadPool.QueueUserWorkItem(delegate(object state) { // Anonymous function – C# // Worker thread here … Exception exception = null; try{ SaveObject(path, data); } catch (Exception ex){ exception = ex; }

13

14

15 Appealing – Look good Rich in assets - Vibrant Feel alive!! – non static look Dynamic/ResizableSkinnable Fast – seem effortless

16 Designers create UI layout Developers build controls and components Controls paint visuals and bind to business data UI elements taken from designers layout and rendered in respective controls

17 Artists/Designers create application Think multiple/Differentiating skins Utilize tools. Create in natural format - xaml Build application to adopt designer requirements

18 Identify Key Components Components are themselves controls Define Root Layout of Application

19 First things first!! -- Custom Controls DataGridCellsListTreeTreeNodesGridSplitterButtons…

20 Custom visual controls derive from control class Control Class supports Control Templates All components and visual controls use templates Critical for skinning model Templates collected to form a skin

21 <ControlTemplate/> <ColorAnimation Duration="00:00:00.2“ To="#50FFFFFF" <ColorAnimation Duration="00:00:00.2“ To="#50FFFFFF" Storyboard.TargetName="Part_HighlightRect” Storyboard.TargetProperty="(Shape.Fill).(SolidColorBrush.C olor)" /> </ControlTemplate>

22 namespace Client.Controls { public class ButtonCell : Control public class ButtonCell : Control {ResourceHelper.GetControlTemplate(typeof(ButtonCell)); } public ButtonCell() public ButtonCell() { base.Template = s_CellTemplate; base.Template = s_CellTemplate; base.ApplyTemplate(); base.ApplyTemplate(); }}

23 Browser resizes Grid Splitters Some UI elements grow as skin is resized Manage Multiple UI elements Built specialized layout panels to encapsulate and draw multiple elements of a skin Code behind should never have custom code dedicated to a skin

24 <Controls:ViewPanel> </Controls:ViewPanel></Grid><ControlTemplate>

25 public abstract class ViewPanel : Panel { protected override Size MeasureOverride(Size availableSize) protected override Size MeasureOverride(Size availableSize) { } protected override Size ArrangeOverride(Size finalSize) protected override Size ArrangeOverride(Size finalSize) {} }

26 Skin is a project Comprised of Templates and Images

27 Skins ResourceHelper Class Loads Skin Assembly Helper functions to locate and load templates GetControlTemplate() Helper functions to load resources Application Background Background animation

28 Summary We have a skin solution Separate assemblies Change skins Dynamic living skins Well defined layer for designers to work with UI Infrastructure Controls – Templates Components – define key sections of app

29

30 The quest for a rich, interactive user experience Custom controls Silverlight overlays

31 High performance Extreme flexibility Skinnable Small download

32 Template based controls Extensive data binding Template binding whenever possible Shared resources and styles Virtualized controls for large data sets

33 public class ItemData : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; }

34 VirtualizedList _list1; ObservableCollection _dataSource; … _list1.ItemsSource = _dataSource;

35 public class VirtualizedList : Control { … public IList ItemsSource { … } public DataTemplate ItemTemplate { … } }

36 <c:ListItem Foreground="Blue“ Text=“{Binding Caption}”/>

37 <TextBlock Text="{Binding Caption}" Foreground="Gold“ Padding="2"/>

38

39 HTMLHTML OverlayOverlay

40 Requirement introduced by the usage of browser based HTML rendering and composition Also used for Context menus Modal dialogs Rich Tooltips ‘Out of banner’ Silverlight ads Legacy ads

41 Creating Silverlight overlay plugin Communication between plugins Sharing code and resources Plugin lifetime management

42 Hosted by an absolute positioned DIV Host element is child of main host element, sibling of the main plugin Silverlight.js support to create the additional plugin Windowless mode supports transparency and irregularly shaped windows

43 ScriptObject arg = (ScriptObject) HtmlPage.Window.Eval("new Object;"); arg.SetProperty("initParams", “parentId=" + HtmlPage.Plugin.Id; ScriptObject slso = (ScriptObject) HtmlPage.Window. GetProperty("Silverlight"); slso.Invoke("createObjectEx", arg);

44 Each plugin runs in its own application domain JSON payload passed as parameters and returned as result. Input and output passed by value. Scriptable objects used for callbacks and interaction Creation is asynchronous, the child plugin will find and connect to the parent based on initialization parameters

45 Separate.xap archive files are used for main plugin and overlay plugins Distributing shared code and resources in both archives is possible but not desirable due to increased download size. We chose to have the overlay load the required assemblies dynamically from the main archive It is fast because the download will find the main archive cached by the browser

46 Main.xapMain.xap Model.dllModel.dll Controls.dllControls.dll Popup.xapPopup.xap Popup.dllPopup.dll

47 _webClient = new WebClient(); _webClient.OpenReadCompleted += delegate(object sender,… e) { Load(new StreamResourceInfo (e.Result, null)); }; _webClient.OpenReadAsync( new Uri(“shared.xap", UriKind.Relative));

48 StreamResourceInfo ri = Application.GetResourceStream(xap, new Uri(“shared.dll“, UriKind.Relative)); AssemblyPart p = new AssemblyPart(); Assembly a = p.Load(ri.Stream);

49

50 Flexible separation of data, control logic and control visuals Lightweight and high performance Extensive binding Virtualized controls for large data sets Rich, highly interactive visuals Skins downloaded on demand

51

52 AOL Mail RIA & Monetization ObjectivesEngagingHigh-performingStandards-based Integration between ads and application SkinsPanels Rich media options High impact audio & video Rich animations

53 AOL Mail RIA & Silverlight A new experience on the web Industry-leading performance Unique skinning capabilities High impact content delivery Mail from AOL Innovative products Get the email identity and experience that expresses who you are and what you like

54 Sign up today to be notified when the preview is available http://ria.mail.aol.com

55


Download ppt "Mail RIA & Silverlight – Defining new experience on the Web Our RIA objectives - Eric Hoffman A Silverlight development tale – Eric Hoffman A new verse."

Similar presentations


Ads by Google