summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/components/confidential/edit_form.vue
blob: 6a81235a1a7fa98ae096c1b725a58d5420ac749a (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
<script>
  import editFormButtons from './edit_form_buttons.vue';

  export default {
    components: {
      editFormButtons,
    },
    props: {
      isConfidential: {
        required: true,
        type: Boolean,
      },
      toggleForm: {
        required: true,
        type: Function,
      },
      updateConfidentialAttribute: {
        required: true,
        type: Function,
      },
    },
  };
</script>

<template>
  <div class="dropdown open">
    <div class="dropdown-menu sidebar-item-warning-message">
      <div>
        <p v-if="!isConfidential">
          You are going to turn on the confidentiality. This means that only team members with
          <strong>at least Reporter access</strong>
          are able to see and leave comments on the issue.
        </p>
        <p v-else>
          You are going to turn off the confidentiality. This means
          <strong>everyone</strong>
          will be able to see and leave a comment on this issue.
        </p>
        <edit-form-buttons
          :is-confidential="isConfidential"
          :toggle-form="toggleForm"
          :update-confidential-attribute="updateConfidentialAttribute"
        />
      </div>
    </div>
  </div>
</template>