123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- // Filtered view manager
- // We define local filter objects for each different type of field (SetFilter,
- // RangeFilter, dateFilter, etc.). We then define a global `Filter` object whose
- // goal is to filter complete documents by using the local filters for each
- // fields.
- function showFilterSidebar() {
- Sidebar.setView('filter');
- }
- // Use a "set" filter for a field that is a set of documents uniquely
- // identified. For instance `{ labels: ['labelA', 'labelC', 'labelD'] }`.
- // use "subField" for searching inside object Fields.
- // For instance '{ 'customFields._id': ['field1','field2']} (subField would be: _id)
- class SetFilter {
- constructor(subField = '') {
- this._dep = new Tracker.Dependency();
- this._selectedElements = [];
- this.subField = subField;
- }
- isSelected(val) {
- this._dep.depend();
- return this._selectedElements.indexOf(val) > -1;
- }
- add(val) {
- if (this._indexOfVal(val) === -1) {
- this._selectedElements.push(val);
- this._dep.changed();
- showFilterSidebar();
- }
- }
- remove(val) {
- const indexOfVal = this._indexOfVal(val);
- if (this._indexOfVal(val) !== -1) {
- this._selectedElements.splice(indexOfVal, 1);
- this._dep.changed();
- }
- }
- toggle(val) {
- if (this._indexOfVal(val) === -1) {
- this.add(val);
- } else {
- this.remove(val);
- }
- }
- reset() {
- this._selectedElements = [];
- this._dep.changed();
- }
- _indexOfVal(val) {
- return this._selectedElements.indexOf(val);
- }
- _isActive() {
- this._dep.depend();
- return this._selectedElements.length !== 0;
- }
- _getMongoSelector() {
- this._dep.depend();
- return { $in: this._selectedElements };
- }
- _getEmptySelector() {
- this._dep.depend();
- let includeEmpty = false;
- this._selectedElements.forEach((el) => {
- if (el === undefined) {
- includeEmpty = true;
- }
- });
- return includeEmpty ? { $eq: [] } : null;
- }
- }
- // Advanced filter forms a MongoSelector from a users String.
- // Build by: Ignatz 19.05.2018 (github feuerball11)
- class AdvancedFilter {
- constructor() {
- this._dep = new Tracker.Dependency();
- this._filter = '';
- }
- set(str)
- {
- this._filter = str;
- this._dep.changed();
- }
- reset() {
- this._filter = '';
- this._dep.changed();
- }
- _isActive() {
- this._dep.depend();
- return this._filter !== '';
- }
- _filterToCommands(){
- const commands = [];
- let current = '';
- let string = false;
- let ignore = false;
- for (let i = 0; i < this._filter.length; i++)
- {
- const char = this._filter.charAt(i);
- if (ignore)
- {
- ignore = false;
- continue;
- }
- if (char === '\'')
- {
- string = true;
- continue;
- }
- if (char === '\\')
- {
- ignore = true;
- continue;
- }
- if (char === ' ' && !string)
- {
- commands.push({'cmd':current, string});
- string = false;
- current = '';
- continue;
- }
- current += char;
- }
- if (current !== '')
- {
- commands.push(current);
- }
- return commands;
- }
- _arrayToSelector(commands)
- {
- try {
- //let changed = false;
- for (let i = 0; i < commands.length; i++)
- {
- if (!commands[i].string && commands[i].cmd)
- {
- switch (commands[i].cmd)
- {
- case '=':
- case '==':
- case '===':
- {
- const field = commands[i-1].cmd;
- const str = commands[i+1].cmd;
- commands[i] = {}[field]=str;
- commands.splice(i-1, 1);
- commands.splice(i, 1);
- //changed = true;
- i--;
- break;
- }
- }
- }
- }
- }
- catch (e){return { $in: [] };}
- return {$or: commands};
- }
- _getMongoSelector() {
- this._dep.depend();
- const commands = this._filterToCommands();
- return this._arrayToSelector(commands);
- }
- }
- // The global Filter object.
- // XXX It would be possible to re-write this object more elegantly, and removing
- // the need to provide a list of `_fields`. We also should move methods into the
- // object prototype.
- Filter = {
- // XXX I would like to rename this field into `labels` to be consistent with
- // the rest of the schema, but we need to set some migrations architecture
- // before changing the schema.
- labelIds: new SetFilter(),
- members: new SetFilter(),
- customFields: new SetFilter('_id'),
- advanced: new AdvancedFilter(),
- _fields: ['labelIds', 'members', 'customFields'],
- // We don't filter cards that have been added after the last filter change. To
- // implement this we keep the id of these cards in this `_exceptions` fields
- // and use a `$or` condition in the mongo selector we return.
- _exceptions: [],
- _exceptionsDep: new Tracker.Dependency(),
- isActive() {
- return _.any(this._fields, (fieldName) => {
- return this[fieldName]._isActive();
- });
- },
- _getMongoSelector() {
- if (!this.isActive())
- return {};
- const filterSelector = {};
- const emptySelector = {};
- let includeEmptySelectors = false;
- this._fields.forEach((fieldName) => {
- const filter = this[fieldName];
- if (filter._isActive()) {
- if (filter.subField !== '')
- {
- filterSelector[`${fieldName}.${filter.subField}`] = filter._getMongoSelector();
- }
- else
- {
- filterSelector[fieldName] = filter._getMongoSelector();
- }
- emptySelector[fieldName] = filter._getEmptySelector();
- if (emptySelector[fieldName] !== null) {
- includeEmptySelectors = true;
- }
- }
- });
- const exceptionsSelector = {_id: {$in: this._exceptions}};
- this._exceptionsDep.depend();
- console.log(this.advanced._getMongoSelector());
- if (includeEmptySelectors)
- return {
- $or: [filterSelector, exceptionsSelector, this.advanced._getMongoSelector(), emptySelector],
- };
- else
- return {
- $or: [filterSelector, exceptionsSelector, this.advanced._getMongoSelector()],
- };
- },
- mongoSelector(additionalSelector) {
- const filterSelector = this._getMongoSelector();
- if (_.isUndefined(additionalSelector))
- return filterSelector;
- else
- return {$and: [filterSelector, additionalSelector]};
- },
- reset() {
- this._fields.forEach((fieldName) => {
- const filter = this[fieldName];
- filter.reset();
- });
- this.resetExceptions();
- },
- addException(_id) {
- if (this.isActive()) {
- this._exceptions.push(_id);
- this._exceptionsDep.changed();
- Tracker.flush();
- }
- },
- resetExceptions() {
- this._exceptions = [];
- this._exceptionsDep.changed();
- },
- };
- Blaze.registerHelper('Filter', Filter);
|