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

oncall_schedules_list.vue « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff2847624c568de1acfb82f0f0ef35d465e57488 (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, GlLink } from '@gitlab/ui';
import { sprintf, s__ } from '~/locale';

export default {
  components: {
    GlSprintf,
    GlLink,
  },
  props: {
    schedules: {
      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,
          });
    },
    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.',
          );
    },
  },
};
</script>

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

    <ul data-testid="schedules-list">
      <li v-for="(schedule, index) in schedules" :key="`${schedule.name}-${index}`">
        <gl-sprintf
          :message="s__('OnCallSchedules|On-call schedule %{schedule} in Project %{project}')"
        >
          <template #schedule>
            <gl-link :href="schedule.scheduleUrl" target="_blank">{{ schedule.name }}</gl-link>
          </template>
          <template #project>
            <gl-link :href="schedule.projectUrl" target="_blank">{{
              schedule.projectName
            }}</gl-link>
          </template>
        </gl-sprintf>
      </li>
    </ul>

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