123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- import { LocalizedStrings } from '../../services/localizedStringsService';
- import * as CommandsManagement from '../commands';
- import * as ConditionalExpressionManagement from './conditional_expression';
- import * as ContextualizedMenu from './contextualized_menu';
- import * as GenericExpressionManagement from './generic_expression';
- import * as CodeGenerator from '../code_generator';
- export function createFloatingCommand () {
- return $('<div class="ui dowhiletrue created_element"> <i class="ui icon small sync"></i> <span> '+ LocalizedStrings.getUI('text_command_do') +' <br> ' + LocalizedStrings.getUI('text_command_do_until') +'(x < 10) </span></div>');
- }
- export function renderCommand (command, function_obj) {
- var ret = '';
- ret += '<div class="ui dowhiletrue command_container"> <i class="ui icon small sync command_drag"></i> <i class="ui icon times red button_remove_command"></i> <button class="ui icon button minimize_block_button tiny"><i class="icon window minimize"></i></button> <span class="span_command_spec"> ' + LocalizedStrings.getUI('text_command_do') + ' </span>';
- ret += '<div class="ui block_commands" data-subblock="" data-idcommand="">';
- ret += '</div>';
- ret += ' <span class="span_command_spec"> ' + LocalizedStrings.getUI('text_command_do_until') + ' </span> <span class="span_command_spec"> ( </span> <div class="conditional_expression"></div> <span class="textual_expression"></span> <span class="span_command_spec"> ) </span>';
- ret += ' <i class="ui icon i cursor button_write_expression" style="display: inline !important;"></i> <i class="ui icon unlock button_alternate_expression" style="margin-left: 1rem !important;"></i> <div class="ui context_menu"></div> ';
- ret += '</div>';
- var el = $(ret);
- el.data('command', command);
- el.find('.block_commands').data('command', command);
- addHandlers(command, function_obj, el);
- ContextualizedMenu.renderMenu(command, el.find('.context_menu'), function_obj, el);
- //ConditionalExpressionManagement.renderExpression(command, command.expression, function_obj, el.find('.conditional_expression'));
- if (command.expression) {
- GenericExpressionManagement.renderExpression(command, function_obj, el.find('.conditional_expression'), command.expression);
- }
- if (command.commands_block) {
- for (var j = 0; j < command.commands_block.length; j++) {
- CommandsManagement.renderCommand(command.commands_block[j], $(el.find('.block_commands')[0]), 3, function_obj);
- }
- }
- if (command.lockexpression) {
- if (command.expression) {
- try {
- var text = CodeGenerator.elementExpressionCode(command.expression);
- if (text) {
- $(el.find('.conditional_expression')[el.find('.conditional_expression').length - 1]).toggle();
- $(el.find('.textual_expression')[el.find('.textual_expression').length - 1]).text(text);
- $(el.find('.textual_expression')[el.find('.textual_expression').length - 1]).toggle();
- $(el.find('.button_alternate_expression')[el.find('.button_alternate_expression').length - 1]).toggleClass('unlock').toggleClass('lock');
- }
- } catch (e) {
- command.lockexpression = false;
- }
- }
- }
- el.find('.unlock').popup({
- content : LocalizedStrings.getUI("text_lock_expression"),
- delay: {
- show: 750,
- hide: 0
- }
- });
- el.find('.lock').popup({
- content : LocalizedStrings.getUI("text_unlock_expression"),
- delay: {
- show: 750,
- hide: 0
- }
- });
- el.find('.button_write_expression').popup({
- content : LocalizedStrings.getUI("text_edit_expression"),
- delay: {
- show: 750,
- hide: 0
- }
- });
- return el;
- }
- function addHandlers (command, function_obj, dowhiletrue_dom) {
- dowhiletrue_dom.find('.button_write_expression').on('click', function() {
- window.expressionEdition = true;
- window.inputExpression = null;
-
- var afterWhichElement;
- var lockButton = $(dowhiletrue_dom.find('.button_write_expression')[dowhiletrue_dom.find('.button_write_expression').length - 1]);
- var editButton = $(this);
- afterWhichElement = $(dowhiletrue_dom.find('.conditional_expression')[dowhiletrue_dom.find('.conditional_expression').length - 1]);
- if (command.lockexpression) {
- afterWhichElement = $(dowhiletrue_dom.find('.textual_expression')[dowhiletrue_dom.find('.textual_expression').length - 1]);
- }
- var text = "";
- if (command.expression) {
- if (command.expression.length == 1 && command.expression[0].content == null && !command.expression[0].function_called) {
- text = "";
- } else {
- try {
- text = CodeGenerator.elementExpressionCode(command.expression);
- } catch(ex) {
- text = "";
- }
- }
- }
- var ok_button = $('<i class="ui icon check circle expression-edit-confirm"></i>');
- var cancel_button = $('<i class="ui icon undo expression-edit-cancel"></i>');
- var input = $('<input type="text" spellcheck="false" autocomplete="off" class="input-expression-field" >');
- input.val(text);
- input.focusout(function(evt) {
- ok_button.click();
- evt.preventDefault();
- return true;
- });
-
- input.keyup(function(evt) {
- if (evt.keyCode == 27) { // esc
- cancel_button.click();
- }
- if (evt.keyCode == 13) { // enter
- ok_button.click();
- }
- });
- ok_button.click(function() {
- var parsed = null;
- parsed = GenericExpressionManagement.expressionParserToVisual(input.val(), function_obj, input);
- if (parsed) {
- window.expressionEdition = false;
- command.expression = parsed;
- renderAlgorithm();
- }
- });
- cancel_button.mousedown(function(evt) {
- var parsed = GenericExpressionManagement.expressionParserToVisual(text, function_obj, input);
- if (parsed) {
- window.expressionEdition = false;
- command.expression = parsed;
- renderAlgorithm();
- }
- });
- input.insertAfter(afterWhichElement);
- input.focus();
- cancel_button.insertAfter(input);
- ok_button.insertAfter(input);
- var len = text.length;
- input[0].setSelectionRange(len, len);
- afterWhichElement.css('display', 'none');
- lockButton.css('display', 'none');
- editButton.css('display', 'none');
- ok_button.popup({
- content : LocalizedStrings.getUI("text_edit_expression_confirm"),
- delay: {
- show: 750,
- hide: 0
- }
- });
- cancel_button.popup({
- content : LocalizedStrings.getUI("text_edit_expression_cancel"),
- delay: {
- show: 750,
- hide: 0
- }
- });
- });
- dowhiletrue_dom.find('.minimize_block_button').on('click', function(evt){
- dowhiletrue_dom.children('.ui.block_commands').toggle();
- command.collapsed = !command.collapsed;
- });
- $(dowhiletrue_dom.find('.textual_expression')[0]).toggle();
-
- dowhiletrue_dom.find('.button_alternate_expression').on('click', function() {
- if (command.expression) {
- var text = CodeGenerator.elementExpressionCode(command.expression);
- if (text) {
- $(dowhiletrue_dom.find('.conditional_expression')[dowhiletrue_dom.find('.conditional_expression').length - 1]).toggle();
- $(dowhiletrue_dom.find('.textual_expression')[dowhiletrue_dom.find('.textual_expression').length - 1]).text(text);
- $(dowhiletrue_dom.find('.textual_expression')[dowhiletrue_dom.find('.textual_expression').length - 1]).toggle();
- $(this).toggleClass('unlock').toggleClass('lock');
- command.lockexpression = !command.lockexpression;
- }
- }
- if (command.lockexpression) {
- dowhiletrue_dom.find('.lock').popup({
- content : LocalizedStrings.getUI("text_unlock_expression"),
- delay: {
- show: 750,
- hide: 0
- }
- });
- } else {
- dowhiletrue_dom.find('.unlock').popup({
- content : LocalizedStrings.getUI("text_lock_expression"),
- delay: {
- show: 750,
- hide: 0
- }
- });
- }
- });
- dowhiletrue_dom.find('.button_remove_command').on('click', function() {
- if (CommandsManagement.removeCommand(command, function_obj, dowhiletrue_dom)) {
- dowhiletrue_dom.fadeOut(400, function() {
- dowhiletrue_dom.remove();
- });
- }
- });
- }
|