| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800 | import { ReactiveCache } from '/imports/reactiveCache';import moment from 'moment/min/moment-with-locales';// 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');}class DateFilter {  constructor() {    this._dep = new Tracker.Dependency();    this.subField = ''; // Prevent name mangling in Filter    this._filter = null;    this._filterState = null;  }  _updateState(state) {    this._filterState = state;    showFilterSidebar();    this._dep.changed();  }  // past builds a filter for all dates before now  past() {    if (this._filterState == 'past') {      this.reset();      return;    }    this._filter = { $lte: moment().toDate() };    this._updateState('past');  }  // today is a convenience method for calling relativeDay with 0  today() {    if (this._filterState == 'today') {      this.reset();      return;    }    this.relativeDay(0);    this._updateState('today');  }  // tomorrow is a convenience method for calling relativeDay with 1  tomorrow() {    if (this._filterState == 'tomorrow') {      this.reset();      return;    }    this.relativeDay(1);    this._updateState('tomorrow');  }  // thisWeek is a convenience method for calling relativeWeek with 1  thisWeek() {    this.relativeWeek(1, 'this')  }  // nextWeek is a convenience method for calling relativeWeek with 1  nextWeek() {    this.relativeWeek(1, 'next')  }  // relativeDay builds a filter starting from now and including all  // days up to today +/- offset.  relativeDay(offset) {    if (this._filterState == 'day') {      this.reset();      return;    }    var startDay = moment()        .startOf('day')        .toDate(),      endDay = moment()        .endOf('day')        .add(offset, 'day')        .toDate();    if (offset >= 0) {      this._filter = { $gte: startDay, $lte: endDay };    } else {      this._filter = { $lte: startDay, $gte: endDay };    }    this._updateState('day');  }  // relativeWeek builds a filter starting from today (for this week)  // or 7 days after (for next week) and including all  // weeks up to today +/- offset. This considers the user's preferred  // start of week day (as defined by Meteor).  relativeWeek(offset, week) {    if (this._filterState == 'thisweek') {      this.reset();      return;    }    if (this._filterState == 'nextweek') {      this.reset();      return;    }    // getStartDayOfWeek returns the offset from Sunday of the user's    // preferred starting day of the week. This date should be added    // to the moment start of week to get the real start of week date.    // The default is 1, meaning Monday.    const currentUser = ReactiveCache.getCurrentUser();    const weekStartDay = currentUser ? currentUser.getStartDayOfWeek() : 1;    if (week === 'this') {      // Moments are mutable so they must be cloned before modification      var WeekStart = moment()        .startOf('day')        .startOf('week')        .add(weekStartDay, 'days');      var WeekEnd = WeekStart        .clone()        .add(6, 'days')        .endOf('day');      this._updateState('thisweek');    } else if (week === 'next') {      // Moments are mutable so they must be cloned before modification      var WeekStart = moment()        .startOf('day')        .startOf('week')        .add(weekStartDay + 7, 'days');      var WeekEnd = WeekStart        .clone()        .add(6, 'days')        .endOf('day');     this._updateState('nextweek');    }    var startDate = WeekStart.toDate();    var endDate = WeekEnd.toDate();    if (offset >= 0) {      this._filter = { $gte: startDate, $lte: endDate };    } else {      this._filter = { $lte: startDate, $gte: endDate };    }  }  // noDate builds a filter for items where date is not set  noDate() {    if (this._filterState == 'noDate') {      this.reset();      return;    }    this._filter = null;    this._updateState('noDate');  }  reset() {    this._filter = null;    this._filterState = null;    this._dep.changed();  }  isSelected(val) {    this._dep.depend();    return this._filterState == val;  }  _isActive() {    this._dep.depend();    return this._filterState !== null;  }  _getMongoSelector() {    this._dep.depend();    return this._filter;  }  _getEmptySelector() {    this._dep.depend();    return null;  }}class StringFilter {  constructor() {    this._dep = new Tracker.Dependency();    this.subField = ''; // Prevent name mangling in Filter    this._filter = '';  }  set(str) {    this._filter = str;    this._dep.changed();  }  reset() {    this._filter = '';    this._dep.changed();  }  _isActive() {    this._dep.depend();    return this._filter !== '';  }  _getMongoSelector() {    this._dep.depend();    return {$regex : this._filter, $options: 'i'};  }  _getEmptySelector() {    this._dep.depend();    return {$regex : this._filter, $options: 'i'};  }}// 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();    }  }  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 = '';    this._lastValide = {};  }  set(str) {    this._filter = str;    this._dep.changed();  }  reset() {    this._filter = '';    this._lastValide = {};    this._dep.changed();  }  _isActive() {    this._dep.depend();    return this._filter !== '';  }  _filterToCommands() {    const commands = [];    let current = '';    let string = false;    let regex = false;    let wasString = false;    let ignore = false;    for (let i = 0; i < this._filter.length; i++) {      const char = this._filter.charAt(i);      if (ignore) {        ignore = false;        current += char;        continue;      }      if (char === '/') {        string = !string;        if (string) regex = true;        current += char;        continue;      }      // eslint-disable-next-line quotes      if (char === "'") {        string = !string;        if (string) wasString = true;        continue;      }      if (char === '\\' && !string) {        ignore = true;        continue;      }      if (char === ' ' && !string) {        commands.push({          cmd: current,          string: wasString,          regex,        });        wasString = false;        current = '';        continue;      }      current += char;    }    if (current !== '') {      commands.push({        cmd: current,        string: wasString,        regex,      });    }    return commands;  }  _fieldNameToId(field) {    const found = ReactiveCache.getCustomField({      name: field,    });    return found._id;  }  _fieldValueToId(field, value) {    const found = ReactiveCache.getCustomField({      name: field,    });    if (      found.settings.dropdownItems &&      found.settings.dropdownItems.length > 0    ) {      for (let i = 0; i < found.settings.dropdownItems.length; i++) {        if (found.settings.dropdownItems[i].name === value) {          return found.settings.dropdownItems[i]._id;        }      }    }    return value;  }  _arrayToSelector(commands) {    try {      //let changed = false;      this._processSubCommands(commands);    } catch (e) {      return this._lastValide;    }    this._lastValide = {      $or: commands,    };    return {      $or: commands,    };  }  _processSubCommands(commands) {    const subcommands = [];    let level = 0;    let start = -1;    for (let i = 0; i < commands.length; i++) {      if (commands[i].cmd) {        switch (commands[i].cmd) {          case '(': {            level++;            if (start === -1) start = i;            continue;          }          case ')': {            level--;            commands.splice(i, 1);            i--;            continue;          }          default: {            if (level > 0) {              subcommands.push(commands[i]);              commands.splice(i, 1);              i--;              continue;            }          }        }      }    }    if (start !== -1) {      this._processSubCommands(subcommands);      if (subcommands.length === 1) commands.splice(start, 0, subcommands[0]);      else commands.splice(start, 0, subcommands);    }    this._processConditions(commands);    this._processLogicalOperators(commands);  }  _processConditions(commands) {    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;            if (commands[i + 1].regex) {              const match = str.match(new RegExp('^/(.*?)/([gimy]*)$'));              let regex = null;              if (match.length > 2) regex = new RegExp(match[1], match[2]);              else regex = new RegExp(match[1]);              commands[i] = {                'customFields._id': this._fieldNameToId(field),                'customFields.value': regex,              };            } else {              commands[i] = {                'customFields._id': this._fieldNameToId(field),                'customFields.value': {                  $in: [this._fieldValueToId(field, str), parseInt(str, 10)],                },              };            }            commands.splice(i - 1, 1);            commands.splice(i, 1);            //changed = true;            i--;            break;          }          case '!=':          case '!==': {            const field = commands[i - 1].cmd;            const str = commands[i + 1].cmd;            if (commands[i + 1].regex) {              const match = str.match(new RegExp('^/(.*?)/([gimy]*)$'));              let regex = null;              if (match.length > 2) regex = new RegExp(match[1], match[2]);              else regex = new RegExp(match[1]);              commands[i] = {                'customFields._id': this._fieldNameToId(field),                'customFields.value': {                  $not: regex,                },              };            } else {              commands[i] = {                'customFields._id': this._fieldNameToId(field),                'customFields.value': {                  $not: {                    $in: [this._fieldValueToId(field, str), parseInt(str, 10)],                  },                },              };            }            commands.splice(i - 1, 1);            commands.splice(i, 1);            //changed = true;            i--;            break;          }          case '>':          case 'gt':          case 'Gt':          case 'GT': {            const field = commands[i - 1].cmd;            const str = commands[i + 1].cmd;            commands[i] = {              'customFields._id': this._fieldNameToId(field),              'customFields.value': {                $gt: parseInt(str, 10),              },            };            commands.splice(i - 1, 1);            commands.splice(i, 1);            //changed = true;            i--;            break;          }          case '>=':          case '>==':          case 'gte':          case 'Gte':          case 'GTE': {            const field = commands[i - 1].cmd;            const str = commands[i + 1].cmd;            commands[i] = {              'customFields._id': this._fieldNameToId(field),              'customFields.value': {                $gte: parseInt(str, 10),              },            };            commands.splice(i - 1, 1);            commands.splice(i, 1);            //changed = true;            i--;            break;          }          case '<':          case 'lt':          case 'Lt':          case 'LT': {            const field = commands[i - 1].cmd;            const str = commands[i + 1].cmd;            commands[i] = {              'customFields._id': this._fieldNameToId(field),              'customFields.value': {                $lt: parseInt(str, 10),              },            };            commands.splice(i - 1, 1);            commands.splice(i, 1);            //changed = true;            i--;            break;          }          case '<=':          case '<==':          case 'lte':          case 'Lte':          case 'LTE': {            const field = commands[i - 1].cmd;            const str = commands[i + 1].cmd;            commands[i] = {              'customFields._id': this._fieldNameToId(field),              'customFields.value': {                $lte: parseInt(str, 10),              },            };            commands.splice(i - 1, 1);            commands.splice(i, 1);            //changed = true;            i--;            break;          }        }      }    }  }  _processLogicalOperators(commands) {    for (let i = 0; i < commands.length; i++) {      if (!commands[i].string && commands[i].cmd) {        switch (commands[i].cmd) {          case 'or':          case 'Or':          case 'OR':          case '|':          case '||': {            const op1 = commands[i - 1];            const op2 = commands[i + 1];            commands[i] = {              $or: [op1, op2],            };            commands.splice(i - 1, 1);            commands.splice(i, 1);            //changed = true;            i--;            break;          }          case 'and':          case 'And':          case 'AND':          case '&':          case '&&': {            const op1 = commands[i - 1];            const op2 = commands[i + 1];            commands[i] = {              $and: [op1, op2],            };            commands.splice(i - 1, 1);            commands.splice(i, 1);            //changed = true;            i--;            break;          }          case 'not':          case 'Not':          case 'NOT':          case '!': {            const op1 = commands[i + 1];            commands[i] = {              $not: op1,            };            commands.splice(i + 1, 1);            //changed = true;            i--;            break;          }        }      }    }  }  _getMongoSelector() {    this._dep.depend();    const commands = this._filterToCommands();    return this._arrayToSelector(commands);  }  getRegexSelector() {    // generate a regex for filter list    this._dep.depend();    return new RegExp(      `^.*${this._filter.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')}.*$`,      'i',    );  }}// 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(),  assignees: new SetFilter(),  archive: new SetFilter(),  hideEmpty: new SetFilter(),  dueAt: new DateFilter(),  title: new StringFilter(),  customFields: new SetFilter('_id'),  advanced: new AdvancedFilter(),  lists: new AdvancedFilter(), // we need the ability to filter list by name as well  _fields: [    'labelIds',    'members',    'assignees',    'archive',    'hideEmpty',    'dueAt',    'title',    '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();      }) ||      this.advanced._isActive() ||      this.lists._isActive()    );  },  _getMongoSelector() {    if (!this.isActive()) return {};    const filterSelector = {};    const emptySelector = {};    let includeEmptySelectors = false;    let isFilterActive = false; // we don't want there is only Filter.lists    this._fields.forEach(fieldName => {      const filter = this[fieldName];      if (filter._isActive()) {        isFilterActive = true;        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();    const selectors = [exceptionsSelector];    if (      _.any(this._fields, fieldName => {        return this[fieldName]._isActive();      })    )      selectors.push(filterSelector);    if (includeEmptySelectors) selectors.push(emptySelector);    if (this.advanced._isActive()) {      isFilterActive = true;      selectors.push(this.advanced._getMongoSelector());    }    if(isFilterActive) {      return {        $or: selectors,      };    }    else {      // we don't want there is only Filter.lists      // otherwise no card will be displayed ...      // selectors = [exceptionsSelector];      // will return [{"_id":{"$in":[]}}]      return {};    }  },  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.lists.reset();    this.advanced.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);
 |