[CCSDK-28] populated the seed code for dgbuilder
[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             $( "#node-input-outputs" ).spinner({
64                 min:1
65             });
66
67
68              var comments = $( "#node-input-comments").val();
69              if(comments != null){
70                 comments = comments.trim();
71                 if(comments != ''){
72                         $("#node-input-btnComments").html("<span style='color:blue;'><b>View Comments</b></span>");
73                 }
74              }
75
76             function functionDialogResize(ev,ui) {
77                 $("#node-input-xml-editor").css("height",(ui.size.height-275)+"px");
78             };
79
80             $( "#dialog" ).dialog( "option", "width", 1200 );
81             $( "#dialog" ).dialog( "option", "height", 750 );
82             $( "#dialog" ).on("dialogresize", functionDialogResize);
83             $( "#dialog" ).one("dialogopen", function(ev) {
84                 var size = $( "#dialog" ).dialog('option','sizeCache-function');
85                 if (size) {
86                     functionDialogResize(null,{size:size});
87                 }
88             });
89
90             /* close dialog when ESC is pressed and released */ 
91             $( "#dialog" ).keyup(function(event){
92                 if(event.which == 27 ) {
93                         $("#node-dialog-cancel").click();
94                 }
95             }); 
96
97             $( "#dialog" ).one("dialogclose", function(ev,ui) {
98                 var height = $( "#dialog" ).dialog('option','height');
99                 $( "#dialog" ).off("dialogresize",functionDialogResize);
100             });
101             var that = this;
102             require(["orion/editor/edit"], function(edit) {
103                 that.editor = edit({
104                     parent:document.getElementById('node-input-xml-editor'),
105                     lang:"html",
106                     contents: $("#node-input-xml").val()
107                 });
108                 RED.library.create({
109                     url:"functions", // where to get the data from
110                     type:"function", // the type of object the library is for
111                     editor:that.editor, // the field name the main text body goes to
112                     fields:['name','outputs']
113                 });
114                 $("#node-input-name").focus();
115                 $("#node-input-validate").click(function(){
116                                 console.log("validate clicked.");
117                                 //console.dir(that.editor);
118                                 //console.log("getText:" + that.editor.getText());
119                                 var val = that.editor.getText();
120                                 validateXML(val); 
121                 });
122                 $("#node-input-show-sli-values").click(function(){
123                                 console.log("SLIValues clicked.");
124                                 showValuesBox(that.editor,sliValuesObj);
125                 });
126
127             });
128             //for click of add comments button
129             $("#node-input-btnComments").click(function(e){
130                         showCommentsBox();
131             }); 
132         },
133         oneditsave: function() {
134             $("#node-input-xml").val(this.editor.getText());
135                 var resp=validateXML(this.editor.getText());
136                 if(resp){
137                         this.status = {fill:"green",shape:"dot",text:"OK"};
138                 }else{
139                         this.status = {fill:"red",shape:"dot",text:"ERROR"};
140                 }       
141                 delete this.editor;
142         }
143     });
144 </script>