4c9c01a6077a67610c8ff3a91eeed51d485f39b5
[ccsdk/distribution.git] / dgbuilder / nodes / dge / dgemain / GenericXML.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="GenericXML">
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: 250px;" 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 SLI 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="GenericXML">
38         <p>A generic DGEmain node.</p>
39         <p>Name can be anything.</p>
40         <p>First line of XML must contain opening tag.</p>
41         <p>Do not include closing tag - it will be automatically generated.</p>
42 </script>
43
44
45 <script type="text/javascript">
46     RED.nodes.registerType('GenericXML',{
47         color:"#fdd0a2",
48         category: 'DGEmain',
49         defaults: {
50             name: {value:"dge-node"},
51             xml: {value:""},
52             comments:{value:""},        
53             outputs: {value:1}
54         },
55         inputs:1,
56         outputs:1,
57         icon: "arrow-in.png",
58         label: function() {
59             return this.name;
60         },
61         oneditprepare: function() {
62             $( "#node-input-outputs" ).spinner({
63                 min:1
64             });
65
66              var comments = $( "#node-input-comments").val();
67              if(comments != null){
68                 comments = comments.trim();
69                 if(comments != ''){
70                         $("#node-input-btnComments").html("<span style='color:blue;'><b>View Comments</b></span>");
71                 }
72              }
73
74             function functionDialogResize(ev,ui) {
75                 $("#node-input-xml-editor").css("height",(ui.size.height-275)+"px");
76             };
77
78             $( "#dialog" ).on("dialogresize", functionDialogResize);
79             $( "#dialog" ).one("dialogopen", function(ev) {
80                 var size = $( "#dialog" ).dialog('option','sizeCache-function');
81                 if (size) {
82                     functionDialogResize(null,{size:size});
83                 }
84             });
85
86             /* close dialog when ESC is pressed and released */ 
87             $( "#dialog" ).keyup(function(event){
88                 if(event.which == 27 ) {
89                         $("#node-dialog-cancel").click();
90                 }
91             }); 
92
93             $( "#dialog" ).one("dialogclose", function(ev,ui) {
94                 var height = $( "#dialog" ).dialog('option','height');
95                 $( "#dialog" ).off("dialogresize",functionDialogResize);
96             });
97             var that = this;
98             require(["orion/editor/edit"], function(edit) {
99                 that.editor = edit({
100                     parent:document.getElementById('node-input-xml-editor'),
101                     lang:"html",
102                     contents: $("#node-input-xml").val()
103                 });
104                 RED.library.create({
105                     url:"functions", // where to get the data from
106                     type:"function", // the type of object the library is for
107                     editor:that.editor, // the field name the main text body goes to
108                     fields:['name','outputs']
109                 });
110                 $("#node-input-name").focus();
111                 $("#node-input-validate").click(function(){
112                                 console.log("validate clicked.");
113                                 //console.dir(that.editor);
114                                 //console.log("getText:" + that.editor.getText());
115                                 var val = that.editor.getText();
116                                 validateXML(val); 
117                 });
118                 $("#node-input-show-sli-values").click(function(){
119                                 //console.log("SLIValues clicked.");
120                                 showValuesBox(that.editor,sliValuesObj);
121                 });
122
123             });
124             //for click of add comments button
125             $("#node-input-btnComments").click(function(e){
126                         showCommentsBox();
127             }); 
128         },
129         oneditsave: function() {
130             $("#node-input-xml").val(this.editor.getText());
131                 var resp=validateXML(this.editor.getText());
132                 if(resp){
133                         this.status = {fill:"green",shape:"dot",text:"OK"};
134                 }else{
135                         this.status = {fill:"red",shape:"dot",text:"ERROR"};
136                 }       
137                 delete this.editor;
138         }
139     });
140 </script>