summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/issue/issue_warning.vue
blob: 47f0851f650bd2f7b52425650297c28a256811d9 (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 { GlLink } from '@gitlab/ui';
import _ from 'underscore';
import { __, sprintf } from '~/locale';
import icon from '../../../vue_shared/components/icon.vue';

function buildDocsLinkStart(path) {
  return `<a href="${_.escape(path)}" target="_blank" rel="noopener noreferrer">`;
}

export default {
  components: {
    icon,
    GlLink,
  },
  props: {
    isLocked: {
      type: Boolean,
      default: false,
      required: false,
    },
    isConfidential: {
      type: Boolean,
      default: false,
      required: false,
    },
    lockedIssueDocsPath: {
      type: String,
      required: false,
      default: '',
    },
    confidentialIssueDocsPath: {
      type: String,
      required: false,
      default: '',
    },
  },
  computed: {
    warningIcon() {
      if (this.isConfidential) return 'eye-slash';
      if (this.isLocked) return 'lock';

      return '';
    },
    isLockedAndConfidential() {
      return this.isConfidential && this.isLocked;
    },
    confidentialAndLockedDiscussionText() {
      return sprintf(
        __(
          'This issue is %{confidentialLinkStart}confidential%{linkEnd} and %{lockedLinkStart}locked%{linkEnd}.',
        ),
        {
          confidentialLinkStart: buildDocsLinkStart(this.confidentialIssueDocsPath),
          lockedLinkStart: buildDocsLinkStart(this.lockedIssueDocsPath),
          linkEnd: '</a>',
        },
        false,
      );
    },
  },
};
</script>
<template>
  <div class="issuable-note-warning">
    <icon v-if="!isLockedAndConfidential" :name="warningIcon" :size="16" class="icon inline" />

    <span v-if="isLockedAndConfidential">
      <span v-html="confidentialAndLockedDiscussionText"></span>
      {{
        __("People without permission will never get a notification and won't be able to comment.")
      }}
    </span>

    <span v-else-if="isConfidential">
      {{ __('This is a confidential issue.') }}
      {{ __('People without permission will never get a notification.') }}
      <gl-link :href="confidentialIssueDocsPath" target="_blank">
        {{ __('Learn more') }}
      </gl-link>
    </span>

    <span v-else-if="isLocked">
      {{ __('This issue is locked.') }}
      {{ __('Only project members can comment.') }}
      <gl-link :href="lockedIssueDocsPath" target="_blank">
        {{ __('Learn more') }}
      </gl-link>
    </span>
  </div>
</template>