whiletrue.js 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. import $ from 'jquery';
  2. import { Types } from '../types';
  3. import * as Models from '../ivprog_elements';
  4. import { LocalizedStrings } from '../../services/localizedStringsService';
  5. import * as GlobalsManagement from '../globals';
  6. import * as VariablesManagement from '../variables';
  7. import * as CommandsManagement from '../commands';
  8. import * as ConditionalExpressionManagement from './conditional_expression';
  9. import * as ContextualizedMenu from './contextualized_menu';
  10. import * as GenericExpressionManagement from './generic_expression';
  11. export function createFloatingCommand () {
  12. return $('<div class="ui whiletrue created_element"> <i class="ui icon small sync"></i> <span> ' + LocalizedStrings.getUI('text_code_while') + ' ( x < 10 ) <br> </span></div>');
  13. }
  14. export function renderCommand (command, function_obj) {
  15. var ret = '';
  16. ret += '<div class="ui whiletrue command_container"> <i class="ui icon small sync command_drag"></i> <i class="ui icon times red button_remove_command"></i> <div class="ui context_menu"></div> <span class="span_command_spec"> ' + LocalizedStrings.getUI('text_code_while') + ' </span>';
  17. ret += '<span class="span_command_spec"> ( </span> <div class="conditional_expression"></div> <span class="span_command_spec"> ) </span>';
  18. ret += ' </span>';
  19. ret += '<div class="ui block_commands">';
  20. ret += '</div>';
  21. ret += '<span> </span>';
  22. ret += '</div>';
  23. var el = $(ret);
  24. el.data('command', command);
  25. el.find('.block_commands').data('command', command);
  26. addHandlers(command, function_obj, el);
  27. ContextualizedMenu.renderMenu(command, el.find('.context_menu'), function_obj, el);
  28. //ConditionalExpressionManagement.renderExpression(command, command.expression, function_obj, el.find('.conditional_expression'));
  29. GenericExpressionManagement.renderExpression(command, function_obj, el.find('.conditional_expression'), command.expression);
  30. if (command.commands_block) {
  31. for (var j = 0; j < command.commands_block.length; j++) {
  32. CommandsManagement.renderCommand(command.commands_block[j], $(el.find('.block_commands')[0]), 3, function_obj);
  33. }
  34. }
  35. return el;
  36. }
  37. function addHandlers (command, function_obj, whiletrue_dom) {
  38. whiletrue_dom.find('.button_remove_command').on('click', function() {
  39. if (CommandsManagement.removeCommand(command, function_obj, whiletrue_dom)) {
  40. whiletrue_dom.fadeOut(400, function() {
  41. whiletrue_dom.remove();
  42. });
  43. }
  44. });
  45. }