summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/diffs/components/compare_dropdown_layout.vue
blob: 2c249f710910f2b454041a13374f4710ad6f0395 (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
<script>
import { GlDropdown, GlDropdownItem } from '@gitlab/ui';
import TimeAgo from '~/vue_shared/components/time_ago_tooltip.vue';

export default {
  components: {
    GlDropdown,
    GlDropdownItem,
    TimeAgo,
  },
  props: {
    versions: {
      type: Array,
      required: true,
    },
  },
  computed: {
    selectedVersionName() {
      return this.versions.find((x) => x.selected)?.versionName || '';
    },
  },
};
</script>

<template>
  <gl-dropdown :text="selectedVersionName" data-qa-selector="dropdown_content">
    <gl-dropdown-item
      v-for="version in versions"
      :key="version.id"
      :class="{
        'is-active': version.selected,
      }"
      :is-check-item="true"
      :is-checked="version.selected"
      :href="version.href"
    >
      <div>
        <strong>
          {{ version.versionName }}
          <template v-if="version.isHead">{{ s__('DiffsCompareBaseBranch|(HEAD)') }}</template>
          <template v-else-if="version.isBase">{{ s__('DiffsCompareBaseBranch|(base)') }}</template>
        </strong>
      </div>
      <div>
        <small class="commit-sha"> {{ version.short_commit_sha }} </small>
      </div>
      <div>
        <small>
          <template v-if="version.commitsText">
            {{ version.commitsText }}
          </template>
          <time-ago v-if="version.created_at" :time="version.created_at" class="js-timeago" />
        </small>
      </div>
    </gl-dropdown-item>
  </gl-dropdown>
</template>