summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/sidebar/labels_select/dropdown_create_label.vue
blob: 34a07f33a2373c6cf87c6712fcda9f96dc1e7e31 (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
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
<script>
import { __ } from '~/locale';

export default {
  props: {
    headerTitle: {
      type: String,
      required: false,
      default: () => __('Create new label'),
    },
  },
  created() {
    this.suggestedColors = gon.suggested_label_colors;
  },
};
</script>

<template>
  <div class="dropdown-page-two dropdown-new-label">
    <div class="dropdown-title">
      <button
        type="button"
        class="dropdown-title-button dropdown-menu-back"
        :aria-label="__('Go back')"
      >
        <i
          aria-hidden="true"
          class="fa fa-arrow-left"
          data-hidden="true"
        >
        </i>
      </button>
      {{ headerTitle }}
      <button
        type="button"
        class="dropdown-title-button dropdown-menu-close"
        :aria-label="__('Close')"
      >
        <i
          aria-hidden="true"
          class="fa fa-times dropdown-menu-close-icon"
          data-hidden="true"
        >
        </i>
      </button>
    </div>
    <div class="dropdown-content">
      <div class="dropdown-labels-error js-label-error"></div>
      <input
        id="new_label_name"
        type="text"
        class="default-dropdown-input"
        :placeholder="__('Name new label')"
      />
      <div class="suggest-colors suggest-colors-dropdown">
        <a
          v-for="(color, index) in suggestedColors"
          href="#"
          :key="index"
          :data-color="color"
          :style="{
            backgroundColor: color,
          }"
        >
          &nbsp;
        </a>
      </div>
      <div class="dropdown-label-color-input">
        <div class="dropdown-label-color-preview js-dropdown-label-color-preview"></div>
        <input
          id="new_label_color"
          type="text"
          class="default-dropdown-input"
          :placeholder="__('Assign custom color like #FF0000')"
        />
      </div>
      <div class="clearfix">
        <button
          type="button"
          class="btn btn-primary pull-left js-new-label-btn disabled"
        >
          {{ __('Create') }}
        </button>
        <button
          type="button"
          class="btn btn-default pull-right js-cancel-label-btn"
        >
          {{ __('Cancel') }}
        </button>
      </div>
    </div>
  </div>
</template>