96 lines
2.3 KiB
Vue
96 lines
2.3 KiB
Vue
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import { GlIcon } from '@gitlab/ui';
|
|
import { n__ } from '~/locale';
|
|
import tooltip from '~/vue_shared/directives/tooltip';
|
|
import ChangedFileIcon from '~/vue_shared/components/changed_file_icon.vue';
|
|
import NewDropdown from './new_dropdown/index.vue';
|
|
import MrFileIcon from './mr_file_icon.vue';
|
|
|
|
export default {
|
|
name: 'FileRowExtra',
|
|
directives: {
|
|
tooltip,
|
|
},
|
|
components: {
|
|
GlIcon,
|
|
NewDropdown,
|
|
ChangedFileIcon,
|
|
MrFileIcon,
|
|
},
|
|
props: {
|
|
file: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
dropdownOpen: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'getChangesInFolder',
|
|
'getUnstagedFilesCountForPath',
|
|
'getStagedFilesCountForPath',
|
|
]),
|
|
isTree() {
|
|
return this.file.type === 'tree';
|
|
},
|
|
folderUnstagedCount() {
|
|
return this.getUnstagedFilesCountForPath(this.file.path);
|
|
},
|
|
folderStagedCount() {
|
|
return this.getStagedFilesCountForPath(this.file.path);
|
|
},
|
|
changesCount() {
|
|
return this.getChangesInFolder(this.file.path);
|
|
},
|
|
folderChangesTooltip() {
|
|
if (this.changesCount === 0) return undefined;
|
|
|
|
return n__('%d changed file', '%d changed files', this.changesCount);
|
|
},
|
|
showTreeChangesCount() {
|
|
return this.isTree && this.changesCount > 0 && !this.file.opened;
|
|
},
|
|
isModified() {
|
|
return this.file.changed || this.file.tempFile || this.file.staged || this.file.prevPath;
|
|
},
|
|
showChangedFileIcon() {
|
|
return !this.isTree && this.isModified;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="float-right ide-file-icon-holder">
|
|
<mr-file-icon v-if="file.mrChange" />
|
|
<span v-if="showTreeChangesCount" class="ide-tree-changes">
|
|
{{ changesCount }}
|
|
<gl-icon
|
|
v-tooltip
|
|
:title="folderChangesTooltip"
|
|
:size="12"
|
|
data-container="body"
|
|
data-placement="right"
|
|
name="file-modified"
|
|
class="gl-ml-2 ide-file-modified"
|
|
/>
|
|
</span>
|
|
<changed-file-icon
|
|
v-else-if="showChangedFileIcon"
|
|
:file="file"
|
|
:show-tooltip="true"
|
|
:show-staged-icon="false"
|
|
/>
|
|
<new-dropdown
|
|
:type="file.type"
|
|
:path="file.path"
|
|
:is-open="dropdownOpen"
|
|
class="gl-ml-3"
|
|
v-on="$listeners"
|
|
/>
|
|
</div>
|
|
</template>
|