summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_editor/components/header/validation_segment.vue
blob: 541ab74b1770ba2bcf35ae48adb72e7b25c21d4e (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
<script>
import { GlIcon, GlLink, GlLoadingIcon } from '@gitlab/ui';
import { __, s__, sprintf } from '~/locale';
import TooltipOnTruncate from '~/vue_shared/components/tooltip_on_truncate.vue';
import { CI_CONFIG_STATUS_VALID } from '../../constants';

export const i18n = {
  empty: __(
    "We'll continuously validate your pipeline configuration. The validation results will appear here.",
  ),
  learnMore: __('Learn more'),
  loading: s__('Pipelines|Validating GitLab CI configuration…'),
  invalid: s__('Pipelines|This GitLab CI configuration is invalid.'),
  invalidWithReason: s__('Pipelines|This GitLab CI configuration is invalid: %{reason}.'),
  valid: s__('Pipelines|This GitLab CI configuration is valid.'),
};

export default {
  i18n,
  components: {
    GlIcon,
    GlLink,
    GlLoadingIcon,
    TooltipOnTruncate,
  },
  inject: {
    ymlHelpPagePath: {
      default: '',
    },
  },
  props: {
    ciFileContent: {
      type: String,
      required: true,
    },
    ciConfig: {
      type: Object,
      required: false,
      default: () => ({}),
    },
    loading: {
      type: Boolean,
      required: false,
      default: false,
    },
  },
  computed: {
    isEmpty() {
      return !this.ciFileContent;
    },
    isValid() {
      return this.ciConfig?.status === CI_CONFIG_STATUS_VALID;
    },
    icon() {
      if (this.isValid || this.isEmpty) {
        return 'check';
      }
      return 'warning-solid';
    },
    message() {
      if (this.isEmpty) {
        return this.$options.i18n.empty;
      } else if (this.isValid) {
        return this.$options.i18n.valid;
      }

      // Only display first error as a reason
      const [reason] = this.ciConfig?.errors || [];
      if (reason) {
        return sprintf(this.$options.i18n.invalidWithReason, { reason }, false);
      }
      return this.$options.i18n.invalid;
    },
  },
};
</script>

<template>
  <div>
    <template v-if="loading">
      <gl-loading-icon inline />
      {{ $options.i18n.loading }}
    </template>

    <span v-else class="gl-display-inline-flex gl-white-space-nowrap gl-max-w-full">
      <tooltip-on-truncate :title="message" class="gl-text-truncate">
        <gl-icon :name="icon" /> <span data-testid="validationMsg">{{ message }}</span>
      </tooltip-on-truncate>
      <span v-if="!isEmpty" class="gl-flex-shrink-0 gl-pl-2">
        <gl-link data-testid="learnMoreLink" :href="ymlHelpPagePath">
          {{ $options.i18n.learnMore }}
        </gl-link>
      </span>
    </span>
  </div>
</template>