sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    Webdialog - how execute_script works

    Scheduled Pinned Locked Moved Developers' Forum
    12 Posts 5 Posters 1.7k Views 5 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • thomthomT Offline
      thomthom
      last edited by

      I haven't seen this mentioned before - but I just came across how .execute_script works for Webdialogs:

      It takes the string argument passed to webdialog.execute_script and appends it into a new SCRIPT tag in the HTML.

      Example:
      wd = UI::WebDialog.new('HelloWorld') wd.set_html( 'Hello world' ) wd.show

      When you then execute this command:
      wd.execute_script('alert( document.body.innerHTML );')
      After running the command the fourth time

      This leads to some issues:

      1. You can not rely on the order of the DOM elements in your HTML DOM - as it might be perforated with SCRIPT elements from when you call JS functions.
      2. It doesn't clean up the SCRIPT element - so all your calls to JS will leave these SCRIPT DOM nodes around. I wonder what the performance impact might be.
      3. It means you should be vary of sending anything in the execute_script string that contains brackets and ampersands < > and & . You could ruing the DOM structure. The inserted SCRIPT element doesn't even wrap its content in comments.

      I'm still looking into this.

      Thomas Thomassen — SketchUp Monkey & Coding addict
      List of my plugins and link to the CookieWare fund

      1 Reply Last reply Reply Quote 0
      • T Offline
        tomasz
        last edited by

        If I want to send a material name : '<beige>1' to WD I have to escape both <> characters. Am I right?

        Author of [Thea Render for SketchUp](http://www.thearender.com/sketchup)

        1 Reply Last reply Reply Quote 0
        • thomthomT Offline
          thomthom
          last edited by

          Good question. I'm trying to work out the same. Since the content of the script is not wrapped in a comment tag I thought it would cause havoc with the DOM tree. But I'm not sure to be honest. I was working on a test case where I realised I sent materials like that escaped and it appear to be returned to me intact without HTML errors. But it could be just luck. Could be IE only that does this. Not sure if you pass a material with the name of a HTML tag.

          Looking into it as I type this.

          TT_Lib_Inputbox.png

          ` >> Input Ready

          Input Accept
          get_value(Inputbox_control0)
          get_value(Inputbox_control1)
          get_value(Inputbox_control2)
          get_value(Inputbox_control3)
          get_value(Inputbox_control4)
          get_value(Inputbox_control5)
          get_value(Inputbox_control6)
          get_value(Inputbox_control7)
          get_value(Inputbox_control8)
          get_value(Inputbox_control9)
          get_value(Inputbox_control10)
          get_value(Inputbox_control11)
          Results returned:
          ["Universe", false, true, 1234, 1.234, 118.110236220472, "Color_B24", "<Beige>1", "jean blue", ["black", "Color_B24", "<LightGray>"], "Foo Bar", "Monkeys"]`

          Thomas Thomassen — SketchUp Monkey & Coding addict
          List of my plugins and link to the CookieWare fund

          1 Reply Last reply Reply Quote 0
          • thomthomT Offline
            thomthom
            last edited by

            @unknownuser said:

            If I want to send a material name : '<beige>1' to WD I have to escape both <> characters. Am I right?

            If we do need to escape characters, then & should also be escaped. I'm thinking the esaping would have to be converting them to html entities. &lt; &gt; and &amp;

            I can't get Firebug Lite to work in my WD at the moment, so it's a bit hard to properly inspect the DOM tree.

            Thomas Thomassen — SketchUp Monkey & Coding addict
            List of my plugins and link to the CookieWare fund

            1 Reply Last reply Reply Quote 0
            • thomthomT Offline
              thomthom
              last edited by

              Did an experiment:

              wd = UI::WebDialog.new('HelloWorld') #<UI::WebDialog:0x9d58fa0> wd.set_html( 'Hello world' ) nil wd.show true wd.execute_script('alert( "<b>bold text</b>" );') true wd.execute_script('alert( document.body.innerHTML );') true
              SU-WD1.png
              wd.execute_script('alert( document.getElementsByTagName("b").length );')
              SU-WD2.png

              So it appears that, at least under Windows & IE, one does not need to escape as the elements are not affecting the DOM tree.

              Need to run this test under OSX.

              Thomas Thomassen — SketchUp Monkey & Coding addict
              List of my plugins and link to the CookieWare fund

              1 Reply Last reply Reply Quote 0
              • chrisglasierC Offline
                chrisglasier
                last edited by

                @thomthom said:

                I haven't seen this mentioned before - but I just came across how .execute_script works for Webdialogs:

                It takes the string argument passed to webdialog.execute_script and appends it into a new SCRIPT tag in the HTML.

                I found out about this quite by chance. What I have done is give all my script tags an id then call this function after the data has been transferred (written to memory) ...

                
                
                function corePurge(){
                	coll = document.body.childNodes;
                	for(a=0; a < coll.length; a += 1){
                		if (coll[a].tagName ===	"SCRIPT" && coll[a].id === ""){
                			document.body.removeChild(coll[a]); 
                                        a -= 1;
                		}
                	}	
                }
                
                

                I have no idea whether this is beneficial but it does not seem to do any harm.

                With TBA interfaces we can analyse what is to be achieved so that IT can help with automation to achieve it.

                1 Reply Last reply Reply Quote 0
                • thomthomT Offline
                  thomthom
                  last edited by

                  Yea - I was thinking of doing the same thing. I am working on some wrapper functions - where it'd be easy then to clean up as it goes along.

                  Thomas Thomassen — SketchUp Monkey & Coding addict
                  List of my plugins and link to the CookieWare fund

                  1 Reply Last reply Reply Quote 0
                  • J Offline
                    Jim
                    last edited by

                    I just re-invented the wheel, so here's my version. It starts at the lastChild instead of top-down. I don't know if SCRIPT is guaranteed to be uppercase, so maybe a RegExp would be a better test. Also, not sure if it works on Macs.

                    
                    function purge_script_tags() {
                      var b = document.body;
                      var last_node = b.lastChild;
                      while(last_node.nodeName === "SCRIPT") {
                         b.removeChild(last_node);
                         last_node = b.lastChild;
                      }
                    }
                    

                    Hi

                    1 Reply Last reply Reply Quote 0
                    • thomthomT Offline
                      thomthom
                      last edited by

                      I got a jQuery version in TT_Lib2. Works on both platform. By using the jQuery selectors you quickly access the elements you want. for instance $('body > script').detach() Also included a wrapper to call JS in an easier manner so I don't have to bother about quotes etc.

                      https://bitbucket.org/thomthom/tt-library-2/src/0cdd88eb67a6/TT_Lib2/webdialog/js/base.js
                      http://www.thomthom.net/software/sketchup/tt_lib2/doc/TT/GUI/Window.html#call_script-instance_method

                      ` p webdialog.call_script( 'foo', 1, 'bar', 3 )

                      4`

                      <span class="syntaxdefault"><br />function foo</span><span class="syntaxkeyword">(</span><span class="syntaxdefault"> nbr1</span><span class="syntaxkeyword">,</span><span class="syntaxdefault"> string1</span><span class="syntaxkeyword">,</span><span class="syntaxdefault"> nbr2 </span><span class="syntaxkeyword">)</span><span class="syntaxdefault"> </span><span class="syntaxkeyword">{<br /></span><span class="syntaxdefault">  return nbr1 </span><span class="syntaxkeyword">+</span><span class="syntaxdefault"> nbr2</span><span class="syntaxkeyword">;<br />}<br /></span><span class="syntaxdefault"> </span>
                      

                      The bridge that call_script uses even converts Ruby <=> JS variables.

                      Thomas Thomassen — SketchUp Monkey & Coding addict
                      List of my plugins and link to the CookieWare fund

                      1 Reply Last reply Reply Quote 0
                      • D Offline
                        driven
                        last edited by

                        @thomthom said:

                        Did an experiment:
                        ...
                        Need to run this test under OSX.

                        similar on mac.
                        the alerts don't return true until they are clicked [and closed] so they only ever show the last message.

                        if you want I'll test something more concrete, just post an example.

                        john

                        learn from the mistakes of others, you may not live long enough to make them all yourself...

                        1 Reply Last reply Reply Quote 0
                        • thomthomT Offline
                          thomthom
                          last edited by

                          @driven said:

                          @thomthom said:

                          Did an experiment:
                          ...
                          Need to run this test under OSX.

                          similar on mac.
                          the alerts don't return true until they are clicked [and closed] so they only ever show the last message.

                          That wasn't the test. The test was how sending strings to Webdialog with < and > characters affected the DOM.

                          Thomas Thomassen — SketchUp Monkey & Coding addict
                          List of my plugins and link to the CookieWare fund

                          1 Reply Last reply Reply Quote 0
                          • D Offline
                            driven
                            last edited by

                            @thomthom said:

                            That wasn't the test. The test was how sending strings to Webdialog with < and > characters affected the DOM.

                            ` > wd = UI::WebDialog.new('HelloWorld')
                            wd.set_html( 'Hello world' )
                            wd.show_modal
                            true

                            wd.execute_script('alert( "<b>bold text</b>" );')
                            true
                            wd.execute_script('alert( document.body.innerHTML );')
                            true
                            wd.execute_script('alert( document.getElementsByTagName("b").length );')
                            true`
                            this is what I tested, the difference I can see, is that your alert window appears to store the previous message, on the mac I don't see that, but the end result seems to be the same.
                            101wd.png
                            202wd.png
                            303wd.png

                            john

                            learn from the mistakes of others, you may not live long enough to make them all yourself...

                            1 Reply Last reply Reply Quote 0
                            • 1 / 1
                            • First post
                              Last post
                            Buy SketchPlus
                            Buy SUbD
                            Buy WrapR
                            Buy eBook
                            Buy Modelur
                            Buy Vertex Tools
                            Buy SketchCuisine
                            Buy FormFonts

                            Advertisement