removed dependency on built-editor.min.js
[ccsdk/distribution.git] / dgbuilder / nodes / dge / dgeoutcome / success.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="success">
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="success">
38         <p>A success outcome.</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
44 <script type="text/javascript">
45     RED.nodes.registerType('success',{
46         color:"#ffccff",
47         category: 'DGEoutcome',
48         defaults: {
49             name: {value:"success"},
50             xml: {value:"<outcome value='success'>\n"},
51             comments:{value:""},        
52             outputs: {value:1}
53         },
54         inputs:1,
55         outputs:1,
56         icon: "arrow-in.png",
57         label: function() {
58             return this.name;
59         },
60         oneditprepare: function() {
61             var that = this;
62             $( "#node-input-outputs" ).spinner({
63                 min:1
64             });
65              var comments = $( "#node-input-comments").val();
66              if(comments != null){
67                 comments = comments.trim();
68                 if(comments != ''){
69                         $("#node-input-btnComments").html("<span style='color:blue;'><b>View Comments</b></span>");
70                 }
71              }
72
73             function functionDialogResize() {
74                 var rows = $("#dialog-form>div:not(.node-text-editor-row)");
75                 var height = $("#dialog-form").height();
76                 for (var i=0;i<rows.size();i++) {
77                     height -= $(rows[i]).outerHeight(true);
78                 }
79                 var editorRow = $("#dialog-form>div.node-text-editor-row");
80                 height -= (parseInt(editorRow.css("marginTop"))+parseInt(editorRow.css("marginBottom")));
81                 $(".node-text-editor").css("height",height+"px");
82                 that.editor.resize();
83             };
84             $( "#dialog" ).on("dialogresize", functionDialogResize);
85             $( "#dialog" ).one("dialogopen", function(ev) {
86                 var size = $( "#dialog" ).dialog('option','sizeCache-function');
87                 if (size) {
88                     $("#dialog").dialog('option','width',size.width);
89                     $("#dialog").dialog('option','height',size.height);
90                     functionDialogResize();
91                 }
92             });
93             $( "#dialog" ).one("dialogclose", function(ev,ui) {
94                 var height = $( "#dialog" ).dialog('option','height');
95                 $( "#dialog" ).off("dialogresize",functionDialogResize);
96             });
97
98             this.editor = RED.editor.createEditor({
99                 id: 'node-input-xml-editor',
100                 mode: 'ace/mode/html'
101             });
102             this.editor.setValue($("#node-input-xml").val(),-1);
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:this.editor, // the field name the main text body goes to
108                 mode:"ace/mode/html",
109                 fields:['name','outputs']
110             });
111         */
112             this.editor.focus();
113             /* close dialog when ESC is pressed and released */ 
114             $( "#node-input-xml-editor" ).keyup(function(event){
115                 if(event.which == 27 ) {
116                         $("#node-dialog-cancel").click();
117                 }
118             }); 
119                 $("#node-input-validate").click(function(){
120                                 console.log("validate clicked.");
121                                 //console.dir(that.editor);
122                                 //console.log("getText:" + that.editor.getText());
123                                 var val = that.editor.getValue();
124                                 validateXML(val); 
125                 });
126                 $("#node-input-show-sli-values").click(function(){
127                         //console.log("show Values clicked.");
128                         showValuesBox(that.editor,sliValuesObj);
129                 });
130             //for click of add comments button
131             $("#node-input-btnComments").click(function(e){
132                         showCommentsBox();
133             }); 
134         },
135         oneditsave: function() {
136             $("#node-input-xml").val(this.editor.getValue());
137                 var resp=validateXML(this.editor.getValue());
138                 if(resp){
139                         this.status = {fill:"green",shape:"dot",text:"OK"};
140                 }else{
141                         this.status = {fill:"red",shape:"dot",text:"ERROR"};
142                 }       
143                 delete this.editor;
144         }
145    });  
146 </script>