191 lines
4.3 KiB
Vue
191 lines
4.3 KiB
Vue
<script>
|
|
import FileHeader from '~/vue_shared/components/file_row_header.vue';
|
|
import FileIcon from '~/vue_shared/components/file_icon.vue';
|
|
import { escapeFileUrl } from '~/lib/utils/url_utility';
|
|
|
|
export default {
|
|
name: 'FileRow',
|
|
components: {
|
|
FileHeader,
|
|
FileIcon,
|
|
},
|
|
props: {
|
|
file: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
fileUrl: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
level: {
|
|
type: Number,
|
|
required: true,
|
|
},
|
|
fileClasses: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
},
|
|
computed: {
|
|
isTree() {
|
|
return this.file.type === 'tree';
|
|
},
|
|
isBlob() {
|
|
return this.file.type === 'blob';
|
|
},
|
|
levelIndentation() {
|
|
return {
|
|
marginLeft: this.level ? `${this.level * 16}px` : null,
|
|
};
|
|
},
|
|
fileClass() {
|
|
return {
|
|
'file-open': this.isBlob && this.file.opened,
|
|
'is-active': this.isBlob && this.file.active,
|
|
folder: this.isTree,
|
|
'is-open': this.file.opened,
|
|
};
|
|
},
|
|
textForTitle() {
|
|
// don't output a title if we don't have the expanded path
|
|
return this.file?.tree?.length ? this.file.tree[0].parentPath : false;
|
|
},
|
|
fileRouterUrl() {
|
|
return this.fileUrl || `/project${this.file.url}`;
|
|
},
|
|
},
|
|
watch: {
|
|
'file.active': function fileActiveWatch(active) {
|
|
if (this.file.type === 'blob' && active) {
|
|
this.scrollIntoView();
|
|
}
|
|
},
|
|
},
|
|
mounted() {
|
|
if (this.hasPathAtCurrentRoute()) {
|
|
this.scrollIntoView(true);
|
|
}
|
|
},
|
|
methods: {
|
|
toggleTreeOpen(path) {
|
|
this.$emit('toggleTreeOpen', path);
|
|
},
|
|
clickedFile(path) {
|
|
this.$emit('clickFile', path);
|
|
},
|
|
clickFile() {
|
|
// Manual Action if a tree is selected/opened
|
|
if (this.isTree && this.hasUrlAtCurrentRoute()) {
|
|
this.toggleTreeOpen(this.file.path);
|
|
}
|
|
|
|
if (this.$router && !this.hasUrlAtCurrentRoute()) this.$router.push(this.fileRouterUrl);
|
|
|
|
if (this.isBlob) this.clickedFile(this.file.path);
|
|
},
|
|
scrollIntoView(isInit = false) {
|
|
const block = isInit && this.isTree ? 'center' : 'nearest';
|
|
|
|
this.$el.scrollIntoView({
|
|
behavior: 'smooth',
|
|
block,
|
|
});
|
|
},
|
|
hasPathAtCurrentRoute() {
|
|
if (!this.$router || !this.$router.currentRoute) {
|
|
return false;
|
|
}
|
|
|
|
// - strip route up to "/-/" and ending "/"
|
|
const routePath = this.$router.currentRoute.path
|
|
.replace(/^.*?[/]-[/]/g, '')
|
|
.replace(/[/]$/g, '');
|
|
|
|
// - strip ending "/"
|
|
const filePath = this.file.path.replace(/[/]$/g, '');
|
|
|
|
return filePath === routePath;
|
|
},
|
|
hasUrlAtCurrentRoute() {
|
|
if (!this.$router || !this.$router.currentRoute) return true;
|
|
|
|
return this.$router.currentRoute.path === escapeFileUrl(this.fileRouterUrl);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<file-header v-if="file.isHeader" :path="file.path" />
|
|
<div
|
|
v-else
|
|
:class="fileClass"
|
|
:title="textForTitle"
|
|
:data-level="level"
|
|
class="file-row"
|
|
role="button"
|
|
@click="clickFile"
|
|
@mouseleave="$emit('mouseleave', $event)"
|
|
>
|
|
<div class="file-row-name-container">
|
|
<span
|
|
ref="textOutput"
|
|
:style="levelIndentation"
|
|
class="file-row-name str-truncated"
|
|
data-qa-selector="file_name_content"
|
|
:class="fileClasses"
|
|
>
|
|
<file-icon
|
|
class="file-row-icon"
|
|
:class="{ 'text-secondary': file.type === 'tree' }"
|
|
:file-name="file.name"
|
|
:loading="file.loading"
|
|
:folder="isTree"
|
|
:opened="file.opened"
|
|
:size="16"
|
|
/>
|
|
{{ file.name }}
|
|
</span>
|
|
<slot></slot>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
.file-row {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 32px;
|
|
padding: 4px 8px;
|
|
margin-left: -8px;
|
|
margin-right: -8px;
|
|
border-radius: 3px;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.file-row-name-container {
|
|
display: flex;
|
|
width: 100%;
|
|
align-items: center;
|
|
overflow: visible;
|
|
}
|
|
|
|
.file-row-name {
|
|
display: inline-block;
|
|
flex: 1;
|
|
max-width: inherit;
|
|
height: 19px;
|
|
line-height: 16px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.file-row-name .file-row-icon {
|
|
margin-right: 2px;
|
|
vertical-align: middle;
|
|
}
|
|
</style>
|