93 lines
2.5 KiB
JavaScript
93 lines
2.5 KiB
JavaScript
import { check } from 'meteor/check';
|
|
import Libraries from '/imports/api/library/Libraries.js';
|
|
import LibraryNodes from '/imports/api/library/LibraryNodes.js';
|
|
import CreatureProperties from '/imports/api/creature/creatureProperties/CreatureProperties.js';
|
|
|
|
Meteor.publish('slotFillers', function(slotId){
|
|
let self = this;
|
|
this.autorun(function (){
|
|
let userId = this.userId;
|
|
if (!userId) {
|
|
return [];
|
|
}
|
|
// Get the slot
|
|
let slot = CreatureProperties.findOne(slotId);
|
|
if (!slot){
|
|
return [];
|
|
}
|
|
|
|
// Get all the ids of libraries the user can access
|
|
const user = Meteor.users.findOne(userId, {
|
|
fields: {subscribedLibraries: 1}
|
|
});
|
|
const subs = user && user.subscribedLibraries || [];
|
|
let libraryIds = Libraries.find({
|
|
$or: [
|
|
{owner: this.userId},
|
|
{writers: this.userId},
|
|
{readers: this.userId},
|
|
{_id: {$in: subs}},
|
|
]
|
|
}, {
|
|
fields: {_id: 1},
|
|
}).map(lib => lib._id);
|
|
|
|
// Build a filter for nodes in those libraries that match the slot
|
|
let filter = {
|
|
'ancestors.id': {$in: libraryIds},
|
|
removed: {$ne: true},
|
|
};
|
|
if (slot.slotTags && slot.slotTags.length){
|
|
filter.tags = {$all: slot.slotTags};
|
|
}
|
|
if (slot.slotType){
|
|
filter.$or = [{
|
|
type: slot.slotType
|
|
},{
|
|
type: 'slotFiller',
|
|
slotFillerType: slot.slotType,
|
|
}];
|
|
}
|
|
this.autorun(function(){
|
|
// Get the limit of the documents the user can fetch
|
|
var limit = self.data('limit') || 20;
|
|
check(limit, Number);
|
|
|
|
// Get the search term
|
|
let searchTerm = self.data('searchTerm') || '';
|
|
check(searchTerm, String);
|
|
|
|
let options = undefined;
|
|
if (searchTerm){
|
|
filter.$text = {$search: searchTerm};
|
|
options = {
|
|
// relevant documents have a higher score.
|
|
fields: {
|
|
score: { $meta: 'textScore' }
|
|
},
|
|
sort: {
|
|
// `score` property specified in the projection fields above.
|
|
score: { $meta: 'textScore' },
|
|
name: 1,
|
|
order: 1,
|
|
}
|
|
}
|
|
} else {
|
|
delete filter.$text
|
|
options = {sort: {
|
|
name: 1,
|
|
order: 1,
|
|
}};
|
|
}
|
|
options.limit = limit;
|
|
|
|
self.autorun(function () {
|
|
self.setData('countAll', LibraryNodes.find(filter).count());
|
|
});
|
|
self.autorun(function () {
|
|
return LibraryNodes.find(filter, options);
|
|
});
|
|
});
|
|
});
|
|
});
|