developing windows 8 apps with html, css &...

21

Upload: others

Post on 09-Jun-2020

3 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing
Page 2: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing

Day 1 | HTML, CSS and JavaScript Day 2 | Windows Apps using HTML and JavaScript

Module 1: HTML5 Semantic Structure Module 1: Designing a Windows 8 App

Module 2: CSS3 Selectors and Style Properties Module 2: Developing Windows 8 Apps

Module 3: Advanced Layout and Animation Module 3: Working with Contracts

MEAL BREAK MEAL BREAK

Module 4: JavaScript Core Capabilities Module 4: UI and Controls

Module 5: DOM Interactions Module 5: Interactions

Module 6: Advanced Topics Module 6: Data Access

Page 3: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing

Module Agenda

Handling exceptions

Promises

Web worker

Web sockets

Architecture patterns

TypeScript

˃

Page 4: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing

Handling exceptions

managing failures in code

minimizing failures in code

Page 5: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing
Page 6: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing
Page 7: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing
Page 8: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing

Module Agenda

Handling exceptions

Promises

Web worker

Web sockets

Architecture patterns

TypeScript

˃

Page 9: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing

Promises

concept

consuming a promise

chaining then… then… done

passing a promise

creating a promise

storing a promise

reporting progress

http://codefoster.com/using-promises

Page 10: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing
Page 11: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing

Module Agenda

Handling exceptions

Promises

Web worker

Web sockets

Architecture patterns

TypeScript

˃

Page 12: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing

Web worker

offload work to another thread

capable of two way messaging with primary thread

spawn other workers

import scripts

call xhr

cannot access DOM

Page 13: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing
Page 14: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing

Module Agenda

Handling exceptions

Promises

Web worker

Web sockets

Architecture patterns

TypeScript

˃

Page 15: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing

Web sockets

Windows.Networking.Sockets namespace

WebSockets

StreamSocket

dev.windows.com | Samples | WebSockets sample

Page 16: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing

Module Agenda

Handling exceptions

Promises

Web worker

Web sockets

Architecture patterns

TypeScript

˃

Page 17: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing

Architectural patterns

MVVM (Model View ViewModel) is easy in a dynamic language

processAll on any element

calculated properties

converters

Page 18: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing

Module Agenda

Handling exceptions

Promises

Web worker

Web sockets

Architecture patterns

TypeScript˃

Page 19: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing

TypeScript

http://www.typescriptlang.org

Page 20: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing

Summary

Handling exceptions

Promises

Web worker

Web sockets

Architecture patterns

TypeScript

Page 21: Developing Windows 8 Apps with HTML, CSS & …download.microsoft.com/download/3/1/4/314781F6-D24A-4E3E...Web sockets Architecture patterns TypeScript ˃ Handling exceptions managing