summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages_and_registries/settings/project/components/expiration_input.vue
blob: 3fbbfd75ffb2c05713136b5b8c3a1bab3d247026 (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
<script>
import { GlFormGroup, GlFormInput, GlSprintf, GlLink } from '@gitlab/ui';
import {
  NAME_REGEX_LENGTH,
  TEXT_AREA_INVALID_FEEDBACK,
} from '~/packages_and_registries/settings/project/constants';

export default {
  components: {
    GlFormGroup,
    GlFormInput,
    GlSprintf,
    GlLink,
  },
  inject: ['tagsRegexHelpPagePath'],
  props: {
    error: {
      type: String,
      required: false,
      default: '',
    },
    disabled: {
      type: Boolean,
      required: false,
      default: false,
    },
    value: {
      type: String,
      required: false,
      default: '',
    },
    name: {
      type: String,
      required: true,
    },
    label: {
      type: String,
      required: true,
    },
    placeholder: {
      type: String,
      required: false,
      default: '',
    },
    description: {
      type: String,
      required: true,
    },
  },
  computed: {
    textAreaLengthErrorMessage() {
      return this.isInputValid(this.value) ? '' : TEXT_AREA_INVALID_FEEDBACK;
    },
    inputValidation() {
      const nameRegexErrors = this.error || this.textAreaLengthErrorMessage;
      return {
        state: nameRegexErrors === null ? null : !nameRegexErrors,
        message: nameRegexErrors,
      };
    },
    internalValue: {
      get() {
        return this.value;
      },
      set(value) {
        this.$emit('input', value);
        this.$emit('validation', this.isInputValid(value));
      },
    },
  },
  methods: {
    isInputValid(value) {
      return !value || value.length <= NAME_REGEX_LENGTH;
    },
  },
};
</script>

<template>
  <gl-form-group
    :id="`${name}-form-group`"
    :label-for="name"
    :state="inputValidation.state"
    :invalid-feedback="inputValidation.message"
  >
    <template #label>
      <span data-testid="label">
        <gl-sprintf :message="label">
          <template #italic="{ content }">
            <i>{{ content }}</i>
          </template>
        </gl-sprintf>
      </span>
    </template>
    <gl-form-input
      :id="name"
      v-model="internalValue"
      :placeholder="placeholder"
      :state="inputValidation.state"
      :disabled="disabled"
      trim
    />
    <template #description>
      <span data-testid="description" class="gl-text-gray-400">
        <gl-sprintf :message="description">
          <template #link="{ content }">
            <gl-link :href="tagsRegexHelpPagePath">{{ content }}</gl-link>
          </template>
        </gl-sprintf>
      </span>
    </template>
  </gl-form-group>
</template>