import $ from 'jquery';
import { Types } from '../types';
import * as Models from '../ivprog_elements';
import { LocalizedStrings } from '../../services/localizedStringsService';
import * as GlobalsManagement from '../globals';
import * as VariablesManagement from '../variables';
import * as CommandsManagement from '../commands';
import * as ConditionalExpressionManagement from './conditional_expression';
export function createFloatingCommand () {
return $('
';
ret += '
' + LocalizedStrings.getUI('text_if') + '';
ret += '
';
ret += '
{ ';
ret += '
';
/*if ((writer_obj.commands_block == null)
|| (writer_obj.commands_block.length == 0)) {
} else {
for (ki = 0; ki < writer_obj.commands_block.length; ki ++) {
ret += renderElementCommandGeneric(writer_obj.commands_block[ki], function_index, ki, iftrue_index, (fullpath + ',' + ki));
}
}*/
ret += '
';
ret += '
} ' + LocalizedStrings.getUI('text_else') + ' { ';
ret += '
';
/*if ((writer_obj.commands_else == null)
|| (writer_obj.commands_else.length == 0)) {
} else {
for (ki = 0; ki < writer_obj.commands_else.length; ki ++) {
ret += renderElementCommandGeneric(writer_obj.commands_else[ki], function_index, ki, iftrue_index, (fullpath + ',' + ki));
}
}*/
ret += '
';
ret += '
}';
ret += '
';
var el = $(ret);
el.data('command', command);
addHandlers(command, function_obj, el);
ConditionalExpressionManagement.renderExpression(command, command.expression, function_obj, el.find('.conditional_expression'));
el.find('.button_refresh_attribution').on('click', function() {
el.find('.conditional_expression').text('');
ConditionalExpressionManagement.renderExpression(command, command.expression, function_obj, el.find('.conditional_expression'));
});
return el;
}
function addHandlers (command, function_obj, iftrue_dom) {
iftrue_dom.find('.button_remove_command').on('click', function() {
if (CommandsManagement.removeCommand(command, function_obj, iftrue_dom)) {
iftrue_dom.remove();
}
});
}