12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406 |
- import * as Models from './ivprog_elements';
- import { LocalizedStrings } from './../services/localizedStringsService';
- import * as CommentsManagement from './commands/comment';
- import * as ReadersManagement from './commands/reader';
- import * as WritersManagement from './commands/writer';
- import * as AttributionsManagement from './commands/attribution';
- import * as IftruesManagement from './commands/iftrue';
- import * as RepeatNtimesManagement from './commands/repeatNtimes';
- import * as WhiletruesManagement from './commands/whiletrue';
- import * as DowhiletruesManagement from './commands/dowhiletrue';
- import * as SwitchesManagement from './commands/switch';
- import * as FunctioncallsManagement from './commands/functioncall';
- import * as VariableValueMenuManagement from './commands/variable_value_menu';
- import * as BreaksManagement from './commands/break';
- import * as ReturnsManagement from './commands/return';
- import { registerUserEvent, ActionTypes } from "./../services/userLog";
- // let has_element_created_draged = false;
- // let which_element_is_draged = null;
- export function removeCommand (command, function_obj, dom_obj) {
- registerUserEvent(function_obj.name, ActionTypes.REMOVE_COMMAND, command.type, '/', 0);
- if (function_obj.commands.indexOf(command) > -1) {
- function_obj.commands.splice(function_obj.commands.indexOf(command), 1);
- return true;
- }
- // Utilize dois parantNode, pois o primeiro é o div de comandos
- try {
- if (dom_obj.parent().parent().data('command').commands_block.indexOf(command) > -1) {
- dom_obj.parent().parent().data('command').commands_block.splice
- (dom_obj.parent().parent().data('command').commands_block.indexOf(command), 1);
- return true;
- }
- } catch (err) {}
-
- try {
- if (dom_obj.parent().parent().data('command').type == Models.COMMAND_TYPES.iftrue) {
- if (dom_obj.parent().parent().data('command').commands_else.indexOf(command) > -1) {
- dom_obj.parent().parent().data('command').commands_else.splice
- (dom_obj.parent().parent().data('command').commands_else.indexOf(command), 1);
- return true;
- }
- }
- } catch (err) {}
- if (dom_obj.parent().data('switchcase')) {
- console.log("o que encontrei: ");
- console.log(dom_obj.parent().data('switchcase'));
- dom_obj.parent().data('switchcase').commands_block.splice(dom_obj.parent().data('switchcase').commands_block.indexOf(command), 1);
- return true;
- }
- return false;
- }
- window.function_container_active = null;
- export function createFloatingCommand (function_obj, function_container, command_type, mouse_event) {
- var floatingObject;
- switch (command_type) {
- case Models.COMMAND_TYPES.break:
- floatingObject = BreaksManagement.createFloatingCommand();
- break;
- case Models.COMMAND_TYPES.comment:
- floatingObject = CommentsManagement.createFloatingCommand();
- break;
- case Models.COMMAND_TYPES.reader:
- floatingObject = ReadersManagement.createFloatingCommand();
- break;
- case Models.COMMAND_TYPES.writer:
- floatingObject = WritersManagement.createFloatingCommand();
- break;
- case Models.COMMAND_TYPES.attribution:
- floatingObject = AttributionsManagement.createFloatingCommand();
- break;
- case Models.COMMAND_TYPES.iftrue:
- floatingObject = IftruesManagement.createFloatingCommand();
- break;
- case Models.COMMAND_TYPES.repeatNtimes:
- floatingObject = RepeatNtimesManagement.createFloatingCommand();
- break;
- case Models.COMMAND_TYPES.whiletrue:
- floatingObject = WhiletruesManagement.createFloatingCommand();
- break;
- case Models.COMMAND_TYPES.dowhiletrue:
- floatingObject = DowhiletruesManagement.createFloatingCommand();
- break;
- case Models.COMMAND_TYPES.switch:
- floatingObject = SwitchesManagement.createFloatingCommand();
- break;
- case Models.COMMAND_TYPES.functioncall:
- floatingObject = FunctioncallsManagement.createFloatingCommand();
- break;
- case Models.COMMAND_TYPES.return:
- floatingObject = ReturnsManagement.createFloatingCommand();
- break;
- }
- floatingObject.draggable().appendTo("body");
- $('body').mouseup(function(evt) {
- manageCommand(function_obj, function_container, evt, command_type);
- $('body').off('mouseup');
- $('body').off('mouseover');
- });
- if (!function_container.hasClass('function_div') || function_container.length < 1) {
- window.mouse_event = mouse_event;
- function_container = $(mouse_event.originalEvent.srcElement.closest('.function_div'));
- }
- console.log('function_container', function_container);
- function_container_active = function_container;
- function_container.find('.commands_list_div').on('mousemove', function(evt) {
- addGhostDiv(evt);
- });
- function_container.find('.commands_list_div').find("*").on('mousemove', function(evt) {
- addGhostDiv(evt);
- });
- function_container.on('mouseout', function(event) {
- var el = $(document.elementFromPoint(event.clientX, event.clientY));
- if (el.closest('.commands_list_div').length < 1) {
- window.ghostDiv.remove();
- }
- });
-
- floatingObject.css("position", "absolute");
- mouse_event.type = "mousedown.draggable";
- mouse_event.target = floatingObject[0];
- floatingObject.css("left", mouse_event.pageX - window.divx);
- floatingObject.css("top", mouse_event.pageY);
- floatingObject.trigger(mouse_event);
- }
- window.divx = 100;
- window.ghostDiv = $('<div class="ghost_div">');
- window.active_container = null;
- function addGhostToEmptyBlock (element, evt) {
- $('.ghost_div').remove();
- var container = element.closest('.command_container');
- if (container.hasClass('switch')) {
- container = $(evt.target).closest('.case_div');
- }
- if (!container.hasClass('dowhiletrue') && !container.hasClass('iftrue') && !container.hasClass('repeatNtimes')
- && !container.hasClass('case_div') && !container.hasClass('whiletrue')) {
- addGhostToNotEmptyBlock(element, evt);
- return;
- }
- if (window.active_container != null) {
- if (window.active_container.is(container)) {
- console.log('é o mesmo, não mudou!');
- } else {
- if (container.length < 1) {
- container = element.closest('.commands_list_div');
- if (window.active_container.is(container)) {
- console.log('é o mesmo command list');
- } else {
- console.log('mudou para um command list');
- window.active_container = container;
- }
- } else {
- console.log('mudou para um outro container?');
- }
- }
- }
- window.active_container = container;
- if (container.hasClass('iftrue')) {
- var containerIf = container.find('.commands_if').get(0);
- var containerElse = container.find('.commands_else').get(0);
- var topIfDistance = Math.abs(evt.clientY - containerIf.getBoundingClientRect().top);
- var bottomIfDistance = Math.abs(containerIf.getBoundingClientRect().top + containerIf.getBoundingClientRect().height - evt.clientY);
- var topElseDistance = Math.abs(evt.clientY - containerElse.getBoundingClientRect().top);
- var bottomElseDistance = Math.abs(containerElse.getBoundingClientRect().top + containerElse.getBoundingClientRect().height - evt.clientY);
- if (topIfDistance < topElseDistance && topIfDistance < bottomElseDistance) {
- $(containerIf).append(window.ghostDiv);
- } else {
- $(containerElse).append(window.ghostDiv);
- }
- } else if (container.hasClass('case_div')) {
- container.find('.case_commands_block').append(window.ghostDiv);
- } else {
- container.find('.block_commands').append(window.ghostDiv);
- }
-
- }
- function addGhostToNotEmptyBlock (element, evt) {
- $('.ghost_div').remove();
- var container = element.closest('.dowhiletrue, .iftrue, .repeatNtimes, .case_div, .whiletrue');
- //console.log("\n\nNOT EMPTY: ", container);
- //if (window.active_container != null) {
-
-
- //}
- if (container.length < 1) {
- container = element.closest('.commands_list_div');
- window.active_container = container;
- addGhostToFunctionArea(element, evt);
- } else {
- //console.log('mudou para um outro container?');
- }
- window.active_container = container;
- // quem está mais próximo? // Essa regra se aplica somente quando o over está sobre um comando
- var allfilhos;
- console.log('olha o container: ', container);
- if (container.hasClass('iftrue')) {
-
- if ($(evt.target).closest('.data_block_if').length > 0) {
- allfilhos = container.find('.commands_if').children('.command_container');
- } else if ($(evt.target).closest('.data_block_else').length > 0) {
- allfilhos = container.find('.commands_else').children('.command_container');
- } else {
- var containerIf = container.find('.commands_if').get(0);
- var containerElse = container.find('.commands_else').get(0);
- var topIfDistance = Math.abs(evt.clientY - containerIf.getBoundingClientRect().top);
- var bottomIfDistance = Math.abs(containerIf.getBoundingClientRect().top + containerIf.getBoundingClientRect().height - evt.clientY);
- var topElseDistance = Math.abs(evt.clientY - containerElse.getBoundingClientRect().top);
- var bottomElseDistance = Math.abs(containerElse.getBoundingClientRect().top + containerElse.getBoundingClientRect().height - evt.clientY);
- if (topIfDistance < topElseDistance && topIfDistance < bottomElseDistance) {
- allfilhos = $(containerIf).children('.command_container');
- } else {
- allfilhos = $(containerElse).children('.command_container');
- }
- }
- } else if (container.hasClass('case_div')) {
- allfilhos = container.children('.case_commands_block').children('.command_container');
- } else if (container.hasClass('commands_list_div')) {
- allfilhos = container.children('.command_container');
- } else {
- allfilhos = container.children('.block_commands').children('.command_container');
- }
- var topDistances = [];
- var bottomDistances = [];
- for (var i = 0; i < allfilhos.length; i++) {
- var topD = Math.abs(evt.clientY - allfilhos.get(i).getBoundingClientRect().top);
- topDistances.push(topD);
- var botD = Math.abs(allfilhos.get(i).getBoundingClientRect().top + allfilhos.get(i).getBoundingClientRect().height - evt.clientY);
- bottomDistances.push(botD);
- }
- console.log('topDistances\n', topDistances, '\nbottomDistances\n', bottomDistances)
- var menorTop = Math.min.apply(null, topDistances);
- var indiceTop = topDistances.indexOf(menorTop);
- var menorBot = Math.min.apply(null, bottomDistances);
- var indiceBot = bottomDistances.indexOf(menorBot);
- if (menorTop < menorBot) {
- window.ghostDiv.insertBefore($(allfilhos.get(indiceTop)));
- } else {
- window.ghostDiv.insertAfter($(allfilhos.get(indiceBot)));
- }
- console.log('distancias: menorTop ', menorTop, ' menorBot ', menorBot);
- }
- function addGhostToFunctionArea (undermouse, evt) {
- $('.ghost_div').remove();
- var allfilhos = undermouse.closest('.commands_list_div').children('.command_container');
- var topDistances = [];
- var bottomDistances = [];
- for (var i = 0; i < allfilhos.length; i++) {
- var topD = Math.abs(evt.clientY - allfilhos.get(i).getBoundingClientRect().top);
- topDistances.push(topD);
- var botD = Math.abs(allfilhos.get(i).getBoundingClientRect().top + allfilhos.get(i).getBoundingClientRect().height - evt.clientY);
- bottomDistances.push(botD);
- }
- var menorTop = Math.min.apply(null, topDistances);
- var indiceTop = topDistances.indexOf(menorTop);
- var menorBot = Math.min.apply(null, bottomDistances);
- var indiceBot = bottomDistances.indexOf(menorBot);
- if (menorTop < menorBot) {
- window.ghostDiv.insertBefore($(allfilhos.get(indiceTop)));
- } else {
- window.ghostDiv.insertAfter($(allfilhos.get(indiceBot)));
- }
- }
- function addGhostDiv (evt) {
- var undermouse = $(evt.target);
- if (undermouse.hasClass('ghost_div')) {
- return;
- } else if (undermouse.hasClass('commands_list_div')) {
- addGhostToFunctionArea(undermouse, evt);
- return;
- } else if (undermouse.hasClass('block_commands')) {
- if (undermouse.find('.command_container').length > 0) {
- addGhostToNotEmptyBlock(undermouse, evt);
- } else {
- addGhostToEmptyBlock(undermouse, evt);
- }
- } else if (undermouse.hasClass('case_div')) {
- if (undermouse.find('.case_commands_block').find('.command_container').length > 0) {
- addGhostToNotEmptyBlock(undermouse, evt);
- } else {
- addGhostToEmptyBlock(undermouse, evt);
- }
- } else {
-
- addGhostToNotEmptyBlock(undermouse, evt);
-
- }
- }
- function borderMouseDragCommand (function_obj, function_container, evt) {
- function_container.find('.over_command_drag').each(function( index ) {
- $(this).removeClass('over_command_drag');
- });
- var prev = null;
- function_container.find('.commands_list_div').each(function( index ) {
- prev = $(this);
- if (prev) {
- var objLeft = prev.offset().left;
- var objTop = prev.offset().top;
- var objRight = objLeft + prev.width();
- var objBottom = objTop + prev.height();
- if (evt.pageX > objLeft && evt.pageX < objRight && evt.pageY > objTop && evt.pageY < objBottom) {
- prev.addClass("over_command_drag");
- }
- }
- });
- function_container.find('.command_container').each(function( index ) {
- var obj = $(this);
- var objLeft = obj.offset().left;
- var objTop = obj.offset().top;
- var objRight = objLeft + obj.width();
- var objBottom = objTop + obj.height();
- if (evt.pageX > objLeft && evt.pageX < objRight && evt.pageY > objTop && evt.pageY < objBottom) {
- if (prev) {
- prev.removeClass('over_command_drag');
- }
- obj.addClass("over_command_drag");
- return;
- }
- });
- }
- // before_after_inside: 1 -> before, 2 -> after, 3 -> inside
- export function renderCommand (command, element_reference, before_after_inside, function_obj) {
- var createdElement;
- switch (command.type) {
- case Models.COMMAND_TYPES.comment:
- createdElement = CommentsManagement.renderCommand(command, function_obj);
- break;
- case Models.COMMAND_TYPES.break:
- createdElement = BreaksManagement.renderCommand(command, function_obj);
- break;
- case Models.COMMAND_TYPES.reader:
- createdElement = ReadersManagement.renderCommand(command, function_obj);
- break;
- case Models.COMMAND_TYPES.writer:
- createdElement = WritersManagement.renderCommand(command, function_obj);
- break;
- case Models.COMMAND_TYPES.attribution:
- createdElement = AttributionsManagement.renderCommand(command, function_obj);
- break;
- case Models.COMMAND_TYPES.functioncall:
- createdElement = FunctioncallsManagement.renderCommand(command, function_obj);
- break;
- case Models.COMMAND_TYPES.iftrue:
- createdElement = IftruesManagement.renderCommand(command, function_obj);
- break;
- case Models.COMMAND_TYPES.repeatNtimes:
- createdElement = RepeatNtimesManagement.renderCommand(command, function_obj);
- break;
- case Models.COMMAND_TYPES.whiletrue:
- createdElement = WhiletruesManagement.renderCommand(command, function_obj);
- break;
- case Models.COMMAND_TYPES.dowhiletrue:
- createdElement = DowhiletruesManagement.renderCommand(command, function_obj);
- break;
- case Models.COMMAND_TYPES.switch:
- createdElement = SwitchesManagement.renderCommand(command, function_obj);
- break;
- case Models.COMMAND_TYPES.return:
- createdElement = ReturnsManagement.renderCommand(command, function_obj);
- break;
- }
- switch (before_after_inside) {
- case 1:
- createdElement.insertBefore(element_reference);
- break;
- case 2:
- createdElement.insertAfter(element_reference);
- break;
- case 3:
- element_reference.append(createdElement);
- break;
- }
- }
- export function genericCreateCommand (command_type) {
- switch (command_type) {
- case Models.COMMAND_TYPES.break:
- return new Models.Break();
- case Models.COMMAND_TYPES.comment:
- return new Models.Comment(new Models.VariableValueMenu(VariableValueMenuManagement.VAR_OR_VALUE_TYPES.only_value, LocalizedStrings.getUI('text_comment'), null, null, false));
- case Models.COMMAND_TYPES.reader:
- return new Models.Reader(new Models.VariableValueMenu(VariableValueMenuManagement.VAR_OR_VALUE_TYPES.only_variable, null, null, null, false));
- case Models.COMMAND_TYPES.writer:
- return new Models.Writer([new Models.VariableValueMenu(VariableValueMenuManagement.VAR_OR_VALUE_TYPES.all, null, null, null, true)]);
- case Models.COMMAND_TYPES.attribution:
- return new Models.Attribution(new Models.VariableValueMenu(VariableValueMenuManagement.VAR_OR_VALUE_TYPES.only_variable, null, null, null, false),
- []);
-
- case Models.COMMAND_TYPES.functioncall:
- return new Models.FunctionCall(new Models.VariableValueMenu(VariableValueMenuManagement.VAR_OR_VALUE_TYPES.only_function, null, null, null, false), null);
- case Models.COMMAND_TYPES.iftrue:
- return new Models.IfTrue([new Models.VariableValueMenu(VariableValueMenuManagement.VAR_OR_VALUE_TYPES.all, null, null, null, true)]);
- //(var_attribution, var_incrementation, expression1, expression2, expression3, commands_block)
- case Models.COMMAND_TYPES.repeatNtimes:
- return new Models.RepeatNTimes(new Models.VariableValueMenu(VariableValueMenuManagement.VAR_OR_VALUE_TYPES.only_variable, null, null, null, false),
- new Models.VariableValueMenu(VariableValueMenuManagement.VAR_OR_VALUE_TYPES.only_variable, null, null, null, false),
- null, new Models.VariableValueMenu(VariableValueMenuManagement.VAR_OR_VALUE_TYPES.all, null, null, null, true), null, null);
- case Models.COMMAND_TYPES.whiletrue:
- return new Models.WhileTrue([new Models.VariableValueMenu(VariableValueMenuManagement.VAR_OR_VALUE_TYPES.all, null, null, null, true)], null);
- case Models.COMMAND_TYPES.dowhiletrue:
- return new Models.DoWhileTrue([new Models.VariableValueMenu(VariableValueMenuManagement.VAR_OR_VALUE_TYPES.all, null, null, null, true)], null);
- case Models.COMMAND_TYPES.switch:
- var sc = [new Models.SwitchCase(new Models.VariableValueMenu(VariableValueMenuManagement.VAR_OR_VALUE_TYPES.all, null, null, null, true))];
- return new Models.Switch(new Models.VariableValueMenu(VariableValueMenuManagement.VAR_OR_VALUE_TYPES.variable_and_function, null, null, null, true), sc);
- case Models.COMMAND_TYPES.return:
- return new Models.Return([new Models.VariableValueMenu(VariableValueMenuManagement.VAR_OR_VALUE_TYPES.all, null, null, null, true)]);
- }
- }
- function dragTrash (event) {
- $('.ghost_div').remove();
- var trash = $('<i class="ui icon trash alternate outline"></i>');
- $('body').append(trash);
- trash.css('position', 'absolute');
- trash.css('top', event.clientY);
- trash.css('left', event.clientX - 20);
- trash.css('font-size', '3em');
- trash.css('display', 'none');
- function_container_active.find('.commands_list_div').off('mousemove');
- function_container_active.find('.commands_list_div').find("*").off('mousemove');
- trash.fadeIn( 200, function() {
- trash.fadeOut( 200, function() {
- trash.remove();
- } );
- });
- }
- function findSingleElement (searching, query) {
- if (!searching || !query) {
- return '';
- }
- if (searching.type == Models.COMMAND_TYPES.repeatNtimes ||
- searching.type == Models.COMMAND_TYPES.whiletrue ||
- searching.type == Models.COMMAND_TYPES.dowhiletrue) {
- if (searching.commands_block) {
- return '' + searching.commands_block.indexOf(query);
- } else {
- return '0';
- }
- } else if (searching.type == Models.COMMAND_TYPES.iftrue) {
- if (searching.commands_block == null) {
- searching.commands_block = [];
- }
- if (searching.commands_else == null) {
- searching.commands_else = [];
- }
- console.log('\n\nveja onde: ', searching.commands_block, ' \n\nquery: ', query);
- if (searching.commands_block.indexOf(query) >= 0) {
- return 'if[' + searching.commands_block.indexOf(query) + ']';
- } else {
- return 'else[' + searching.commands_else.indexOf(query) + ']';
- }
- } else if (searching.type == Models.COMMAND_TYPES.switch) {
- for (var i = 0; i < searching.cases.length; i++) {
- if (searching.cases[i].commands_block.indexOf(query) >= 0) {
- return 'case[' + searching.cases[i].commands_block.indexOf(query) + ']';
- }
- }
- }
- }
- function findPathRecursive (starter_index, hierarquia_bottom_up, function_obj, index_command = -1, actual = null) {
- var full_path = '';
-
- for (var i = 0; i <= hierarquia_bottom_up.length; i ++) {
- console.log('\n\n:: ', i, ':\n', hierarquia_bottom_up[i]);
- full_path += findSingleElement(hierarquia_bottom_up[i], hierarquia_bottom_up[i + 1]) + '-';
- }
- return full_path;
- }
- function manageCommand (function_obj, function_container, event, command_type) {
- $( ".created_element" ).each(function( index ) {
- $(this).remove();
- });
- var el = $(document.elementFromPoint(event.clientX, event.clientY));
- if (el.hasClass('ghost_div')) {
- if (el.closest('.command_container').length < 1) {
-
- console.log('\n\nvou tentar!!!!');
- console.log(el.closest('.commands_list_div'), '\n\n');
- el.closest('.commands_list_div').css('height', el.closest('.commands_list_div').css('height') + 30);
-
- //$('.ghost_div').remove();
- el = el.closest('.commands_list_div');
- }
- }
- console.log('soltou no: ');
- console.log(el);
- console.log(el.data('fun'));
- // Primeiro verificar se ele soltou no espaço da função correta:
- var hier = el.parentsUntil(".all_functions");
- var esta_correto = false;
- var esta_na_div_correta = false;
- if (el.hasClass("commands_list_div")) {
- esta_na_div_correta = true;
- }
- for (var i = 0; i < hier.length; i++) {
- var temp = $(hier[i]);
- if (temp.hasClass("commands_list_div")) {
- esta_na_div_correta = true;
- }
- if (temp.data('fun') == function_obj) {
- esta_correto = true;
- break;
- }
- }
- if (!esta_correto) {
- // has_element_created_draged = false;
- // which_element_is_draged = null;
- dragTrash(event);
- return;
- } else {
- if (!esta_na_div_correta) {
- // has_element_created_draged = false;
- // which_element_is_draged = null;
- dragTrash(event);
- return;
- }
- }
- var hierarquia_bottom_up = null;
- // Agora é descobrir qual o escopo para adicionar o comando:
- console.log('ev0');
- // Se o elemento clicado possuir o atributo "fun", então, é direto na div dos comandos:
- if (typeof el.data('fun') !== 'undefined') {
- // Se a lista de comandos estiver vazia, então é o primeiro.
- // Portanto, ele deve soltar o elemento obrigatoriamente no objeto vazio
- if ((el.data('fun').commands == null) || (el.data('fun').commands.length == 0)) {
- // pode adicionar
- el.data('fun').commands = [];
- var new_cmd = genericCreateCommand(command_type);
- registerUserEvent(function_obj.name, ActionTypes.INSERT_COMMAND, command_type, '/', 0);
- el.data('fun').commands.push(new_cmd);
- renderCommand(new_cmd, $(function_container).find('.commands_list_div'), 3, function_obj);
-
- } else { // Entra nesse else, caso já existam outros comandos no bloco:
- findNearbyCommandToAddInFunctionScope(el, event, $(function_container).find('.commands_list_div'), function_obj, command_type);
- }
- } else {
- console.log("soltou em um comando");
- // descobrir em qual comando ele soltou:
- var hier_find = el.parentsUntil(".commands_list_div");
- hierarquia_bottom_up = [];
- if (typeof el.data('command') !== 'undefined') {
- hierarquia_bottom_up.push(el.data('command'));
- }
- for (var i = 0; i < hier_find.length; i++) {
- if (typeof $(hier_find[i]).data('command') !== 'undefined') {
- hierarquia_bottom_up.push($(hier_find[i]).data('command'));
- }
- }
- console.log("comando em que soltou: ");
- console.log(hierarquia_bottom_up[0]);
- console.log("hierarquia de baixo para cima na árvore, de onde ele soltou: ");
- for (var i = 0; i < hierarquia_bottom_up.length; i++) {
- console.log(hierarquia_bottom_up[i]);
- }
- // Se for do tipo break, verificar se está no contexto correto:
- // Caso não esteja no contexto, apenas retorna sem dar continuidade:
- var is_correct_context = false;
- if (command_type == Models.COMMAND_TYPES.break) {
- for (var i = 0; i < hierarquia_bottom_up.length; i++) {
- if ((hierarquia_bottom_up[i].type == Models.COMMAND_TYPES.repeatNtimes)
- || (hierarquia_bottom_up[i].type == Models.COMMAND_TYPES.whiletrue)
- || (hierarquia_bottom_up[i].type == Models.COMMAND_TYPES.dowhiletrue)
- || (hierarquia_bottom_up[i].type == Models.COMMAND_TYPES.switch)) {
- is_correct_context = true;
- break;
- }
- }
- if (!is_correct_context) {
- console.error("Context not allowed to insert BREAK COMMAND!");
- return;
- }
- }
- // se a hierarquia possuir apenas um elemento, então está na raiz dos comandos:
- if (hierarquia_bottom_up.length == 1) {
- console.log('QQ1');
- var sub_elemento = false;
- for (var i = 0; i < hier_find.length; i++) {
- if (typeof $(hier_find[i]).data('command') !== 'undefined') {
- console.log('QQ2');
- findBeforeOrAfterCommandToAdd(hier_find[i], event, function_obj, command_type);
- sub_elemento = true;
- break;
- }
- }
- if (!sub_elemento) {
- console.log('QQ3');
- findBeforeOrAfterCommandToAdd(el[0], event, function_obj, command_type);
- }
- } else {
- console.log('QQ4');
- // caso exista mais de um elemento na hierarquia:
- if (typeof $(el).data('command') !== 'undefined') {
- console.log('QQ5');
- console.log("PPP1");
- insertCommandInBlockHierar(el[0], event, function_obj, command_type, hier_find, hierarquia_bottom_up);
- } else {
- console.log('QQ6');
- var sub_elemento = false;
- for (var i = 0; i < hier_find.length; i++) {
- if (typeof $(hier_find[i]).data('command') !== 'undefined') {
- console.log('QQ7');
- insertCommandInBlockHierar(hier_find[i], event, function_obj, command_type, hier_find, hierarquia_bottom_up);
- sub_elemento = true;
- break;
- }
- }
- }
-
- }
- }
-
- // has_element_created_draged = false;
- // which_element_is_draged = null;
- if (hierarquia_bottom_up) {
- console.log('\n\n:::índices::\n\n');
- var i = hierarquia_bottom_up.length - 1;
- var starter_index = window.program_obj.functions[window.program_obj.functions.indexOf(function_obj)].commands.indexOf(hierarquia_bottom_up[i]);
- var all_str_path = starter_index + '-' + findPathRecursive(starter_index, hierarquia_bottom_up, function_obj);
- registerUserEvent(function_obj.name, ActionTypes.INSERT_COMMAND, command_type, '/' , all_str_path);
- console.log('\n\nfull path: \n\n', all_str_path);
- console.log('fim dos índices');
- }
- renderAlgorithm();
- }
- function insertCommandInBlockHierar (el, event, function_obj, command_type, hier_dom, hier_obj) {
- var el_jq = $(el);
- var command_parent = el_jq.data('command');
-
- if ((el_jq.data('command').type == Models.COMMAND_TYPES.repeatNtimes) ||
- (el_jq.data('command').type == Models.COMMAND_TYPES.whiletrue) ||
- (el_jq.data('command').type == Models.COMMAND_TYPES.dowhiletrue) ||
- (el_jq.data('command').type == Models.COMMAND_TYPES.switch) ) {
- console.log('QQ17');
- if ((el_jq.data('command').type == Models.COMMAND_TYPES.repeatNtimes) ||
- (el_jq.data('command').type == Models.COMMAND_TYPES.whiletrue) ||
- (el_jq.data('command').type == Models.COMMAND_TYPES.dowhiletrue) ) {
- console.log('QQ18');
- // Se não tiver outro comando ainda no bloco, só adiciona:
- if (command_parent.commands_block == null || command_parent.commands_block.length == 0) {
- command_parent.commands_block = [];
- var recentComand = genericCreateCommand(command_type);
- command_parent.commands_block.push(recentComand);
- registerUserEvent(function_obj.name, ActionTypes.INSERT_COMMAND, command_type, '/' + el_jq.data('command').type, 0);
- renderCommand(recentComand, el_jq.find('.block_commands'), 3, function_obj);
- } else { // Se já tem algum comando no bloco:
- findNearbyCommandToAddInBlockScope(el, event, el, function_obj, command_type, command_parent);
- }
- } else {
- // QUANDO FOR BLOCO DO TIPO IF OU SWITCH/CASE:
- addCommandToSwitchCase(event, function_obj, command_type);
- }
- } else {
- console.log('QQ19');
- // entra neste bloco, se soltou o comando sobre outro comando dentro de um subbloco:
- findBeforeOrAfterCommandToAddInsertBlock(el, event, function_obj, command_type);
- }
- }
- function findNearbyCommandToAddInBlockScope (el, event, node_list_commands, function_obj, command_type, command_parent) {
- console.log("\n\n\n::COMANDOS:\n\n", el, event, node_list_commands, function_obj, command_type, command_parent);
- var all_sub = $(node_list_commands).find('div.command_container');
- var menor_distancia = 999999999;
- var elemento_menor_distancia = null;
- var antes = true;
- var t_bot;
- var t_top;
- // Descobrindo o elemento mais próximo:
- for (var i = 0; i < all_sub.length; i++) {
-
- t_top = all_sub[i].getBoundingClientRect().top;
- t_bot = all_sub[i].getBoundingClientRect().top + all_sub[i].getBoundingClientRect().height;
- if ((t_top - event.clientY) < menor_distancia) {
- menor_distancia = event.clientY - t_top;
- elemento_menor_distancia = all_sub[i];
- }
- }
- var borda_inferior = elemento_menor_distancia.parentNode.getBoundingClientRect().top + elemento_menor_distancia.parentNode.getBoundingClientRect().height;
-
- // Está mais próximo da borda de baixo, ou seja.. inserir por último:
- if ((borda_inferior - event.clientY) < menor_distancia) {
-
- var recentComand = genericCreateCommand(command_type);
- command_parent.commands_block.push(recentComand);
- //
- renderCommand(recentComand, node_list_commands, 3, function_obj);
- } else {
- var recentComand = genericCreateCommand(command_type);
- var index = command_parent.commands_block.indexOf($(elemento_menor_distancia).data('command'));
- if (index > -1) {
- command_parent.commands_block.splice(index, 0, recentComand);
- }
- renderCommand(recentComand, elemento_menor_distancia, 1, function_obj);
- }
- }
- function findBeforeOrAfterCommandToAddInsertBlock (el, event, function_obj, command_type) {
- var el_jq = $(el);
- var command_parent = $(el.parentNode.parentNode).data('command');
- var command_target = el_jq.data('command');
- var temp_parent = $(el.parentNode.parentNode);
- var is_in_else = false;
- if (!command_parent) {
- command_parent = el_jq.data('command');
- temp_parent = el_jq;
- var hier = el_jq.parentsUntil(".command_container");
- for (var i = 0; i < hier.length; i++) {
- var temp = $(hier[i]);
- if (typeof temp.data('else') != 'undefined') {
- is_in_else = true;
- }
- if (typeof temp.data('command') != 'undefined') {
- command_parent = temp.data('command');
- temp_parent = temp;
- }
- }
- }
- var hier = el_jq.parentsUntil(".command_container");
- for (var i = 0; i < hier.length; i++) {
- var temp = $(hier[i]);
- if (typeof temp.data('else') != 'undefined') {
- is_in_else = true;
- }
- }
- if (command_parent == command_target) {
- var hier = el_jq.parentsUntil(".command_container");
- for (var i = 0; i < hier.length; i++) {
- var temp = $(hier[i]);
- if (typeof temp.data('else') !== 'undefined') {
- is_in_else = true;
- break;
- }
- }
- }
- if ((command_parent.type != Models.COMMAND_TYPES.iftrue) && (command_parent.type != Models.COMMAND_TYPES.switch)) {
- var hier = temp_parent.parentsUntil(".all_cases_div");
- console.log("vou procurar!!");
- for (var i = 0; i < hier.length; i++) {
- console.log("estou vasculhando...");
- var temp = $(hier[i]);
- if (typeof temp.data('switchcase') !== 'undefined') {
- console.log("encontrei");
- command_parent = temp.data('switchcase');
- is_in_else = false;
- break;
- }
- }
- }
- console.log('debugging:');
- console.log('el_jq');
- console.log(el_jq);
- console.log('command_parent');
- console.log(command_parent);
- console.log('command_target');
- console.log(command_target);
- var menor_distancia = 999999999;
- var antes = true;
- var t_bot;
- var t_top;
- t_top = el.getBoundingClientRect().top;
- t_bot = el.getBoundingClientRect().top + el.getBoundingClientRect().height;
- var d_top = event.clientY - t_top; // distancia topo
- var d_bot = t_bot - event.clientY; // distancia baixo
- // Está mais próximo da borda de baixo, ou seja.. inserir por último:
- if (d_top < d_bot) {
-
- var recentComand = genericCreateCommand(command_type);
- console.log('MMM1');
- if (is_in_else) {
- console.log('MMM2');
- if (command_parent == command_target) {
- console.log('MMM3');
- if (command_parent.commands_else == null || command_parent.commands_else.length == 0) {
- command_parent.commands_else = [];
- var recentComand = genericCreateCommand(command_type);
- command_parent.commands_else.push(recentComand);
- renderCommand(recentComand, el_jq, 3, function_obj);
- } else { // Se já tem algum comando no bloco:
- findInBlockCorrectPlace(el_jq, event, function_obj, command_type, true);
- }
- return;
- }
- console.log('MMM7');
- var index = command_parent.commands_else.indexOf(command_target);
- if (index > -1) {
- command_parent.commands_else.splice(index, 0, recentComand);
- }
- renderCommand(recentComand, el, 1, function_obj);
- } else {
- console.log('MMM4');
- if (command_parent == command_target) {
- console.log('Nxxxx5');
- if (command_parent.commands_block == null || command_parent.commands_block.length == 0) {
- command_parent.commands_block = [];
- console.log('SSS4');
- var recentComand = genericCreateCommand(command_type);
- command_parent.commands_block.push(recentComand);
- renderCommand(recentComand, el_jq, 3, function_obj);
- } else {
- console.log('SSS5');
- findInBlockCorrectPlace(el_jq, event, function_obj, command_type);
- }
-
-
- return;
- }
- console.log('MMM6');
- var index = command_parent.commands_block.indexOf(command_target);
- if (index > -1) {
- command_parent.commands_block.splice(index, 0, recentComand);
- }
- renderCommand(recentComand, el, 1, function_obj);
- }
-
- } else {
- console.log('XXX1');
- var recentComand = genericCreateCommand(command_type);
- if (is_in_else) {
- if (command_parent == command_target) {
- console.log('MMM3');
- if (command_parent.commands_else == null || command_parent.commands_else.length == 0) {
- command_parent.commands_else = [];
- console.log('SSS1');
- var recentComand = genericCreateCommand(command_type);
- command_parent.commands_else.push(recentComand);
- renderCommand(recentComand, el_jq, 3, function_obj);
- } else { // Se já tem algum comando no bloco:
- console.log('SSS2');
- findInBlockCorrectPlace(el_jq, event, function_obj, command_type, true);
- }
- return;
- }
- console.log('XXX2');
- var index = command_parent.commands_else.indexOf(command_target);
- if (index > -1) {
- command_parent.commands_else.splice((index + 1), 0, recentComand);
- }
- renderCommand(recentComand, el, 2, function_obj);
- } else {
- if (command_parent == command_target) {
- console.log('Nxxxx78');
- if (command_parent.commands_block == null || command_parent.commands_block.length == 0) {
- command_parent.commands_block = [];
- var recentComand = genericCreateCommand(command_type);
- command_parent.commands_block.push(recentComand);
- console.log('SSS6');
- renderCommand(recentComand, el_jq, 3, function_obj);
- } else {
- console.log('SSS7');
- findInBlockCorrectPlace(el_jq, event, function_obj, command_type);
- }
-
-
- return;
- }
- console.log('XXX3');
- var index = command_parent.commands_block.indexOf(command_target);
- if (index > -1) {
- command_parent.commands_block.splice((index + 1), 0, recentComand);
- }
- renderCommand(recentComand, el, 2, function_obj);
- }
-
- }
- }
- function insertCommandInBlock (el, event, function_obj, command_type) {
- var el_jq = $(el);
- var command_parent = el_jq.data('command');
- if ((el_jq.data('command').type == Models.COMMAND_TYPES.repeatNtimes) ||
- (el_jq.data('command').type == Models.COMMAND_TYPES.whiletrue) ||
- (el_jq.data('command').type == Models.COMMAND_TYPES.dowhiletrue) ) {
- // Se não tiver outro comando ainda no bloco, só adiciona:
- if (command_parent.commands_block == null || command_parent.commands_block.length == 0) {
- command_parent.commands_block = [];
- var recentComand = genericCreateCommand(command_type);
- command_parent.commands_block.push(recentComand);
- renderCommand(recentComand, el_jq.find('.block_commands'), 3, function_obj);
- } else { // Se já tem algum comando no bloco:
- findInBlockCorrectPlace(el, event, function_obj, command_type);
- }
- } else if (el_jq.data('command').type == Models.COMMAND_TYPES.iftrue) {
- console.log('QQ9');
-
- // no if ou no else?
- var correct_div = $(document.elementFromPoint(event.pageX, event.pageY));
- var is_in_if = true;
- if (correct_div.data('if')) {
- is_in_if = true;
- } else if (correct_div.data('else')) {
- is_in_if = false;
- } else {
- var hier = correct_div.parentsUntil(".command_container");
- for (var i = 0; i < hier.length; i++) {
- var temp = $(hier[i]);
- if (typeof temp.data('if') !== 'undefined') {
- is_in_if = true;
- break;
- }
- if (typeof temp.data('else') !== 'undefined') {
- is_in_if = false;
- break;
- }
- }
- }
- if (is_in_if) {
- if (command_parent.commands_block == null || command_parent.commands_block.length == 0) {
- command_parent.commands_block = [];
- var recentComand = genericCreateCommand(command_type);
- command_parent.commands_block.push(recentComand);
- renderCommand(recentComand, el_jq.find('.commands_if'), 3, function_obj);
- } else { // Se já tem algum comando no bloco:
- findInBlockCorrectPlace(el_jq.find('.commands_if'), event, function_obj, command_type);
- }
- } else {
- if (command_parent.commands_else == null || command_parent.commands_else.length == 0) {
- command_parent.commands_else = [];
- var recentComand = genericCreateCommand(command_type);
- command_parent.commands_else.push(recentComand);
- renderCommand(recentComand, el_jq.find('.commands_else'), 3, function_obj);
- } else { // Se já tem algum comando no bloco:
- findInBlockCorrectPlace(el_jq.find('.commands_else'), event, function_obj, command_type, true);
- }
- }
- } else { // é do tipo switch
- console.log("está tentando inserir em um switch que está na raiz!");
- addCommandToSwitchCase(event, function_obj, command_type);
- }
- }
- function addCommandToSwitchCase (event, function_obj, command_type) {
- var el = $(document.elementFromPoint(event.clientX, event.clientY));
- var which_case = el.data('switchcase');
- var case_div = el;
-
- if (!which_case) {
- var hier_find = el.parentsUntil(".all_cases_div");
- for (var i = 0; i < hier_find.length; i++) {
- if (typeof $(hier_find[i]).data('switchcase') !== 'undefined') {
- which_case = $(hier_find[i]).data('switchcase');
- case_div = $(hier_find[i]);
- break;
- }
- }
- }
- if (which_case.commands_block == null || which_case.commands_block.length < 1) {
- which_case.commands_block = [];
- var recentComand = genericCreateCommand(command_type);
- which_case.commands_block.push(recentComand);
- renderCommand(recentComand, case_div.find('.case_commands_block'), 3, function_obj);
- } else {
- findInBlockCorrectPlaceInSwitchCase(which_case, case_div, event, function_obj, command_type);
- }
- }
- function findInBlockCorrectPlaceInSwitchCase (which_case, case_div, event, function_obj, command_type) {
- var all_sub = case_div.find('div.command_container');
- var menor_distancia = 999999999;
- var elemento_menor_distancia = null;
- var antes = true;
- var t_bot;
- var t_top;
- // Descobrindo o elemento mais próximo:
- for (var i = 0; i < all_sub.length; i++) {
-
- t_top = all_sub[i].getBoundingClientRect().top;
- t_bot = all_sub[i].getBoundingClientRect().top + all_sub[i].getBoundingClientRect().height;
- if ((t_top - event.clientY) < menor_distancia) {
- menor_distancia = event.clientY - t_top;
- elemento_menor_distancia = all_sub[i];
- }
- }
- var borda_inferior = elemento_menor_distancia.parentNode.getBoundingClientRect().top + elemento_menor_distancia.parentNode.getBoundingClientRect().height;
-
- // Está mais próximo da borda de baixo, ou seja.. inserir por último:
- if ((borda_inferior - event.clientY) < menor_distancia) {
- var recentComand = genericCreateCommand(command_type);
- which_case.commands_block.push(recentComand);
- renderCommand(recentComand, $(case_div.find('.case_commands_block')[0]), 3, function_obj);
- } else {
- var recentComand = genericCreateCommand(command_type);
- var index = which_case.commands_block.indexOf($(elemento_menor_distancia).data('command'));
- if (index > -1) {
- which_case.commands_block.splice(index, 0, recentComand);
- renderCommand(recentComand, elemento_menor_distancia, 1, function_obj);
- }
- }
- }
- function findInBlockCorrectPlace (el, event, function_obj, command_type, is_in_else = false) {
- var el_jq = $(el);
- var all_sub = el_jq.find('div.command_container');
- var menor_distancia = 999999999;
- var elemento_menor_distancia = null;
- var antes = true;
- var t_bot;
- var t_top;
- // Descobrindo o elemento mais próximo:
- for (var i = 0; i < all_sub.length; i++) {
-
- t_top = all_sub[i].getBoundingClientRect().top;
- t_bot = all_sub[i].getBoundingClientRect().top + all_sub[i].getBoundingClientRect().height;
- if ((t_top - event.clientY) < menor_distancia) {
- menor_distancia = event.clientY - t_top;
- elemento_menor_distancia = all_sub[i];
- }
- }
- var borda_inferior = elemento_menor_distancia.parentNode.getBoundingClientRect().top + elemento_menor_distancia.parentNode.getBoundingClientRect().height;
- console.log("menor_distancia: ");
- console.log(elemento_menor_distancia);
-
- // Está mais próximo da borda de baixo, ou seja.. inserir por último:
- if ((borda_inferior - event.clientY) < menor_distancia) {
- console.log('QQ11');
-
- var recentComand = genericCreateCommand(command_type);
- var command_parent = el_jq.data('command');
- if (is_in_else) {
- console.log('QQ15');
- command_parent.commands_else.push(recentComand);
- console.log('el_jq');
- console.log(el_jq);
- console.log("$(el_jq.find('.commands_else')[0]):: ");
- console.log($(el_jq.find('.commands_else')[0]));
- renderCommand(recentComand, el_jq, 3, function_obj);
- } else {
- console.log('QQ16');
- command_parent.commands_block.push(recentComand);
- renderCommand(recentComand, $(el_jq.find('.block_commands')[0]), 3, function_obj);
- }
- } else {
- console.log('QQ12');
- var recentComand = genericCreateCommand(command_type);
- var command_parent = el_jq.data('command');
- if (is_in_else) {
- var index = command_parent.commands_else.indexOf($(elemento_menor_distancia).data('command'));
- if (index > -1) {
- command_parent.commands_else.splice(index, 0, recentComand);
- renderCommand(recentComand, elemento_menor_distancia, 1, function_obj);
- }
- } else {
- var index = command_parent.commands_block.indexOf($(elemento_menor_distancia).data('command'));
- if (index > -1) {
- command_parent.commands_block.splice(index, 0, recentComand);
- renderCommand(recentComand, elemento_menor_distancia, 1, function_obj);
- }
- }
-
- }
- }
- function findBeforeOrAfterCommandToAdd (el, event, function_obj, command_type) {
- switch ($(el).data('command').type) {
- case Models.COMMAND_TYPES.iftrue:
- case Models.COMMAND_TYPES.switch:
- case Models.COMMAND_TYPES.repeatNtimes:
- case Models.COMMAND_TYPES.whiletrue:
- case Models.COMMAND_TYPES.dowhiletrue:
- insertCommandInBlock(el, event, function_obj, command_type);
- return;
- }
- var menor_distancia = 999999999;
- var antes = true;
- var t_bot;
- var t_top;
- t_top = el.getBoundingClientRect().top;
- t_bot = el.getBoundingClientRect().top + el.getBoundingClientRect().height;
- var d_top = event.clientY - t_top; // distancia topo
- var d_bot = t_bot - event.clientY; // distancia baixo
- // Está mais próximo da borda de baixo, ou seja.. inserir por último:
- if (d_top < d_bot) {
-
- var recentComand = genericCreateCommand(command_type);
- var index = function_obj.commands.indexOf($(el).data('command'));
- if (index > -1) {
- function_obj.commands.splice(index, 0, recentComand);
- }
- renderCommand(recentComand, el, 1, function_obj);
- registerUserEvent(function_obj.name, ActionTypes.INSERT_COMMAND, command_type, '/', index);
- } else {
- var recentComand = genericCreateCommand(command_type);
- var index = function_obj.commands.indexOf($(el).data('command'));
- if (index > -1) {
- function_obj.commands.splice((index + 1), 0, recentComand);
- }
- renderCommand(recentComand, el, 2, function_obj);
- registerUserEvent(function_obj.name, ActionTypes.INSERT_COMMAND, command_type, '/', index);
- }
- }
- function findNearbyCommandToAddInFunctionScope (el, event, node_list_commands, function_obj, command_type) {
- var all_sub = $(node_list_commands).find('div.command_container');
- var menor_distancia = 999999999;
- var elemento_menor_distancia = null;
- var antes = true;
- var t_bot;
- var t_top;
- // Descobrindo o elemento mais próximo:
- for (var i = 0; i < all_sub.length; i++) {
-
- t_top = all_sub[i].getBoundingClientRect().top;
- t_bot = all_sub[i].getBoundingClientRect().top + all_sub[i].getBoundingClientRect().height;
- if ((t_top - event.clientY) < menor_distancia) {
- menor_distancia = event.clientY - t_top;
- elemento_menor_distancia = all_sub[i];
- }
- }
- var borda_inferior = elemento_menor_distancia.parentNode.getBoundingClientRect().top + elemento_menor_distancia.parentNode.getBoundingClientRect().height;
-
- // Está mais próximo da borda de baixo, ou seja.. inserir por último:
- if ((borda_inferior - event.clientY) < menor_distancia) {
-
- var recentComand = genericCreateCommand(command_type);
- function_obj.commands.push(recentComand);
- //
- renderCommand(recentComand, node_list_commands, 3, function_obj);
- registerUserEvent(function_obj.name, ActionTypes.INSERT_COMMAND, command_type, '/', function_obj.commands.length - 1);
- } else {
- var recentComand = genericCreateCommand(command_type);
- var index = function_obj.commands.indexOf($(elemento_menor_distancia).data('command'));
- if (index > -1) {
- function_obj.commands.splice(index, 0, recentComand);
- }
- renderCommand(recentComand, elemento_menor_distancia, 1, function_obj);
- registerUserEvent(function_obj.name, ActionTypes.INSERT_COMMAND, command_type, '/', index);
- }
- }
|