Wish List - WebDialog communication model
16 posts
• Page 1 of 1
Wish List - WebDialog communication modelHere's another topical breakout from my "SketchUp API Wish List" post:
http://forums.sketchucation.com/viewtopic.php?f=180&t=44949 SketchUp's WebDialogs provide an extremely flexible way to create user interfaces. They can also be used for other purposes (eg, providing access to network services). However, the way they communicate with plugins is both quirky and peculiar. This forces developers to create workarounds and limits their ability to use familiar design patterns and libraries. As an example of quirky behavior, execute_script() imposes a fairly small (and undocumented) limit on the size of the executed code string. So, although the call can be used to transfer data (eg, as JSON), any significant amount of data will require multiple calls. The communication model is also quite peculiar, by current web standards. For example, execute_script(), get_element_value(), and the "location=" hack look nothing like the usual ways of performing communication with a web server. As a result, common web programming practices (eg, Ajax, REST) are awkward to use. More to the point, many popular JavaScript libraries (eg, Angularjs, Backbone, Knockout) can't be used as-is. I am not arguing for the removal of the current communication model or anything else that would break existing plugins. However, it should be possible for SketchUp to emulate protocols such as WebSockets and/or XMLHttpRequest. This would allow literally dozens of JavaScript libraries to be used in WebDialogs. It would also open up possibilities for plugin code that uses common programming idioms (and even code) from Ruby application frameworks such as Rails or Sinatra.
Re: Wish List - WebDialog communication modelI don't know if something on these lines would be useful for you.
I am using a url inside the webdialog. I do as much as possible in javascript (with ajax and appropriate libraries). At the moment I am working with 2D "components" on html5 canvas (KinectJS library) but I have the beginnings of a sample bridge.rb just to manipulate SU components (using the same data with a few zzzz's added). My main interest is analytical animation both of words and models.
Re: Wish List - WebDialog communication model
Interesting. My approach (eg, in Igloo Studios' Product Connect suite) has been exactly the reverse: use the thinnest possible layer of JS calls (mostly jQuery) to package up event information and forward it to the plugin code. No doubt, this reflects my preference for coding Ruby... FWIW, I also did some template-driven JS and HTML generation in the plugin, using ERb, etc. But then, I feel more comfortable with code generation than with hand-editing large amounts of repetitive code. I'm impressed that you've been able to implement Ajax in the WebDialog environment. However, I suspect that it would have been a lot easier had SketchUp provided emulation of typical web protocols. Given that most plugin developers are not likely to be JS ninjas, being able to use existing libraries (as-is) still seems like a win...
Re: Wish List - WebDialog communication modelI've been building a wrapper that let me create and manipulate many common GUI elements from the Ruby side. Also a better bridge between Ruby and Javascript, where instead of just strings, common object types are transferred. And cleaner ways to call Javascript method, where from Ruby you just use the name of the javascript function and then pass the arguments as you do in Ruby - avoids all the escaping issues etc.
Yes, that is troublesome. And that it's hard to make a GUI that works outside of SketchUp's webdialogs - for testing - as the user agent string only works for the most recent SketchUp version. Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
Re: Wish List - WebDialog communication model
I hacked up a Browser_Dialog class as a debugging aid: http://wiki.cfcl.com/bin/view/SketchUp/SketchApps/DF_BD It mocks up a subset of WebDialog methods and communicates with a browser. Event Machine proxies between temporary files (on the plugin side) and WebSockets (on the browser side). Works amazingly well, all things considered...
Re: Wish List - WebDialog communication modelVery interesting topic! I agree that communication is not straight-forward (especially when we need to pass a lot of data and let JavaScript call a Ruby method so that Ruby reads a hidden text field in the WebDialog).
A bit unrelated, but I created a small fake program "skp" and registered it in Firefox for the skp: protocol. this way I can debug Javascript and CSS without annoying error messages that Firefox does not know what to do with skp:.
Re: Wish List - WebDialog communication modelHere and elsewhere communication models appear to be built on software solutions. A healthier approach is for the communication model to be designed to lead to software solutions. For example webdialogs can be software solutions for viewing communication models assembled by working the Internet as I suggested here and here.
It is worth repeating the quote in that last post: All of the features of NLS were in support of Engelbart's goal of augmenting collective knowledge work and therefore focused on making the user more powerful, not simply on making the system easier to use. With this in mind I think it is very wrong to expect those gifted 3d modeling software designers to be responsible for communication modeling beyond the simplest of connections. Those who use Sketchup know what needs to be communicated for whatever they use it for yet there is little support for capturing and modeling their expertise - for example, why has builder Andrew Dwight had to go out on a limb?.
Re: Wish List - WebDialog communication modelthanks Chris, I am not sure if developing custom software is going out on a limb (unless Trimble removes access to the back end of Sketchup). I designed it for me to increase the amount of work that myself and other builders can get done in a day. We are all doing this in one way or another. I hope that the rest of the world will get to reap the benefits of my work in the future. I guess we will find out sooner or later.
My 2 bobs worth is: you can only achieve a certain amount with ruby and using all languages is imperative considering the access we have to Sketchups rear end. Andrew Dwight, NW Sydney Australia
aadbuild.com Something different done in Sketchup take a look at shipping container transformation. animated in Sketchup http://www.youtube.com/watch?v=9YxFuJYFgsY
Re: Wish List - WebDialog communication model
I don't think there was anything to thank me for, but have a read of this and its related posts. It may be you have put all your eggs in one basket - in which case you are very certainly out on a limb. Obviously I don't know the detail of your plug in but you mention some interaction with suppliers and so forth. You know most people have JavaScript enabled so if you are relying entirely on Ruby that may go against you. I would really think about minimising Ruby content to the simplest of bridges to Sketchup capturing and manipulating enabling data cross platform.
Re: Wish List - WebDialog communication modelI'm again struggling with the skp: protocol. It is probably one of the biggest limitations:
Last edited by Aerilius on Sun Jul 08, 2012 8:21 am, edited 1 time in total.
Re: Wish List - WebDialog communication modelTry building the protocol message as a single-quoted string ??
Also.. the HTMl & codes are not valid in URIs, because & is used mark a field. Special characters should be replaced with %nn hexidecimal codes. ie & is %26
Re: Wish List - WebDialog communication model
For simple messages yes, but if I can't predict what characters the message contains, I can't simply brute-force replace all double quotes by single quotes. I ended up writing my own escape function the gets rid of all characters that need escaping (be it for urls or string manipulation). The normal escape function would replace \ by \\ and " by \" which both could later require escaping again (\\\\\\\\\\\\\\\\\\\\\\\\
Re: Wish List - WebDialog communication modelI have encountered similar "hair-pulling" frustration with the UI.openURL method.
Re: Wish List - WebDialog communication modelI've published a code snippet for many of these issues: viewtopic.php?f=180&t=46626
Input appreciated.
Re: Wish List - WebDialog communication model
What is the limit? I was relying on this to push (sizeable) model data into a silverlight plugin in the WebDialog. I had assumed I needed to chunk, but it would really help to know what that limit is, so I can chunk to that size. Thanks!
Re: Wish List - WebDialog communication model
This is the overriding problem: https://developers.google.com/sketchup/ ... n_callback
SketchUcation One-Liner AdvertsArtisan Organic Toolset - a set of powerful organic modeling tools.
Premium Members get 20% discount!
16 posts
• Page 1 of 1
|