summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/behaviors/select2.js
blob: 1f222d8c1f6f9dc2141f848227a2125be6ba573e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import $ from 'jquery';
import { loadCSSFile } from '../lib/utils/css_utils';

export default () => {
  const $select2Elements = $('select.select2');
  if ($select2Elements.length) {
    import(/* webpackChunkName: 'select2' */ 'select2/select2')
      .then(() => {
        // eslint-disable-next-line promise/no-nesting
        loadCSSFile(gon.select2_css_path)
          .then(() => {
            $select2Elements.select2({
              width: 'resolve',
              minimumResultsForSearch: 10,
              dropdownAutoWidth: true,
            });

            // Close select2 on escape
            $('.js-select2').on('select2-close', () => {
              requestAnimationFrame(() => {
                $('.select2-container-active').removeClass('select2-container-active');
                $(':focus').blur();
              });
            });
          })
          .catch(() => {});
      })
      .catch(() => {});
  }
};