search.js 3.0 KB
Newer Older
1
/* eslint-disable func-names, space-before-function-paren, wrap-iife, no-var, one-var, one-var-declaration-per-line, object-shorthand, prefer-arrow-callback, comma-dangle, prefer-template, quotes, no-else-return, max-len */
2 3
/* global Api */

F
Fatih Acet 已提交
4 5 6 7 8 9 10 11 12 13 14
(function() {
  this.Search = (function() {
    function Search() {
      var $groupDropdown, $projectDropdown;
      $groupDropdown = $('.js-search-group-dropdown');
      $projectDropdown = $('.js-search-project-dropdown');
      this.eventListeners();
      $groupDropdown.glDropdown({
        selectable: true,
        filterable: true,
        fieldName: 'group_id',
15
        search: {
16
          fields: ['full_name']
17
        },
F
Fatih Acet 已提交
18
        data: function(term, callback) {
19
          return Api.groups(term, {}, function(data) {
F
Fatih Acet 已提交
20
            data.unshift({
21
              full_name: 'Any'
F
Fatih Acet 已提交
22 23 24 25 26 27 28 29 30
            });
            data.splice(1, 0, 'divider');
            return callback(data);
          });
        },
        id: function(obj) {
          return obj.id;
        },
        text: function(obj) {
31
          return obj.full_name;
F
Fatih Acet 已提交
32 33
        },
        toggleLabel: function(obj) {
34
          return ($groupDropdown.data('default-label')) + " " + obj.full_name;
F
Fatih Acet 已提交
35 36 37 38 39 40 41 42 43 44 45
        },
        clicked: (function(_this) {
          return function() {
            return _this.submitSearch();
          };
        })(this)
      });
      $projectDropdown.glDropdown({
        selectable: true,
        filterable: true,
        fieldName: 'project_id',
46 47 48
        search: {
          fields: ['name']
        },
F
Fatih Acet 已提交
49
        data: function(term, callback) {
S
Sam Rose 已提交
50
          return Api.projects(term, { order_by: 'id' }, function(data) {
F
Fatih Acet 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
            data.unshift({
              name_with_namespace: 'Any'
            });
            data.splice(1, 0, 'divider');
            return callback(data);
          });
        },
        id: function(obj) {
          return obj.id;
        },
        text: function(obj) {
          return obj.name_with_namespace;
        },
        toggleLabel: function(obj) {
          return ($projectDropdown.data('default-label')) + " " + obj.name_with_namespace;
        },
        clicked: (function(_this) {
          return function() {
            return _this.submitSearch();
          };
        })(this)
      });
    }

    Search.prototype.eventListeners = function() {
      $(document).off('keyup', '.js-search-input').on('keyup', '.js-search-input', this.searchKeyUp);
      return $(document).off('click', '.js-search-clear').on('click', '.js-search-clear', this.clearSearchField);
    };

    Search.prototype.submitSearch = function() {
      return $('.js-search-form').submit();
    };

    Search.prototype.searchKeyUp = function() {
      var $input;
      $input = $(this);
      if ($input.val() === '') {
        return $('.js-search-clear').addClass('hidden');
      } else {
        return $('.js-search-clear').removeClass('hidden');
      }
    };

    Search.prototype.clearSearchField = function() {
      return $('.js-search-input').val('').trigger('keyup').focus();
    };

    return Search;
  })();
100
}).call(window);