blob: c83c3196f9a7577aee6bae531ecea64b3a40918f [file] [log] [blame]
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -09001<!--
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="method">
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 RPCs</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<script type="text/x-red" data-help-name="method">
37 <p>A method node.</p>
38 <p>Name can be anything.</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</script>
42
43<script type="text/javascript">
44 RED.nodes.registerType('method',{
45 color:"#fdd0a2",
46 category: 'DGEmain',
47 defaults: {
48 name: {value:"method"},
49 xml: {value:"<method rpc='' mode='sync'>\n"},
50 comments:{value:""},
51 outputs: {value:1}
52 },
53 inputs:1,
54 outputs:1,
55 icon: "arrow-in.png",
56 label: function() {
57 return this.name;
58 },
59 oneditprepare: function() {
Chinthakayala,Sheshashailavas(sc2914)8f6a6c42018-06-27 16:11:44 +000060 var that = this;
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -090061 $( "#node-input-outputs" ).spinner({
62 min:1
63 });
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -090064 var comments = $( "#node-input-comments").val();
65 if(comments != null){
66 comments = comments.trim();
67 if(comments != ''){
68 $("#node-input-btnComments").html("<span style='color:blue;'><b>View Comments</b></span>");
69 }
70 }
71
Chinthakayala,Sheshashailavas(sc2914)8f6a6c42018-06-27 16:11:44 +000072 function functionDialogResize() {
73 var rows = $("#dialog-form>div:not(.node-text-editor-row)");
74 var height = $("#dialog-form").height();
75 for (var i=0;i<rows.size();i++) {
76 height -= $(rows[i]).outerHeight(true);
77 }
78 var editorRow = $("#dialog-form>div.node-text-editor-row");
79 height -= (parseInt(editorRow.css("marginTop"))+parseInt(editorRow.css("marginBottom")));
80 $(".node-text-editor").css("height",height+"px");
81 that.editor.resize();
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -090082 };
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -090083 $( "#dialog" ).on("dialogresize", functionDialogResize);
84 $( "#dialog" ).one("dialogopen", function(ev) {
85 var size = $( "#dialog" ).dialog('option','sizeCache-function');
86 if (size) {
Chinthakayala,Sheshashailavas(sc2914)8f6a6c42018-06-27 16:11:44 +000087 $("#dialog").dialog('option','width',size.width);
88 $("#dialog").dialog('option','height',size.height);
89 functionDialogResize();
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -090090 }
91 });
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -090092 $( "#dialog" ).one("dialogclose", function(ev,ui) {
93 var height = $( "#dialog" ).dialog('option','height');
94 $( "#dialog" ).off("dialogresize",functionDialogResize);
95 });
Chinthakayala,Sheshashailavas(sc2914)8f6a6c42018-06-27 16:11:44 +000096
97 this.editor = RED.editor.createEditor({
98 id: 'node-input-xml-editor',
99 mode: 'ace/mode/html'
100 });
101 this.editor.setValue($("#node-input-xml").val(),-1);
102 /*
103 RED.library.create({
104 url:"functions", // where to get the data from
105 type:"function", // the type of object the library is for
106 editor:this.editor, // the field name the main text body goes to
107 mode:"ace/mode/html",
108 fields:['name','outputs']
109 });
110 */
111 this.editor.focus();
112 /* close dialog when ESC is pressed and released */
113 $( "#node-input-xml-editor" ).keyup(function(event){
114 if(event.which == 27 ) {
115 $("#node-dialog-cancel").click();
116 }
117 });
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -0900118 $("#node-input-validate").click(function(){
119 console.log("validate clicked.");
120 //console.dir(that.editor);
121 //console.log("getText:" + that.editor.getText());
Chinthakayala,Sheshashailavas(sc2914)8f6a6c42018-06-27 16:11:44 +0000122 var val = that.editor.getValue();
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -0900123 validateXML(val);
124 });
125 $("#node-input-show-sli-values").click(function(){
126 //console.log("show Values clicked.");
127 showRpcsValuesBox(that.editor,rpcValues);
128 });
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -0900129 //for click of add comments button
130 $("#node-input-btnComments").click(function(e){
131 showCommentsBox();
132 });
Chinthakayala,Sheshashailavas(sc2914)8f6a6c42018-06-27 16:11:44 +0000133 },
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -0900134 oneditsave: function() {
Chinthakayala,Sheshashailavas(sc2914)8f6a6c42018-06-27 16:11:44 +0000135 $("#node-input-xml").val(this.editor.getValue());
136 var resp=validateXML(this.editor.getValue());
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -0900137 if(resp){
138 this.status = {fill:"green",shape:"dot",text:"OK"};
139 }else{
140 this.status = {fill:"red",shape:"dot",text:"ERROR"};
141 }
142 delete this.editor;
143 }
144 });
145</script>