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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/registry/settings/components/expiration_input.vue')
-rw-r--r--app/assets/javascripts/registry/settings/components/expiration_input.vue110
1 files changed, 0 insertions, 110 deletions
diff --git a/app/assets/javascripts/registry/settings/components/expiration_input.vue b/app/assets/javascripts/registry/settings/components/expiration_input.vue
deleted file mode 100644
index 42b7c7918a5..00000000000
--- a/app/assets/javascripts/registry/settings/components/expiration_input.vue
+++ /dev/null
@@ -1,110 +0,0 @@
-<script>
-import { GlFormGroup, GlFormInput, GlSprintf, GlLink } from '@gitlab/ui';
-import { NAME_REGEX_LENGTH, TEXT_AREA_INVALID_FEEDBACK } from '../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" target="_blank">{{ content }}</gl-link>
- </template>
- </gl-sprintf>
- </span>
- </template>
- </gl-form-group>
-</template>