OTRS API Reference JavaScript

Source: Core.Agent.Admin.GenericInterfaceMappingXSLT.js

  1. // --
  2. // Copyright (C) 2001-2020 OTRS AG, https://otrs.com/
  3. // --
  4. // This software comes with ABSOLUTELY NO WARRANTY. For details, see
  5. // the enclosed file COPYING for license information (GPL). If you
  6. // did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
  7. // --
  8. "use strict";
  9. var Core = Core || {};
  10. Core.Agent = Core.Agent || {};
  11. Core.Agent.Admin = Core.Agent.Admin || {};
  12. /**
  13. * @namespace Core.Agent.Admin.GenericInterfaceMappingXSLT
  14. * @memberof Core.Agent.Admin
  15. * @author OTRS AG
  16. * @description
  17. * This namespace contains the special module functions for the GenericInterface Mapping XSLT module.
  18. */
  19. Core.Agent.Admin.GenericInterfaceMappingXSLT = (function (TargetNS) {
  20. /**
  21. * @name RemoveValue
  22. * @memberof Core.Agent.Admin.GenericInterfaceMappingXSLT
  23. * @function
  24. * @returns {Boolean} Returns false.
  25. * @param {String} IDSelector - ID of the pressed remove value button.
  26. * @description
  27. * This function removes a value from regex list and creates a stub input so
  28. * the server can identify if a value is empty or deleted (useful for server validation).
  29. */
  30. TargetNS.RemoveValue = function (IDSelector){
  31. var $Type = IDSelector.match(/^(Pre|Post)/)[1];
  32. var $KeyPrefix = $Type + 'Key_';
  33. var $DeletedValue = $Type + 'DeletedValue';
  34. // copy HTML code for an input replacement for the deleted regex
  35. var $Clone = $('.' + $DeletedValue).clone(),
  36. // get the index of the value to delete (its always the second element (1) in this RegEx
  37. $ObjectIndex = IDSelector.match(/.+_(\d+)/)[1];
  38. // set the input replacement attributes to match the deleted original regex
  39. // new regex and other controls are not needed anymore
  40. $Clone.attr('id', $KeyPrefix + $ObjectIndex);
  41. $Clone.attr('name', $KeyPrefix + $ObjectIndex);
  42. $Clone.removeClass($DeletedValue);
  43. // add the input replacement to the mapping type so it can be parsed and distinguish from
  44. // empty regexes by the server
  45. $('#' + IDSelector).closest('fieldset').append($Clone);
  46. // remove regex
  47. $('#' + IDSelector).parent().remove();
  48. return false;
  49. };
  50. /**
  51. * @name AddValue
  52. * @memberof Core.Agent.Admin.GenericInterfaceMappingXSLT
  53. * @function
  54. * @returns {Boolean} Returns false
  55. * @param {Object} ValueInsert - HTML container of the value mapping row.
  56. * @description
  57. * This function adds a new regex to the regex list
  58. */
  59. TargetNS.AddValue = function (ValueInsert) {
  60. var $Type = ValueInsert.attr('class').match(/(Pre|Post)ValueInsert/)[1];
  61. var $ValueCounter = '#' + $Type + 'ValueCounter';
  62. var $ValueTemplate = $Type + 'ValueTemplate';
  63. // clone key dialog
  64. var $Clone = $('.' + $ValueTemplate).clone(),
  65. ValueCounter = $($ValueCounter).val();
  66. // increment key counter
  67. ValueCounter++;
  68. // remove unnecessary classes
  69. $Clone.removeClass('Hidden ' + $ValueTemplate);
  70. // add needed class
  71. $Clone.addClass('ValueRow');
  72. // copy values and change ids and names
  73. $Clone.find(':input, a.RemoveButton').each(function(){
  74. var ID = $(this).attr('id');
  75. $(this).attr('id', ID + '_' + ValueCounter);
  76. $(this).attr('name', ID + '_' + ValueCounter);
  77. // add error control to key
  78. if($(this).hasClass('KeyTemplate')) {
  79. $(this).removeClass('KeyTemplate');
  80. $(this).addClass('Validate_Required');
  81. // set error controls
  82. $(this).parent().find('#' + ID + 'Error').attr('id', ID + '_' + ValueCounter + 'Error');
  83. $(this).parent().find('#' + ID + 'Error').attr('name', ID + '_' + ValueCounter + 'Error');
  84. $(this).parent().find('#' + ID + 'ServerError').attr('id', ID + '_' + ValueCounter + 'ServerError');
  85. $(this).parent().find('#' + ID + 'ServerError').attr('name', ID + '_' + ValueCounter + 'ServerError');
  86. }
  87. // add event handler to remove button
  88. if($(this).hasClass('RemoveButton')) {
  89. // bind click function to remove button
  90. $(this).on('click', function () {
  91. TargetNS.RemoveValue($(this).attr('id'));
  92. return false;
  93. });
  94. }
  95. });
  96. $Clone.find('label').each(function(){
  97. var FOR = $(this).attr('for');
  98. $(this).attr('for', FOR + '_' + ValueCounter);
  99. });
  100. // append to container
  101. ValueInsert.append($Clone);
  102. // set new value for KeyName
  103. $($ValueCounter).val(ValueCounter);
  104. return false;
  105. };
  106. /**
  107. * @name Init
  108. * @memberof Core.Agent.Admin.GenericInterfaceMappingXSLT
  109. * @function
  110. * @description
  111. * Initialize module functionality
  112. */
  113. TargetNS.Init = function () {
  114. // bind click function to add button
  115. $('#PreAddValue').on('click', function () {
  116. TargetNS.AddValue(
  117. $(this).closest('fieldset').find('.PreValueInsert')
  118. );
  119. return false;
  120. });
  121. $('#PostAddValue').on('click', function () {
  122. TargetNS.AddValue(
  123. $(this).closest('fieldset').find('.PostValueInsert')
  124. );
  125. return false;
  126. });
  127. // bind click function to remove button
  128. $('.ValueRemove').on('click', function () {
  129. TargetNS.RemoveValue($(this).attr('id'));
  130. return false;
  131. });
  132. };
  133. Core.Init.RegisterNamespace(TargetNS, 'APP_MODULE');
  134. return TargetNS;
  135. }(Core.Agent.Admin.GenericInterfaceMappingXSLT || {}));

^ Use Elevator