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';
export function createFloatingCommand () {
	return $('
   '+ LocalizedStrings.getUI('text_command_do') +' 
 ' + LocalizedStrings.getUI('text_code_while') +'(x < 10) 
');
}
export function renderCommand (command, function_obj) {
	var ret = '';
	ret += '      ' + LocalizedStrings.getUI('text_command_do') + ' ';
	ret += '
';
	ret += '
';
	ret += ' 
 ' + LocalizedStrings.getUI('text_code_while') + '   (    ) ';
	ret += '
 ';
	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);
		}
	}
	return el;
}
function addHandlers (command, function_obj, dowhiletrue_dom) {
	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();
			});
		}
	});
}