summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/add_context_commits_modal/components/review_tab_container.vue
blob: 36e3449ff27f0afe7b846ea814972f60c8a3490a (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 { GlLoadingIcon, GlAlert } from '@gitlab/ui';
import CommitItem from '~/diffs/components/commit_item.vue';
import { __ } from '~/locale';

export default {
  components: {
    GlLoadingIcon,
    GlAlert,
    CommitItem,
  },
  props: {
    isLoading: {
      type: Boolean,
      required: true,
    },
    loadingError: {
      type: Boolean,
      required: true,
    },
    loadingFailedText: {
      type: String,
      required: true,
    },
    commits: {
      type: Array,
      required: true,
    },
    emptyListText: {
      type: String,
      required: false,
      default: __('No commits present here'),
    },
  },
};
</script>
<template>
  <gl-loading-icon v-if="isLoading" size="lg" class="mt-3" />
  <gl-alert v-else-if="loadingError" variant="danger" :dismissible="false" class="mt-3">
    {{ loadingFailedText }}
  </gl-alert>
  <div v-else-if="commits.length === 0" class="text-center mt-4">
    <span>{{ emptyListText }}</span>
  </div>
  <div v-else>
    <ul class="content-list commit-list flex-list">
      <commit-item
        v-for="(commit, index) in commits"
        :key="commit.id"
        :is-selectable="true"
        :commit="commit"
        :checked="commit.isSelected"
        @handleCheckboxChange="$emit('handleCommitSelect', [index, $event])"
      />
    </ul>
  </div>
</template>