grapher/lib/query/nodes/collectionNode.js
2016-09-22 12:01:47 +03:00

73 lines
1.8 KiB
JavaScript

import FieldNode from './fieldNode.js';
export default class CollectionNode {
constructor(collection, body, linkName) {
this.linkName = linkName;
this.nodes = [];
this.collection = collection;
this.body = body;
this.props = {};
this.parent = null;
this.linker = null;
}
get collectionNodes() {
return _.filter(this.nodes, n => n instanceof CollectionNode)
}
get fieldNodes() {
return _.filter(this.nodes, n => n instanceof FieldNode);
}
hasGlobalFieldNode() {
return !!_.find(this.fieldNodes, n => n.isGlobal());
}
/**
* @param node
* @param linker
*/
add(node, linker) {
node.parent = this;
node.linker = linker;
this.nodes.push(node);
}
/**
* @param filters
* @param options
*/
applyFields(filters, options) {
let hasAddedAnyField = false;
if (this.hasGlobalFieldNode()) {
return options.fields = undefined;
}
_.each(this.fieldNodes, n => {
hasAddedAnyField = true;
n.applyFields(options.fields)
});
// it will only get here if it has collectionNodes children
_.each(this.collectionNodes, (collectionNode) => {
let linker = collectionNode.linker;
if (linker && !linker.isVirtual()) {
options.fields[linker.linkStorageField] = 1;
hasAddedAnyField = true;
}
});
// if he selected filters, we should automatically add those fields
_.each(filters, (value, field) => {
hasAddedAnyField = true;
options.fields[field] = 1;
});
if (!hasAddedAnyField) {
options.fields = {_id: 1};
}
}
}