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

118 lines
2.7 KiB
Vue
Raw Normal View History

<template>
2022-10-29 05:24:19 +00:00
<div class="top-matter">
<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>
<div class="right-actions">
<NcActions :inline="1">
<NcActionButton
:aria-label="t('memories', 'Share folder')"
@click="$refs.shareModal.open(false)"
close-after-click
>
{{ t("memories", "Share folder") }}
<template #icon> <ShareIcon :size="20" /> </template>
</NcActionButton>
</NcActions>
</div>
<FolderShareModal ref="shareModal" />
</div>
</template>
<script lang="ts">
2022-12-10 10:04:07 +00:00
import { defineComponent } from "vue";
2022-10-14 21:45:23 +00:00
import { TopMatterFolder, TopMatterType } from "../../types";
2022-11-24 19:54:29 +00:00
2022-11-24 21:07:09 +00:00
const NcBreadcrumbs = () =>
import("@nextcloud/vue/dist/Components/NcBreadcrumbs");
const NcBreadcrumb = () =>
import("@nextcloud/vue/dist/Components/NcBreadcrumb");
2022-11-24 19:54:29 +00:00
import NcActions from "@nextcloud/vue/dist/Components/NcActions";
import NcActionButton from "@nextcloud/vue/dist/Components/NcActionButton";
2022-10-29 05:24:19 +00:00
import FolderShareModal from "../modal/FolderShareModal.vue";
2022-10-28 19:08:34 +00:00
import HomeIcon from "vue-material-design-icons/Home.vue";
2022-10-29 05:24:19 +00:00
import ShareIcon from "vue-material-design-icons/ShareVariant.vue";
2022-12-10 10:04:07 +00:00
export default defineComponent({
name: "FolderTopMatter",
2022-10-28 19:08:34 +00:00
components: {
NcBreadcrumbs,
NcBreadcrumb,
2022-10-29 05:24:19 +00:00
NcActions,
NcActionButton,
FolderShareModal,
2022-10-28 19:08:34 +00:00
HomeIcon,
2022-10-29 05:24:19 +00:00
ShareIcon,
2022-10-28 19:08:34 +00:00
},
2022-12-10 10:04:07 +00:00
data() {
return {
topMatter: null as TopMatterFolder | null,
};
},
watch: {
$route: function (from: any, to: any) {
this.createMatter();
},
},
2022-10-28 19:08:34 +00:00
mounted() {
this.createMatter();
2022-12-10 10:04:07 +00:00
},
2022-12-10 10:04:07 +00:00
methods: {
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-12-10 10:04:07 +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("/"),
};
}),
};
} else {
this.topMatter = null;
}
},
},
});
2022-10-29 05:24:19 +00:00
</script>
<style lang="scss" scoped>
.top-matter {
display: flex;
vertical-align: middle;
.right-actions {
margin-right: 40px;
z-index: 50;
@media (max-width: 768px) {
margin-right: 10px;
}
}
}
</style>