summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/components/merge_requests/item.vue
blob: 0c4ea80ba08733bfc207a2f2cd94813a313cf722 (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
<script>
import Icon from '../../../vue_shared/components/icon.vue';
import router from '../../ide_router';

export default {
  components: {
    Icon,
  },
  props: {
    item: {
      type: Object,
      required: true,
    },
    currentId: {
      type: String,
      required: true,
    },
    currentProjectId: {
      type: String,
      required: true,
    },
  },
  computed: {
    isActive() {
      return (
        this.item.iid === parseInt(this.currentId, 10) &&
        this.currentProjectId === this.item.projectPathWithNamespace
      );
    },
    pathWithID() {
      return `${this.item.projectPathWithNamespace}!${this.item.iid}`;
    },
    mergeRequestHref() {
      const path = `/project/${this.item.projectPathWithNamespace}/merge_requests/${this.item.iid}`;

      return router.resolve(path).href;
    },
  },
};
</script>

<template>
  <a
    :href="mergeRequestHref"
    class="btn-link d-flex align-items-center"
  >
    <span class="d-flex append-right-default ide-search-list-current-icon">
      <icon
        v-if="isActive"
        :size="18"
        name="mobile-issue-close"
      />
    </span>
    <span>
      <strong>
        {{ item.title }}
      </strong>
      <span class="ide-merge-request-project-path d-block mt-1">
        {{ pathWithID }}
      </span>
    </span>
  </a>
</template>