select2.js 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. // assets/js/widgets/select2.js
  2. // pour le widget select2
  3. import 'select2';
  4. //require('./select2-fr.js');
  5. import 'select2/dist/js/i18n/fr.js';
  6. (function ($) {
  7. $.fn.select2entity = function (options) {
  8. this.each(function () {
  9. var request;
  10. // Keep a reference to the element so we can keep the cache local to this instance and so we can
  11. // fetch config settings since select2 doesn't expose its options to the transport method.
  12. var $s2 = $(this),
  13. limit = $s2.data('page-limit') || 0,
  14. scroll = $s2.data('scroll'),
  15. prefix = Date.now(),
  16. cache = [];
  17. var reqParams = $s2.data('req_params');
  18. if (reqParams) {
  19. $.each(reqParams, function (key, value) {
  20. $('*[name="' + value + '"]').on('change', function () {
  21. $s2.val(null);
  22. $s2.trigger('change');
  23. });
  24. });
  25. }
  26. // Deep-merge the options
  27. $s2.select2($.extend(true, {
  28. // Tags support
  29. createTag: function (data) {
  30. if ($s2.data('tags') && data.term.length > 0) {
  31. var text = data.term + $s2.data('tags-text');
  32. return {id: $s2.data('new-tag-prefix') + data.term, text: text};
  33. }
  34. },
  35. ajax: {
  36. url: $s2.data('ajax--url'),
  37. transport: function (params, success, failure) {
  38. // is caching enabled?
  39. if ($s2.data('ajax--cache')) {
  40. // try to make the key unique to make it less likely for a page+q to match a real query
  41. var key = prefix + ' page:' + (params.data.page || 1) + ' ' + params.data.q,
  42. cacheTimeout = $s2.data('ajax--cacheTimeout');
  43. // no cache entry for 'term' or the cache has timed out?
  44. if (typeof cache[key] == 'undefined' || (cacheTimeout && Date.now() >= cache[key].time)) {
  45. $.ajax(params).fail(failure).done(function (data) {
  46. cache[key] = {
  47. data: data,
  48. time: cacheTimeout ? Date.now() + cacheTimeout : null
  49. };
  50. success(data);
  51. });
  52. } else {
  53. // return cached data with no ajax request
  54. success(cache[key].data);
  55. }
  56. } else {
  57. // no caching enabled. just do the ajax request
  58. if (request) {
  59. request.abort();
  60. }
  61. request = $.ajax(params).fail(failure).done(success).always(function () {
  62. request = undefined;
  63. });
  64. }
  65. },
  66. data: function (params) {
  67. var ret = {
  68. 'q': params.term,
  69. 'field_name': $s2.data('name')
  70. };
  71. var reqParams = $s2.data('req_params');
  72. if (reqParams) {
  73. $.each(reqParams, function (key, value) {
  74. ret[key] = $('*[name="' + value + '"]').val()
  75. });
  76. }
  77. // only send the 'page' parameter if scrolling is enabled
  78. if (scroll) {
  79. ret['page'] = params.page || 1;
  80. }
  81. return ret;
  82. },
  83. processResults: function (data, params) {
  84. var results, more = false, response = {};
  85. params.page = params.page || 1;
  86. if ($.isArray(data)) {
  87. results = data;
  88. } else if (typeof data == 'object') {
  89. // assume remote result was proper object
  90. results = data.results;
  91. more = data.more;
  92. } else {
  93. // failsafe
  94. results = [];
  95. }
  96. if (scroll) {
  97. response.pagination = {more: more};
  98. }
  99. response.results = results;
  100. return response;
  101. }
  102. },
  103. placeholder: $s2.data('placeholder'),
  104. minimumInputLength: $s2.data('minimum-input-length'),
  105. language: $s2.data('language'),
  106. // theme: 'bootstrap4',
  107. tags: $s2.data('tags')
  108. }, options || {}));
  109. });
  110. return this;
  111. };
  112. })(jQuery);
  113. (function ($) {
  114. $(document).ready(function () {
  115. $('.select2entity[data-autostart="true"]').select2entity();
  116. });
  117. })(jQuery);