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

delete_alert.vue « details_page « components « explorer « registry « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8bdf043a10698991d3ff9f1b4397dd9a3f7da9e1 (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
<script>
import { GlSprintf, GlAlert, GlLink } from '@gitlab/ui';

import { ALERT_MESSAGES, ADMIN_GARBAGE_COLLECTION_TIP } from '../../constants/index';

export default {
  components: {
    GlSprintf,
    GlAlert,
    GlLink,
  },
  model: {
    prop: 'deleteAlertType',
    event: 'change',
  },
  props: {
    deleteAlertType: {
      type: String,
      default: null,
      required: false,
      validator(value) {
        return !value || ALERT_MESSAGES[value] !== undefined;
      },
    },
    garbageCollectionHelpPagePath: { type: String, required: false, default: '' },
    isAdmin: {
      type: Boolean,
      default: false,
      required: false,
    },
  },
  computed: {
    deleteAlertConfig() {
      const config = {
        title: '',
        message: '',
        type: 'success',
      };
      if (this.deleteAlertType) {
        [config.type] = this.deleteAlertType.split('_');

        config.message = ALERT_MESSAGES[this.deleteAlertType];

        if (this.isAdmin && config.type === 'success') {
          config.title = config.message;
          config.message = ADMIN_GARBAGE_COLLECTION_TIP;
        }
      }
      return config;
    },
  },
};
</script>

<template>
  <gl-alert
    v-if="deleteAlertType"
    :variant="deleteAlertConfig.type"
    :title="deleteAlertConfig.title"
    @dismiss="$emit('change', null)"
  >
    <gl-sprintf :message="deleteAlertConfig.message">
      <template #docLink="{content}">
        <gl-link :href="garbageCollectionHelpPagePath" target="_blank">
          {{ content }}
        </gl-link>
      </template>
    </gl-sprintf>
  </gl-alert>
</template>