92 lines
2.1 KiB
Vue
92 lines
2.1 KiB
Vue
<script>
|
|
import { GlBadge } from '@gitlab/ui';
|
|
import { visitUrl } from '~/lib/utils/url_utility';
|
|
import { getIconName } from '../../utils/icon';
|
|
import getRefMixin from '../../mixins/get_ref';
|
|
|
|
export default {
|
|
components: {
|
|
GlBadge,
|
|
},
|
|
mixins: [getRefMixin],
|
|
props: {
|
|
id: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
currentPath: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
path: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
type: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
url: {
|
|
type: String,
|
|
required: false,
|
|
default: null,
|
|
},
|
|
lfsOid: {
|
|
type: String,
|
|
required: false,
|
|
default: null,
|
|
},
|
|
},
|
|
computed: {
|
|
routerLinkTo() {
|
|
return this.isFolder ? { path: `/tree/${this.ref}/${this.path}` } : null;
|
|
},
|
|
iconName() {
|
|
return `fa-${getIconName(this.type, this.path)}`;
|
|
},
|
|
isFolder() {
|
|
return this.type === 'tree';
|
|
},
|
|
isSubmodule() {
|
|
return this.type === 'commit';
|
|
},
|
|
linkComponent() {
|
|
return this.isFolder ? 'router-link' : 'a';
|
|
},
|
|
fullPath() {
|
|
return this.path.replace(new RegExp(`^${this.currentPath}/`), '');
|
|
},
|
|
shortSha() {
|
|
return this.id.slice(0, 8);
|
|
},
|
|
},
|
|
methods: {
|
|
openRow() {
|
|
if (this.isFolder) {
|
|
this.$router.push(this.routerLinkTo);
|
|
} else {
|
|
visitUrl(this.url);
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<tr v-once :class="`file_${id}`" class="tree-item" @click="openRow">
|
|
<td class="tree-item-file-name">
|
|
<i :aria-label="type" role="img" :class="iconName" class="fa fa-fw"></i>
|
|
<component :is="linkComponent" :to="routerLinkTo" :href="url" class="str-truncated">
|
|
{{ fullPath }}
|
|
</component>
|
|
<gl-badge v-if="lfsOid" variant="default" class="label-lfs ml-1">
|
|
LFS
|
|
</gl-badge>
|
|
<template v-if="isSubmodule">
|
|
@ <a href="#" class="commit-sha">{{ shortSha }}</a>
|
|
</template>
|
|
</td>
|
|
<td class="d-none d-sm-table-cell tree-commit"></td>
|
|
<td class="tree-time-ago text-right"></td>
|
|
</tr>
|
|
</template>
|