2 Copyright 2013 IBM Corp.
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
8 http://www.apache.org/licenses/LICENSE-2.0
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.
17 <script type="text/x-red" data-template-name="outcomeTrue">
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">
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>
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>
34 <div class="form-tips">See the Info tab for help using this node.</div>
37 <script type="text/x-red" data-help-name="outcomeTrue">
38 <p>A true 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>
44 <script type="text/javascript">
45 RED.nodes.registerType('outcomeTrue',{
47 category: 'DGEoutcome',
50 xml: {value:"<outcome value='true'>\n"},
60 oneditprepare: function() {
61 $( "#node-input-outputs" ).spinner({
65 var comments = $( "#node-input-comments").val();
67 comments = comments.trim();
69 $("#node-input-btnComments").html("<span style='color:blue;'><b>View Comments</b></span>");
74 function functionDialogResize(ev,ui) {
75 $("#node-input-xml-editor").css("height",(ui.size.height-275)+"px");
78 $( "#dialog" ).dialog( "option", "width", 1200 );
79 $( "#dialog" ).dialog( "option", "height", 750 );
80 $( "#dialog" ).on("dialogresize", functionDialogResize);
81 $( "#dialog" ).one("dialogopen", function(ev) {
82 var size = $( "#dialog" ).dialog('option','sizeCache-function');
84 functionDialogResize(null,{size:size});
88 /* close dialog when ESC is pressed and released */
89 $( "#dialog" ).keyup(function(event){
90 if(event.which == 27 ) {
91 $("#node-dialog-cancel").click();
95 $( "#dialog" ).one("dialogclose", function(ev,ui) {
96 var height = $( "#dialog" ).dialog('option','height');
97 $( "#dialog" ).off("dialogresize",functionDialogResize);
100 require(["orion/editor/edit"], function(edit) {
102 parent:document.getElementById('node-input-xml-editor'),
104 contents: $("#node-input-xml").val()
107 url:"functions", // where to get the data from
108 type:"function", // the type of object the library is for
109 editor:that.editor, // the field name the main text body goes to
110 fields:['name','outputs']
112 $("#node-input-name").focus();
113 $("#node-input-validate").click(function(){
114 console.log("validate clicked.");
115 //console.dir(that.editor);
116 //console.log("getText:" + that.editor.getText());
117 var val = that.editor.getText();
120 $("#node-input-show-sli-values").click(function(){
121 console.log("SLIValues clicked.");
122 showValuesBox(that.editor,sliValuesObj);
126 //for click of add comments button
127 $("#node-input-btnComments").click(function(e){
131 oneditsave: function() {
132 $("#node-input-xml").val(this.editor.getText());
133 var resp=validateXML(this.editor.getText());
135 this.status = {fill:"green",shape:"dot",text:"OK"};
137 this.status = {fill:"red",shape:"dot",text:"ERROR"};