summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/feature_flags/components/empty_state.vue
blob: a6de4972bb1279f8a719772665d4361efd14f6a7 (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
<script>
import { GlAlert, GlEmptyState, GlLink, GlLoadingIcon } from '@gitlab/ui';

export default {
  components: { GlAlert, GlEmptyState, GlLink, GlLoadingIcon },
  inject: ['errorStateSvgPath', 'featureFlagsHelpPagePath'],
  props: {
    count: {
      required: false,
      type: Number,
      default: null,
    },
    alerts: {
      required: true,
      type: Array,
    },
    isLoading: {
      required: true,
      type: Boolean,
    },
    loadingLabel: {
      required: true,
      type: String,
    },
    errorState: {
      required: true,
      type: Boolean,
    },
    errorTitle: {
      required: true,
      type: String,
    },
    emptyState: {
      required: true,
      type: Boolean,
    },
    emptyTitle: {
      required: true,
      type: String,
    },
    emptyDescription: {
      required: true,
      type: String,
    },
  },
  computed: {
    itemCount() {
      return this.count ?? 0;
    },
  },
  methods: {
    clearAlert(index) {
      this.$emit('dismissAlert', index);
    },
  },
};
</script>
<template>
  <div>
    <gl-alert
      v-for="(message, index) in alerts"
      :key="index"
      data-testid="serverErrors"
      variant="danger"
      @dismiss="clearAlert(index)"
    >
      {{ message }}
    </gl-alert>

    <gl-loading-icon v-if="isLoading" :label="loadingLabel" size="md" class="gl-mt-4" />

    <gl-empty-state
      v-else-if="errorState"
      :title="errorTitle"
      :description="s__('FeatureFlags|Try again in a few moments or contact your support team.')"
      :svg-path="errorStateSvgPath"
      data-testid="error-state"
    />

    <gl-empty-state
      v-else-if="emptyState"
      :title="emptyTitle"
      :svg-path="errorStateSvgPath"
      data-testid="empty-state"
    >
      <template #description>
        {{ emptyDescription }}
        <gl-link :href="featureFlagsHelpPagePath" target="_blank">
          {{ s__('FeatureFlags|More information') }}
        </gl-link>
      </template>
    </gl-empty-state>
    <slot v-else> </slot>
  </div>
</template>