aboutsummaryrefslogtreecommitdiffstats
path: root/dcae_dmaapbc_webapp/src/main/webapp/app/fusion/ase/scripts/arrows.js
blob: 89796047af1b0e89e6d2f21bce06f5dafbcc2510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
// Contains methods to drag, copy, resize arrows

var arrowArr = []; //Arrow array stored as [tag, uuid]

interact('.arrowDraggable')

.on('move',function (event){
	var interaction = event.interaction;

	$ ("nodeDropzone").addClass("drop-target");
	// if the pointer was moved while being held down
	// and an interaction hasn't started yet
	if (interaction.pointerIsDown && !interaction.interacting() && !$(event.currentTarget).hasClass("child")) {
		var clone;
		var original = event.currentTarget;
		// create a clone of the currentTarget element
		clone = event.currentTarget.cloneNode(true);
		window.uuid = guid();
		clone.id = uuid;
		// insert the clone to the page
		var dropOffLocation = document.getElementById("arrowChildrenDroppedOffHere");
		clone = dropOffLocation.insertBefore(clone,dropOffLocation.parentNodes);
		
		var d = document.getElementById(uuid);
		d.className = d.className + " child"; //Adds child class to prevent child cloning
		
		// translate the element
		clone.style.webkitTransform = clone.style.transform = 'translate(' + 0 + $(document).scrollLeft() + 'px, ' + 168 + $(document).scrollTop() + 'px)';

		// update the position attributes
		clone.setAttribute('data_x', 0 + $(document).scrollLeft());
		clone.setAttribute('data_y', 168 + $(document).scrollTop());
				
		
		arrowArr.push([clone,uuid]);

		// start a drag interaction targeting the clone
		interaction.start({ name: 'drag' },
				event.interactable,
				clone);
	}
})	

.draggable({
	autoscroll:true,
	snap: {
    	targets: [ 
    	           interact.createSnapGrid({
    	        	   x: 160, y: 42,
    	        	   offset: {x:11 , y:26}
    	           })
          ],
          range: Infinity,
          relativePoints: [ { x: 0, y: 0 } ]
	},
	// enable inertial throwing
	inertia: true,
	// keep the element within the area of it's parent
	restrict: {
		//restriction: "parent",
		endOnly: true,
		elementRect: { top: 0, left: 0, bottom: 0, right: 0 }
	},

	// call this function on every dragmove event
	onmove: dragMoveListenerArrow,
	// call this function on every dragend event
	onend: function (event) {

	}
})
.on('dragmove', function (event) { 

});

interact('.arrowPlaced')
.on('doubletap',function (event){
	var uuid = event.target.id;
	if (uuid === ""){ //accounts for double tapping .triangle
		uuid = event.target.parentNode.id;
	}
	if (uuid === ""){ //accounts for double tapping .triangle
		uuid = event.target.parentNode.parentNode.id;
	}
	renameArrow(uuid);
	
});

function renameArrow(uuid){
	var index = recallArray(arrowArr, uuid);
	var sourceTaska,destinationTaska;
	try{
		sourceTaska = document.getElementById(arrowArr[index][8]).getAttribute("taska_id");
	}
	catch (err) {
		sourceTaska = 'null';
	}
	try{
		destinationTaska = document.getElementById(arrowArr[index][9]).getAttribute("taska_id");
	}
	catch (err) {
		destinationTaska = 'null';
	}
	var linkText = arrowArr[index][2];
	var descText = arrowArr[index][10];
	var messageType = $(arrowArr[index][0]).attr('message_type');
	var options = "";
	if ( messageType === 'signal' ) {
		options = '<option value="signal" selected="selected">Signal</option><option value="media">Media</option>';
	} else {
		options = '<option value="signal">Signal</option><option value="media" selected="selected">Media</option>';
	}
	
	
	bootbox.confirm({
		closeButton:false,backdrop:true,animate:false,
		size:'small',
		title: "Modify Link Text",
		onEscape: function() {},
		message: 'Link Message: <br> <input id="arrowInnerText" style="width:100%;" type="text" placeholder="Add text here" value="'+ text +'">' +
		'<br>Description: <br><textarea id="arrowDescription" rows="5" placeholder="Add description (optional)">' + descText + '</textarea>' +
		'<br>Message Type: <br> <select id="arrowMessageType" style="width:100%;">'+ options +'</select>',
		callback: function(result){
			if (result === true) {
				var innerText=$("#arrowInnerText").val();
				var messageType = $("#arrowMessageType").val();
				pushToDict(innerText, "arrow");
				storeText(arrowArr,uuid,innerText);
				makeArrow(uuid);
				arrowArr[index][10] = $("#arrowDescription").val();
				$(arrowArr[index][0]).attr("message_type",messageType);
			}
		}
	});
	$("#arrowInnerText").autocomplete({
		source: arrowTags,
		autoFocus: true,
		delay: 0
	});
	$("#arrowMessageType").autocomplete({
		source: messageTags,
		autoFocus: true,
		delay: 0
	});

	var currentInput = $("#arrowInnerText").val();
	$("#arrowInnerText").selectRange(0,currentInput.length);
	$("#arrowInnerText").click(function(){
		var currentInput = $("#arrowInnerText").val();
		$("#arrowInnerText").selectRange(0,currentInput.length);
	});
	$("#arrowInnerText").keyup( function(e) {
		if (e.keyCode == 13){
			$(document.getElementsByClassName('btn-primary')[0]).click();
		}
	});
	$("#arrowDescription").keyup( function(e) {
		if (e.keyCode == 13){
			$(document.getElementsByClassName('btn-primary')[0]).click();
		}
	});
}

$(document).delegate('.arrowText','mouseover',function(mainEvent){
	if(!$(this).hasClass("bound")){
		console.log("ENTERING");
		var hoverIndex = recallArray(arrowArr,event.target.parentNode.parentNode.id);
		if (arrowArr[hoverIndex][10] !== null && arrowArr[hoverIndex][10] !== "") {
			arrowDescript = arrowArr[hoverIndex][10];
		} else { 
			arrowDescript = '--no description entered--';
		} 
		$('#'+event.target.parentNode.parentNode.id).tooltipster({
			maxWidth:200,
			position:'bottom',
	    	theme: 'tooltipster-shadow',
	    	interactive:false,
	    	delay:300,
	    	multiple:false,
	    	trigger:'click',
	    	contentAsHTML:true,
	    	content: arrowDescript
		});
		$(this).hover(
		function(event){
			var hoverIndex = recallArray(arrowArr,event.target.parentNode.parentNode.id);
			if (arrowArr[hoverIndex][10] !== null && arrowArr[hoverIndex][10] !== "") { 
				arrowDescript = arrowArr[hoverIndex][10];
			} else { 
				arrowDescript = '--no description entered--';
			}
			console.log("ENTERING"+event.target.parentNode.parentNode.id);
			$('#'+event.target.parentNode.parentNode.id).tooltipster({
				maxWidth:200,
				position:'bottom',
		    	theme: 'tooltipster-shadow',
		    	interactive:false,
		    	delay:300,
		    	multiple:false,
		    	trigger:'click',
		    	contentAsHTML:true,
		    	content: arrowDescript
			});
		},
		function(event) {
			$(this).addClass("bound");
			console.log("LEAVING"+event.target.parentNode.parentNode.id);
			$('#'+event.target.parentNode.parentNode.id).tooltipster('destroy');			
		});	
	}
});