summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/user_deletion_obstacles/user_deletion_obstacles_list.vue
blob: 1eea660d5279ed76f44eb4ffc3773bc155e7e2f7 (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
<script>
import { GlSprintf, GlLink } from '@gitlab/ui';
import { sprintf, s__ } from '~/locale';
import { OBSTACLE_TYPES } from './constants';

const OBSTACLE_TEXT = {
  [OBSTACLE_TYPES.oncallSchedules]: s__(
    'OnCallSchedules|On-call schedule %{obstacle} in Project %{project}',
  ),
  [OBSTACLE_TYPES.escalationPolicies]: s__(
    'EscalationPolicies|Escalation policy %{obstacle} in Project %{project}',
  ),
};

export default {
  components: {
    GlSprintf,
    GlLink,
  },
  props: {
    obstacles: {
      type: Array,
      required: true,
    },
    userName: {
      type: String,
      required: false,
      default: null,
    },
    isCurrentUser: {
      type: Boolean,
      required: false,
      default: false,
    },
  },
  computed: {
    title() {
      return this.isCurrentUser
        ? s__('OnCallSchedules|You are currently a part of:')
        : sprintf(
            s__('OnCallSchedules|User %{name} is currently part of:'),
            {
              name: this.userName,
            },
            false,
          );
    },
    footer() {
      return this.isCurrentUser
        ? s__(
            'OnCallSchedules|Removing yourself may put your on-call team at risk of missing a notification.',
          )
        : s__(
            'OnCallSchedules|Removing this user may put their on-call team at risk of missing a notification.',
          );
    },
  },
  methods: {
    textForObstacle(obstacle) {
      return OBSTACLE_TEXT[obstacle.type];
    },
    urlForObstacle(obstacle) {
      // Fallback to scheduleUrl for backwards compatibility
      return obstacle.url || obstacle.scheduleUrl;
    },
  },
};
</script>

<template>
  <div>
    <p data-testid="title">{{ title }}</p>

    <ul data-testid="obstacles-list">
      <li v-for="(obstacle, index) in obstacles" :key="`${obstacle.name}-${index}`">
        <gl-sprintf :message="textForObstacle(obstacle)">
          <template #obstacle>
            <gl-link :href="urlForObstacle(obstacle)" target="_blank">{{ obstacle.name }}</gl-link>
          </template>
          <template #project>
            <gl-link :href="obstacle.projectUrl" target="_blank">{{
              obstacle.projectName
            }}</gl-link>
          </template>
        </gl-sprintf>
      </li>
    </ul>

    <p data-testid="footer">{{ footer }}</p>
  </div>
</template>