summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/issuable/issuable_header_warnings.vue
blob: 56adbe8c606102b63545dcb664bbe31ddb582c16 (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
<script>
import { GlIcon } from '@gitlab/ui';
import { mapGetters } from 'vuex';

export default {
  components: {
    GlIcon,
  },
  computed: {
    ...mapGetters(['getNoteableData']),
    isLocked() {
      return this.getNoteableData.discussion_locked;
    },
    isConfidential() {
      return this.getNoteableData.confidential;
    },
    warningIconsMeta() {
      return [
        {
          iconName: 'lock',
          visible: this.isLocked,
          dataTestId: 'locked',
        },
        {
          iconName: 'eye-slash',
          visible: this.isConfidential,
          dataTestId: 'confidential',
        },
      ];
    },
  },
};
</script>

<template>
  <div class="gl-display-inline-block">
    <template v-for="meta in warningIconsMeta">
      <div v-if="meta.visible" :key="meta.iconName" class="issuable-warning-icon inline">
        <gl-icon :name="meta.iconName" :data-testid="meta.dataTestId" class="icon" />
      </div>
    </template>
  </div>
</template>