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 VariableValueMenu from './variable_value_menu';
export function createFloatingCommand () {
return $('
');
}
export function renderCommand (command, function_obj) {
var el = $('');
$(el).data('command', command);
addHandlers(command, function_obj, el);
return el;
}
function addHandlers (command, function_obj, comment_dom) {
$(comment_dom).find('.div_comment_text').on('click', function() {
$(comment_dom).find('.div_comment_text').text('');
VariableValueMenu.renderMenu(command, command.comment_text, $(comment_dom).find('.var_value_menu_div'), function_obj, 20);
$(comment_dom).find('.width-dynamic').val(command.comment_text.content);
$(comment_dom).find('.width-dynamic').focusout(function() {
if ($(this).val().trim()) {
command.comment_text.content = $(this).val().trim();
}
$(comment_dom).find('.div_comment_text').text(command.comment_text.content);
$(this).remove();
});
$(comment_dom).find('.width-dynamic').on('keydown', function(e) {
var code = e.keyCode || e.which;
if(code == 13) {
if ($(this).val().trim()) {
command.comment_text.content = $(this).val().trim();
}
$(comment_dom).find('.div_comment_text').text(command.comment_text.content);
$(this).remove();
}
if(code == 27) {
$(comment_dom).find('.div_comment_text').text(command.comment_text.content);
$(this).remove();
}
});
});
}