import { LocalizedStrings } from '../../services/localizedStringsService';
import * as CommandsManagement from '../commands';
import * as GenericExpressionManagement from './generic_expression';
import * as CodeGenerator from '../code_generator';
export function createFloatingCommand () {
return $('
if (x < 1) { }
');
}
export function renderCommand (command, function_obj) {
var ret = '';
ret += '
';
ret += ' ' + LocalizedStrings.getUI('text_if') + '';
ret += ' ( ) ';
ret += ' ';
ret += '';
ret += ' ';
ret += '
';
ret += '
';
ret += '
' + LocalizedStrings.getUI('text_else') + ' ';
ret += '
';
ret += '
';
ret += '
';
ret += '
';
var el = $(ret);
el.data('command', command);
el.find('.block_commands').data('command', command);
el.find('.data_block_if').data('command', command);
el.find('.data_block_else').data('command', command);
el.find('.commands_if').data('command', command);
addHandlers(command, function_obj, el);
//ConditionalExpressionManagement.renderExpression(command, command.expression, function_obj, el.find('.conditional_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('.commands_if')[0]), 3, function_obj);
}
}
if (command.commands_else) {
for (var j = 0; j < command.commands_else.length; j++) {
CommandsManagement.renderCommand(command.commands_else[j], $(el.find('.commands_else')[0]), 3, function_obj);
}
}
if (command.collapsed) {
el.children('.data_block_else').toggle();
$(el.find('.block_commands')[0]).toggle();
}
if (command.lockexpression) {
if (command.expression) {
try {
var text = CodeGenerator.elementExpressionCode(command.expression);
if (text) {
$(el.find('.conditional_expression')[0]).toggle();
$(el.find('.textual_expression')[0]).text(text);
$(el.find('.textual_expression')[0]).toggle();
$(el.find('.button_alternate_expression')[0]).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, iftrue_dom) {
iftrue_dom.find('.button_write_expression').on('click', function() {
window.expressionEdition = true;
window.inputExpression = null;
var afterWhichElement;
var lockButton = $(iftrue_dom.find('.button_alternate_expression')[0]);
var editButton = $(this);
afterWhichElement = $(iftrue_dom.find('.conditional_expression')[0]);
if (command.lockexpression) {
afterWhichElement = $(iftrue_dom.find('.textual_expression')[0]);
}
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 = $('');
var cancel_button = $('');
var input = $('');
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
}
});
});
$(iftrue_dom.find('.textual_expression')[0]).toggle();
iftrue_dom.find('.button_alternate_expression').on('click', function() {
if (command.expression) {
var text = CodeGenerator.elementExpressionCode(command.expression);
if (text) {
$(iftrue_dom.find('.conditional_expression')[0]).toggle();
$(iftrue_dom.find('.textual_expression')[0]).text(text);
$(iftrue_dom.find('.textual_expression')[0]).toggle();
$(this).toggleClass('unlock').toggleClass('lock');
command.lockexpression = !command.lockexpression;
}
}
if (command.lockexpression) {
iftrue_dom.find('.lock').popup({
content : LocalizedStrings.getUI("text_unlock_expression"),
delay: {
show: 750,
hide: 0
}
});
} else {
iftrue_dom.find('.unlock').popup({
content : LocalizedStrings.getUI("text_lock_expression"),
delay: {
show: 750,
hide: 0
}
});
}
});
iftrue_dom.find('.button_remove_command').on('click', function() {
if (CommandsManagement.removeCommand(command, function_obj, iftrue_dom)) {
iftrue_dom.fadeOut(400, function() {
iftrue_dom.remove();
});
}
});
iftrue_dom.find('.minimize_block_button').on('click', function() {
iftrue_dom.children('.data_block_else').toggle();
$(iftrue_dom.find('.block_commands')[0]).toggle();
command.collapsed = !command.collapsed;
});
}