Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issuable_form.vue « components « create « issuable « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0758cb507e9570ea737e41fafdda3b3af16a5ee0 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<script>
import { GlForm, GlFormInput, GlFormGroup } from '@gitlab/ui';
import MarkdownField from '~/vue_shared/components/markdown/field.vue';
import { DropdownVariant } from '~/vue_shared/components/sidebar/labels_select_vue/constants';
import LabelsSelect from '~/vue_shared/components/sidebar/labels_select_vue/labels_select_root.vue';

export default {
  LabelSelectVariant: DropdownVariant,
  components: {
    GlForm,
    GlFormInput,
    GlFormGroup,
    MarkdownField,
    LabelsSelect,
  },
  props: {
    descriptionPreviewPath: {
      type: String,
      required: true,
    },
    descriptionHelpPath: {
      type: String,
      required: true,
    },
    labelsFetchPath: {
      type: String,
      required: true,
    },
    labelsManagePath: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      issuableTitle: '',
      issuableDescription: '',
      selectedLabels: [],
    };
  },
  computed: {},
  methods: {
    handleUpdateSelectedLabels(labels) {
      if (labels.length) {
        this.selectedLabels = labels;
      }
    },
  },
};
</script>

<template>
  <gl-form class="common-note-form gfm-form" @submit.stop.prevent>
    <div data-testid="issuable-title" class="form-group row">
      <label for="issuable-title" class="col-form-label col-sm-2">{{ __('Title') }}</label>
      <div class="col-sm-10">
        <gl-form-group :description="__('Maximum of 255 characters')">
          <gl-form-input
            id="issuable-title"
            v-model="issuableTitle"
            maxlength="255"
            :autofocus="true"
            :placeholder="__('Title')"
          />
        </gl-form-group>
      </div>
    </div>
    <div data-testid="issuable-description" class="form-group row">
      <label for="issuable-description" class="col-form-label col-sm-2">{{
        __('Description')
      }}</label>
      <div class="col-sm-10">
        <markdown-field
          :markdown-preview-path="descriptionPreviewPath"
          :markdown-docs-path="descriptionHelpPath"
          :add-spacing-classes="false"
          :show-suggest-popover="true"
          :textarea-value="issuableDescription"
        >
          <template #textarea>
            <textarea
              id="issuable-description"
              ref="textarea"
              v-model="issuableDescription"
              dir="auto"
              class="note-textarea qa-issuable-form-description rspec-issuable-form-description js-gfm-input js-autosize markdown-area"
              :aria-label="__('Description')"
              :placeholder="__('Write a comment or drag your files here…')"
            ></textarea>
          </template>
        </markdown-field>
      </div>
    </div>
    <div class="row">
      <div class="col-lg-6">
        <div data-testid="issuable-labels" class="form-group row">
          <label for="issuable-labels" class="col-form-label col-md-2 col-lg-4">{{
            __('Labels')
          }}</label>
          <div class="col-md-8 col-sm-10">
            <div class="issuable-form-select-holder">
              <labels-select
                :allow-label-edit="true"
                :allow-label-create="true"
                :allow-multiselect="true"
                :allow-scoped-labels="true"
                :labels-fetch-path="labelsFetchPath"
                :labels-manage-path="labelsManagePath"
                :selected-labels="selectedLabels"
                :labels-list-title="__('Select label')"
                :footer-create-label-title="__('Create project label')"
                :footer-manage-label-title="__('Manage project labels')"
                :variant="$options.LabelSelectVariant.Embedded"
                @updateSelectedLabels="handleUpdateSelectedLabels"
              />
            </div>
          </div>
        </div>
      </div>
    </div>
    <div
      data-testid="issuable-create-actions"
      class="footer-block row-content-block gl-display-flex"
    >
      <slot
        name="actions"
        :issuable-title="issuableTitle"
        :issuable-description="issuableDescription"
        :selected-labels="selectedLabels"
      ></slot>
    </div>
  </gl-form>
</template>