152 lines
4.3 KiB
JavaScript
152 lines
4.3 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';
|
|
import getSlotFillFilter from '/imports/api/creature/creatureProperties/methods/getSlotFillFilter.js'
|
|
import getCreatureLibraryIds from '/imports/api/library/getCreatureLibraryIds.js';
|
|
import { LIBRARY_NODE_TREE_FIELDS } from '/imports/server/publications/library.js';
|
|
import escapeRegex from '/imports/api/utility/escapeRegex.js';
|
|
|
|
Meteor.publish('slotFillers', function (slotId, searchTerm, isDummySlot) {
|
|
if (searchTerm) check(searchTerm, String);
|
|
|
|
let self = this;
|
|
this.autorun(function () {
|
|
let userId = this.userId;
|
|
if (!userId) {
|
|
return [];
|
|
}
|
|
|
|
// Get the slot from the right collection
|
|
let slot;
|
|
if (isDummySlot) {
|
|
slot = LibraryNodes.findOne(slotId);
|
|
} else {
|
|
slot = CreatureProperties.findOne(slotId);
|
|
}
|
|
|
|
if (!slot) return [];
|
|
|
|
// Get all the ids of libraries the user can access
|
|
const creatureId = slot.ancestors[0].id;
|
|
const libraryIds = getCreatureLibraryIds(creatureId, userId);
|
|
const libraries = Libraries.find({
|
|
$or: [
|
|
{ owner: userId },
|
|
{ writers: userId },
|
|
{ readers: userId },
|
|
{ _id: { $in: libraryIds }, public: true },
|
|
]
|
|
}, {
|
|
sort: { name: 1 }
|
|
});
|
|
|
|
// Build a filter for nodes in those libraries that match the slot
|
|
let filter = getSlotFillFilter({ slot, libraryIds });
|
|
this.autorun(function () {
|
|
// Get the limit of the documents the user can fetch
|
|
var limit = self.data('limit') || 50;
|
|
check(limit, Number);
|
|
|
|
let options = undefined;
|
|
if (searchTerm) {
|
|
filter.name = { $regex: escapeRegex(searchTerm), '$options': 'i' };
|
|
//filter.$text = { $search: searchTerm };
|
|
options = {
|
|
// relevant documents have a higher score.
|
|
fields: {
|
|
//_score: { $meta: 'textScore' },
|
|
...LIBRARY_NODE_TREE_FIELDS,
|
|
},
|
|
sort: {
|
|
// `score` property specified in the projection fields above.
|
|
//_score: { $meta: 'textScore' },
|
|
name: 1,
|
|
order: 1,
|
|
}
|
|
}
|
|
} else {
|
|
//delete filter.$text
|
|
delete filter.name
|
|
options = {
|
|
sort: {
|
|
name: 1,
|
|
order: 1,
|
|
},
|
|
fields: LIBRARY_NODE_TREE_FIELDS,
|
|
};
|
|
}
|
|
options.limit = limit;
|
|
|
|
self.autorun(function () {
|
|
self.setData('countAll', LibraryNodes.find(filter).count());
|
|
self.setData('libraryNodeFilter', EJSON.stringify(filter));
|
|
});
|
|
self.autorun(function () {
|
|
return [
|
|
LibraryNodes.find(filter, options),
|
|
libraries
|
|
];
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
Meteor.publish('classFillers', function (classId) {
|
|
let self = this;
|
|
if (!classId) return [];
|
|
|
|
this.autorun(function () {
|
|
let userId = this.userId;
|
|
if (!userId) {
|
|
return [];
|
|
}
|
|
// Get the class
|
|
let classProp = CreatureProperties.findOne(classId);
|
|
if (!classProp) {
|
|
return [];
|
|
}
|
|
|
|
// Get all the ids of libraries the user can access
|
|
const creatureId = classProp.ancestors[0].id;
|
|
const libraryIds = getCreatureLibraryIds(creatureId, userId);
|
|
const libraries = Libraries.find({
|
|
$or: [
|
|
{ owner: userId },
|
|
{ writers: userId },
|
|
{ readers: userId },
|
|
{ _id: { $in: libraryIds }, public: true },
|
|
]
|
|
}, {
|
|
sort: { name: 1 }
|
|
});
|
|
|
|
// Build a filter for nodes in those libraries that match the slot
|
|
let filter = getSlotFillFilter({ slot: classProp, libraryIds });
|
|
|
|
this.autorun(function () {
|
|
// Get the limit of the documents the user can fetch
|
|
var limit = self.data('limit') || 50;
|
|
check(limit, Number);
|
|
|
|
let options = {
|
|
sort: {
|
|
level: 1,
|
|
name: 1,
|
|
order: 1,
|
|
},
|
|
fields: LIBRARY_NODE_TREE_FIELDS,
|
|
limit,
|
|
};
|
|
|
|
self.autorun(function () {
|
|
self.setData('countAll', LibraryNodes.find(filter).count());
|
|
self.setData('libraryNodeFilter', EJSON.stringify(filter));
|
|
});
|
|
self.autorun(function () {
|
|
return [LibraryNodes.find(filter, options), libraries];
|
|
});
|
|
});
|
|
});
|
|
});
|