bcbcae30f22fdaeb7b87df7bc2062f1a00414909
[ccsdk/distribution.git] / dgbuilder / nodes / dge / dgelogic / set.html
1 <!--
2   Copyright 2013 IBM Corp.
3
4   Licensed under the Apache License, Version 2.0 (the "License");
5   you may not use this file except in compliance with the License.
6   You may obtain a copy of the License at
7
8   http://www.apache.org/licenses/LICENSE-2.0
9
10   Unless required by applicable law or agreed to in writing, software
11   distributed under the License is distributed on an "AS IS" BASIS,
12   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   See the License for the specific language governing permissions and
14   limitations under the License.
15 -->
16
17 <script type="text/x-red" data-template-name="set">
18     <div class="form-row">
19         <label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
20         <input type="text" id="node-input-name" placeholder="Name">
21     </div>
22     <div class="form-row">
23         <label for="node-input-xml"><i class="fa fa-wrench"></i> Node XML</label>
24         <input type="hidden" id="node-input-xml" autofocus="autofocus">
25         <div style="height: 450px;" class="node-text-editor" id="node-input-xml-editor" onkeyup="resetStatus()" ></div>
26     </div>
27     <div class="form-row">
28     <a href="#" class="btn btn-mini" id="node-input-validate" style="margin-top: 4px;"><b>Validate XML</b></a>
29     <a href="#" class="btn btn-mini" id="node-input-show-sli-values" style="margin-top: 4px;"><b>Show Values</b></a> 
30     <input type="hidden" id="node-input-comments">
31     <a href="#" class="btn btn-mini" id="node-input-btnComments" style="margin-top: 4px;"><b>Add Comments</b></a>
32     <div id="node-validate-result" class="form-tips" style="float:right;font-size:10px"></div>
33     </div>
34     <div class="form-tips">See the Info tab for help using this node.</div>
35 </script>
36
37 <script type="text/x-red" data-help-name="set">
38         <p>A set node.</p>
39         <p>First line of XML must contain opening tag.</p>
40         <p>Do not include closing tag - it will be automatically generated.</p>
41
42 <div class="section">
43 <h4><a name="Set_node"></a>Set node</h4>
44 <div class="section">
45 <h5><a name="Description"></a>Description</h5>
46 <p>A <b>set</b> node is used to set one or more values in the execution context</p></div>
47 <div class="section">
48 <h5><a name="Attributes"></a>Attributes</h5>
49 <p>Not applicable. The <b>set</b> node does not have attributes.</p></div>
50 <div class="section">
51 <h5><a name="Parameters"></a>Parameters</h5>
52 <p>Values to be set are passed as parameters</p></div>
53 <div class="section">
54 <h5><a name="Outcomes"></a>Outcomes</h5>
55 <p>Not applicable. The <b>set</b> node has no outcomes.</p></div>
56 <div class="section">
57 <h5><a name="Example"></a>Example</h5>
58 <div class="source">
59 <pre>&lt;set&gt;
60   &lt;parameter name=&quot;vlan&quot; value=&quot;$network.provider-segmentation-id&quot; /&gt;
61 &lt;/set&gt;</pre></div></div></div>
62
63 </script>
64
65
66 <script type="text/javascript">
67     RED.nodes.registerType('set',{
68         color:"#fdd0a2",
69         category: 'DGElogic',
70         defaults: {
71             name: {value:"set"},
72             xml: {value:"<set>\n<parameter name='' value='' />\n"},
73             comments:{value:""} 
74         },
75         inputs:1,
76         icon: "arrow-in.png",
77         label: function() {
78             return this.name;
79         },
80         oneditprepare: function() {
81             $( "#node-input-outputs" ).spinner({
82                 min:1
83             });
84
85
86              var comments = $( "#node-input-comments").val();
87              if(comments != null){
88                 comments = comments.trim();
89                 if(comments != ''){
90                         $("#node-input-btnComments").html("<span style='color:blue;'><b>View Comments</b></span>");
91                 }
92              }
93
94             function functionDialogResize(ev,ui) {
95                 $("#node-input-xml-editor").css("height",(ui.size.height-275)+"px");
96             };
97
98             $( "#dialog" ).dialog( "option", "width", 1200 );
99             $( "#dialog" ).dialog( "option", "height", 750 );
100             $( "#dialog" ).on("dialogresize", functionDialogResize);
101             $( "#dialog" ).one("dialogopen", function(ev) {
102                 var size = $( "#dialog" ).dialog('option','sizeCache-function');
103                 if (size) {
104                     functionDialogResize(null,{size:size});
105                 }
106             });
107
108             /* close dialog when ESC is pressed and released */ 
109             $( "#dialog" ).keyup(function(event){
110                 if(event.which == 27 ) {
111                         $("#node-dialog-cancel").click();
112                 }
113             }); 
114
115             $( "#dialog" ).one("dialogclose", function(ev,ui) {
116                 var height = $( "#dialog" ).dialog('option','height');
117                 $( "#dialog" ).off("dialogresize",functionDialogResize);
118             });
119             var that = this;
120             require(["orion/editor/edit"], function(edit) {
121                 that.editor = edit({
122                     parent:document.getElementById('node-input-xml-editor'),
123                     lang:"html",
124                     contents: $("#node-input-xml").val()
125                 });
126                 RED.library.create({
127                     url:"functions", // where to get the data from
128                     type:"function", // the type of object the library is for
129                     editor:that.editor, // the field name the main text body goes to
130                     fields:['name','outputs']
131                 });
132                 $("#node-input-name").focus();
133                 $("#node-input-validate").click(function(){
134                                 console.log("validate clicked.");
135                                 //console.dir(that.editor);
136                                 //console.log("getText:" + that.editor.getText());
137                                 var val = that.editor.getText();
138                                 validateXML(val); 
139                 });
140                 $("#node-input-show-sli-values").click(function(){
141                                 console.log("SLIValues clicked.");
142                                 showValuesBox(that.editor,sliValuesObj);
143                 });
144
145             });
146             //for click of add comments button
147             $("#node-input-btnComments").click(function(e){
148                         showCommentsBox();
149             }); 
150         },
151         oneditsave: function() {
152             $("#node-input-xml").val(this.editor.getText());
153                 var resp=validateXML(this.editor.getText());
154                 if(resp){
155                         this.status = {fill:"green",shape:"dot",text:"OK"};
156                 }else{
157                         this.status = {fill:"red",shape:"dot",text:"ERROR"};
158                 }       
159                 delete this.editor;
160         }
161     });
162 </script>