I have a project where a part needs to implement a basic svg editor for something similar to google presentation.
I have developed two prototypes with snap.svg and svg.js, and for creating the full application, I am biased towards Ember to handle the logic, and one of the svg libs handling the render/manipulation of the document.
Ember wih normal models and handlebars views are perfect for the rest of the app, but for the presentation editor I am not sure if a custom view or a full component is the best solution? Or is it better to start using htmlbars for the entire app?
Thanks, I’ll go for thje ember views. Played with an early version of htmlbars, and it is possible, but it requires a full svg-mouse-keyboard interaction library to be written, so a view with a svg lib is as of now easier.