summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/components/modal/filters/label.js.es6
blob: 4fc8f72a145673c8423f1ea032371a5af2c87adb (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* eslint-disable no-new */
/* global Vue */
/* global LabelsSelect */
module.exports = Vue.extend({
  name: 'filter-label',
  props: {
    labelPath: {
      type: String,
      required: true,
    },
  },
  mounted() {
    new LabelsSelect(this.$refs.dropdown);
  },
  template: `
    <div class="dropdown">
      <button
        class="dropdown-menu-toggle js-label-select js-multiselect js-extra-options"
        type="button"
        data-toggle="dropdown"
        data-show-any="true"
        data-show-no="true"
        :data-labels="labelPath"
        ref="dropdown">
        <span class="dropdown-toggle-text">
          Label
        </span>
        <i class="fa fa-chevron-down"></i>
      </button>
      <div class="dropdown-menu dropdown-select dropdown-menu-paging dropdown-menu-labels dropdown-menu-selectable">
        <div class="dropdown-title">
          Filter by label
          <button
            class="dropdown-title-button dropdown-menu-close"
            aria-label="Close"
            type="button">
            <i class="fa fa-times dropdown-menu-close-icon"></i>
          </button>
        </div>
        <div class="dropdown-input">
          <input
            type="search"
            class="dropdown-input-field"
            placeholder="Search"
            autocomplete="off" />
          <i class="fa fa-search dropdown-input-search"></i>
          <i role="button" class="fa fa-times dropdown-input-clear js-dropdown-input-clear"></i>
        </div>
        <div class="dropdown-content"></div>
        <div class="dropdown-loading"><i class="fa fa-spinner fa-spin"></i></div>
      </div>
    </div>
  `,
});