47 lines
1.4 KiB
Vue
47 lines
1.4 KiB
Vue
<template>
|
|
<div>
|
|
<router-link class="row clickable"
|
|
:to="{ name: 'server-files', params: { path: getClickablePath(directory.name) }}"
|
|
>
|
|
<div class="flex-none icon text-primary-700">
|
|
<Icon name="folder"/>
|
|
</div>
|
|
<div class="flex-1">{{directory.name}}</div>
|
|
<div class="flex-1 text-right text-neutral-600"></div>
|
|
<div class="flex-1 text-right text-neutral-600">{{formatDate(directory.modified)}}</div>
|
|
<div class="flex-none w-1/6"></div>
|
|
</router-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import {formatDate} from "@/helpers";
|
|
import Icon from "@/components/core/Icon.vue";
|
|
|
|
export default Vue.extend({
|
|
name: 'FolderRow',
|
|
components: {Icon},
|
|
|
|
props: {
|
|
directory: {type: Object, required: true},
|
|
},
|
|
|
|
data: function () {
|
|
return {
|
|
currentDirectory: this.$route.params.path || '/',
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
/**
|
|
* Return a formatted directory path that is used to switch to a nested directory.
|
|
*/
|
|
getClickablePath(directory: string): string {
|
|
return `${this.currentDirectory.replace(/\/$/, '')}/${directory}`;
|
|
},
|
|
|
|
formatDate: formatDate,
|
|
},
|
|
});
|
|
</script>
|