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

edit_button.vue « components « diffs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ebf90631d765328ee7c9a5c50250423672127476 (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
<script>
export default {
  props: {
    editPath: {
      type: String,
      required: true,
    },
    currentUser: {
      type: Object,
      required: true,
    },
    canModifyBlob: {
      type: Boolean,
      required: false,
      default: false,
    },
  },
  methods: {
    handleEditClick(evt) {
      if (!this.currentUser || this.canModifyBlob) {
        // if we can Edit, do default Edit button behavior
        return;
      }

      if (this.currentUser.canFork && this.currentUser.canCreateMergeRequest) {
        evt.preventDefault();
        this.$emit('showForkMessage');
      }
    },
  },
};
</script>

<template>
  <a
    :href="editPath"
    class="btn btn-default js-edit-blob"
    @click="handleEditClick"
  >
    Edit
  </a>
</template>