javascript on tv
play

JavaScript on TV Building full screen apps with Vue.js Welcome to - PowerPoint PPT Presentation

JavaScript on TV Building full screen apps with Vue.js Welcome to multiplatform hell. Theres so many of them! LG Netcast LG WebOS Samsung Tizen Android TV Firefox OS (srsly.) Roku TV Fire TV tvOS and the


  1. JavaScript on TV Building full screen apps with Vue.js

  2. Welcome to multiplatform hell.

  3. There’s so many of them! ● LG Netcast ● LG WebOS ● Samsung Tizen ● Android TV ● Firefox OS (srsly.) ● Roku TV ● Fire TV ● tvOS ● … and the list goes on.

  4. webapp! It’ll work everywhere.

  5. Welcome to multiplaform cross-browser hell.

  6. There’s still quite a lot of them! ● Mostly WebKit forks ● Mostly frozen in time ● Some APIs missing ● Some user agents are fake ● Video support is hilarious ● You look for matching desktop browsers

  7. How TV development looks ● Fixed wrapper ● Mashing on the keyboard ● Surrounded by TVs

  8. Off to a good start with vue-cli ● Webpack template ● Dev environment (linters, HMR, error overlay) ● Production builds ● Unit & E2E tests ● A router ● VueX had to be added

  9. New problems

  10. Section switching ● Should I write a mini handler? ● Doh, router! ● Free transitions

  11. Navigation ● Router saves the day again ● Nested routes/partial templates

  12. Global state ● VueX is really helpful ● App has a _lot_ of global state ● Reactive programming greatly simplifies this

  13. Optimising for performance ● The TVs are slow ● The browsers are even slower ● We need to dig deep ● Followed a container/component structure from Redux ● Dumb components are easy to modify ● Architecture quality is not affected

  14. Remote control ● By far the most interesting problem ● Opposite flow of events affects architecture ● Constraints on what kind of states you can have ● Reactive programming, again, really helps

  15. Main event handler: The solution if (specialCaseActive) { specialCaseHandler(); } else { regularHandlers[currentRoute]() } Each page component: export default { ... Mixin: mixins: [registerkeyHandler], methods: { export default { handleKey(key) { ... } created() { }, regularHandlers[currentRoute] = ... this.handleKey; } } }

  16. Final verdict: surprisingly applicable

  17. mato@zgajner.com, work done for united.cloud

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend