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