82 lines
1.7 KiB
Vue
82 lines
1.7 KiB
Vue
<template lang="html">
|
|
<tree-node-list
|
|
|
|
:children="libraryChildren"
|
|
:group="library && library._id"
|
|
:organize="organizeMode"
|
|
:selected-node-id="selectedNodeId"
|
|
@selected="e => $emit('selected', e)"
|
|
@reordered="reordered"
|
|
@reorganized="reorganized"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import Libraries from '/imports/api/library/Libraries.js';
|
|
import LibraryNodes from '/imports/api/library/LibraryNodes.js';
|
|
import { nodesToTree } from '/imports/api/parenting/parenting.js'
|
|
import TreeNodeList from '/imports/ui/components/tree/TreeNodeList.vue';
|
|
import { organizeDoc, reorderDoc } from '/imports/api/parenting/organizeMethods.js';
|
|
|
|
export default {
|
|
components: {
|
|
TreeNodeList,
|
|
},
|
|
props: {
|
|
libraryId: String,
|
|
organizeMode: Boolean,
|
|
selectedNodeId: String,
|
|
},
|
|
meteor: {
|
|
$subscribe: {
|
|
'library'(){
|
|
return [this.libraryId]
|
|
},
|
|
},
|
|
library(){
|
|
return Libraries.findOne(this.libraryId);
|
|
},
|
|
libraryChildren(){
|
|
if (!this.library) return;
|
|
return nodesToTree({collection: LibraryNodes, ancestorId: this.library._id});
|
|
},
|
|
},
|
|
methods: {
|
|
reordered({doc, newIndex}){
|
|
reorderDoc.call({
|
|
docRef: {
|
|
id: doc._id,
|
|
collection: 'libraryNodes',
|
|
},
|
|
order: newIndex,
|
|
});
|
|
},
|
|
reorganized({doc, parent, newIndex}){
|
|
let parentRef;
|
|
if (parent){
|
|
parentRef = {
|
|
id: parent._id,
|
|
collection: 'libraryNodes',
|
|
};
|
|
} else {
|
|
parentRef = {
|
|
id: this.libraryId,
|
|
collection: 'libraries',
|
|
};
|
|
}
|
|
organizeDoc.call({
|
|
docRef: {
|
|
id: doc._id,
|
|
collection: 'libraryNodes',
|
|
},
|
|
parentRef,
|
|
order: newIndex,
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="css" scoped>
|
|
</style>
|