memories/src/components/top-matter/FolderTopMatter.vue

66 lines
1.6 KiB
Vue
Raw Normal View History

<template>
2022-10-28 19:08:34 +00:00
<NcBreadcrumbs v-if="topMatter">
<NcBreadcrumb title="Home" :to="{ name: 'folders' }">
<template #icon>
<HomeIcon :size="20" />
</template>
</NcBreadcrumb>
<NcBreadcrumb
v-for="folder in topMatter.list"
:key="folder.path"
:title="folder.text"
:to="{ name: 'folders', params: { path: folder.path } }"
/>
</NcBreadcrumbs>
</template>
<script lang="ts">
2022-10-28 19:08:34 +00:00
import { Component, Mixins, Watch } from "vue-property-decorator";
2022-10-14 21:45:23 +00:00
import { TopMatterFolder, TopMatterType } from "../../types";
2022-10-28 19:08:34 +00:00
import { NcBreadcrumbs, NcBreadcrumb } from "@nextcloud/vue";
import GlobalMixin from "../../mixins/GlobalMixin";
import HomeIcon from "vue-material-design-icons/Home.vue";
@Component({
2022-10-28 19:08:34 +00:00
components: {
NcBreadcrumbs,
NcBreadcrumb,
HomeIcon,
},
})
export default class FolderTopMatter extends Mixins(GlobalMixin) {
2022-10-28 19:08:34 +00:00
private topMatter?: TopMatterFolder = null;
2022-10-28 19:08:34 +00:00
@Watch("$route")
async routeChange(from: any, to: any) {
this.createMatter();
}
2022-10-28 19:08:34 +00:00
mounted() {
this.createMatter();
}
2022-10-28 19:08:34 +00:00
createMatter() {
if (this.$route.name === "folders") {
let path: any = this.$route.params.path || "";
if (typeof path === "string") {
path = path.split("/");
}
2022-10-08 06:35:09 +00:00
2022-10-28 19:08:34 +00:00
this.topMatter = {
type: TopMatterType.FOLDER,
list: path
.filter((x) => x)
.map((x, idx, arr) => {
return {
text: x,
path: arr.slice(0, idx + 1).join("/"),
};
2022-10-28 19:08:34 +00:00
}),
};
} else {
this.topMatter = null;
}
2022-10-28 19:08:34 +00:00
}
}
</script>