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

list.vue « commit_sidebar « components « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 453208f3f19ee767608881667402754d4fdab7ec (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
64
65
66
<script>
  import { mapState } from 'vuex';
  import icon from '~/vue_shared/components/icon.vue';
  import listItem from './list_item.vue';
  import listCollapsed from './list_collapsed.vue';

  export default {
    components: {
      icon,
      listItem,
      listCollapsed,
    },
    props: {
      title: {
        type: String,
        required: true,
      },
      fileList: {
        type: Array,
        required: true,
      },
    },
    computed: {
      ...mapState([
        'currentProjectId',
        'currentBranchId',
        'rightPanelCollapsed',
      ]),
      isCommitInfoShown() {
        return this.rightPanelCollapsed || this.fileList.length;
      },
    },
    methods: {
      toggleCollapsed() {
        this.$emit('toggleCollapsed');
      },
    },
  };
</script>

<template>
  <div
    :class="{
      'multi-file-commit-list': isCommitInfoShown
    }"
  >
    <list-collapsed
      v-if="rightPanelCollapsed"
    />
    <template v-else>
      <ul
        v-if="fileList.length"
        class="list-unstyled append-bottom-0"
      >
        <li
          v-for="file in fileList"
          :key="file.key"
        >
          <list-item
            :file="file"
          />
        </li>
      </ul>
    </template>
  </div>
</template>