| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181 | Sidebar = null;const defaultView = 'home';const MCB = '.materialCheckBox';const CKCLS = 'is-checked';const viewTitles = {  filter: 'filter-cards',  search: 'search-cards',  multiselection: 'multi-selection',  customFields: 'custom-fields',  archives: 'archives',};BlazeComponent.extendComponent({  mixins() {    return [Mixins.InfiniteScrolling];  },  onCreated() {    this._isOpen = new ReactiveVar(false);    this._view = new ReactiveVar(defaultView);    Sidebar = this;  },  onDestroyed() {    Sidebar = null;  },  isOpen() {    return this._isOpen.get();  },  open() {    if (!this._isOpen.get()) {      this._isOpen.set(true);      EscapeActions.executeUpTo('detailsPane');    }  },  hide() {    if (this._isOpen.get()) {      this._isOpen.set(false);    }  },  toggle() {    this._isOpen.set(!this._isOpen.get());  },  calculateNextPeak() {    const sidebarElement = this.find('.js-board-sidebar-content');    if (sidebarElement) {      const altitude = sidebarElement.scrollHeight;      this.callFirstWith(this, 'setNextPeak', altitude);    }  },  reachNextPeak() {    const activitiesComponent = this.childComponents('activities')[0];    activitiesComponent.loadNextPage();  },  isTongueHidden() {    return this.isOpen() && this.getView() !== defaultView;  },  scrollTop() {    this.$('.js-board-sidebar-content').scrollTop(0);  },  getView() {    return this._view.get();  },  setView(view) {    view = _.isString(view) ? view : defaultView;    if (this._view.get() !== view) {      this._view.set(view);      this.scrollTop();      EscapeActions.executeUpTo('detailsPane');    }    this.open();  },  isDefaultView() {    return this.getView() === defaultView;  },  getViewTemplate() {    return `${this.getView()}Sidebar`;  },  getViewTitle() {    return TAPi18n.__(viewTitles[this.getView()]);  },  showTongueTitle() {    if (this.isOpen()) return `${TAPi18n.__('sidebar-close')}`;    else return `${TAPi18n.__('sidebar-open')}`;  },  events() {    return [      {        'click .js-hide-sidebar': this.hide,        'click .js-toggle-sidebar': this.toggle,        'click .js-back-home': this.setView,        'click .js-toggle-minicard-label-text'() {          currentUser = Meteor.user();          if (currentUser) {            Meteor.call('toggleMinicardLabelText');          } else if (window.localStorage.getItem('hiddenMinicardLabelText')) {            window.localStorage.removeItem('hiddenMinicardLabelText');            location.reload();          } else {            window.localStorage.setItem('hiddenMinicardLabelText', 'true');            location.reload();          }        },        'click .js-shortcuts'() {          FlowRouter.go('shortcuts');        },      },    ];  },}).register('sidebar');Blaze.registerHelper('Sidebar', () => Sidebar);Template.homeSidebar.helpers({  hiddenMinicardLabelText() {    currentUser = Meteor.user();    if (currentUser) {      return (currentUser.profile || {}).hiddenMinicardLabelText;    } else if (window.localStorage.getItem('hiddenMinicardLabelText')) {      return true;    } else {      return false;    }  },});EscapeActions.register(  'sidebarView',  () => {    Sidebar.setView(defaultView);  },  () => {    return Sidebar && Sidebar.getView() !== defaultView;  },);Template.memberPopup.helpers({  user() {    return Users.findOne(this.userId);  },  isBoardAdmin() {    return Meteor.user().isBoardAdmin();  },  memberType() {    const type = Users.findOne(this.userId).isBoardAdmin() ? 'admin' : 'normal';    if (type === 'normal') {      const currentBoard = Boards.findOne(Session.get('currentBoard'));      const commentOnly = currentBoard.hasCommentOnly(this.userId);      const noComments = currentBoard.hasNoComments(this.userId);      const worker = currentBoard.hasWorker(this.userId);      if (commentOnly) {        return TAPi18n.__('comment-only').toLowerCase();      } else if (noComments) {        return TAPi18n.__('no-comments').toLowerCase();      } else if (worker) {        return TAPi18n.__('worker').toLowerCase();      } else {        return TAPi18n.__(type).toLowerCase();      }    } else {      return TAPi18n.__(type).toLowerCase();    }  },  isInvited() {    return Users.findOne(this.userId).isInvitedTo(Session.get('currentBoard'));  },});Template.boardMenuPopup.events({  'click .js-rename-board': Popup.open('boardChangeTitle'),  'click .js-open-rules-view'() {    Modal.openWide('rulesMain');    Popup.close();  },  'click .js-custom-fields'() {    Sidebar.setView('customFields');    Popup.close();  },  'click .js-open-archives'() {    Sidebar.setView('archives');    Popup.close();  },  'click .js-change-board-color': Popup.open('boardChangeColor'),  'click .js-change-language': Popup.open('changeLanguage'),  'click .js-archive-board ': Popup.afterConfirm('archiveBoard', function() {    const currentBoard = Boards.findOne(Session.get('currentBoard'));    currentBoard.archive();    // XXX We should have some kind of notification on top of the page to    // confirm that the board was successfully archived.    FlowRouter.go('home');  }),  'click .js-delete-board': Popup.afterConfirm('deleteBoard', function() {    const currentBoard = Boards.findOne(Session.get('currentBoard'));    Popup.close();    Boards.remove(currentBoard._id);    FlowRouter.go('home');  }),  'click .js-outgoing-webhooks': Popup.open('outgoingWebhooks'),  'click .js-import-board': Popup.open('chooseBoardSource'),  'click .js-subtask-settings': Popup.open('boardSubtaskSettings'),  'click .js-card-settings': Popup.open('boardCardSettings'),  'click .js-export-board': Popup.open('exportBoard'),});Template.boardMenuPopup.onCreated(function() {  this.apiEnabled = new ReactiveVar(false);  Meteor.call('_isApiEnabled', (e, result) => {    this.apiEnabled.set(result);  });});Template.boardMenuPopup.helpers({  isBoardAdmin() {    return Meteor.user().isBoardAdmin();  },  withApi() {    return Template.instance().apiEnabled.get();  },  exportUrl() {    const params = {      boardId: Session.get('currentBoard'),    };    const queryParams = {      authToken: Accounts._storedLoginToken(),    };    return FlowRouter.path('/api/boards/:boardId/export', params, queryParams);  },  exportFilename() {    const boardId = Session.get('currentBoard');    return `wekan-export-board-${boardId}.json`;  },});Template.memberPopup.events({  'click .js-filter-member'() {    Filter.members.toggle(this.userId);    Popup.close();  },  'click .js-change-role': Popup.open('changePermissions'),  'click .js-remove-member': Popup.afterConfirm('removeMember', function() {    // This works from removing member from board, card members and assignees.    const boardId = Session.get('currentBoard');    const memberId = this.userId;    Cards.find({ boardId, members: memberId }).forEach(card => {      card.unassignMember(memberId);    });    Cards.find({ boardId, assignees: memberId }).forEach(card => {      card.unassignAssignee(memberId);    });    Boards.findOne(boardId).removeMember(memberId);    Popup.close();  }),  'click .js-leave-member': Popup.afterConfirm('leaveBoard', () => {    const boardId = Session.get('currentBoard');    Meteor.call('quitBoard', boardId, () => {      Popup.close();      FlowRouter.go('home');    });  }),});Template.removeMemberPopup.helpers({  user() {    return Users.findOne(this.userId);  },  board() {    return Boards.findOne(Session.get('currentBoard'));  },});Template.leaveBoardPopup.helpers({  board() {    return Boards.findOne(Session.get('currentBoard'));  },});Template.membersWidget.helpers({  isInvited() {    const user = Meteor.user();    return user && user.isInvitedTo(Session.get('currentBoard'));  },  isWorker() {    const user = Meteor.user();    if (user) {      return Meteor.call(Boards.hasWorker(user.memberId));    } else {      return false;    }  },  isBoardAdmin() {    return Meteor.user().isBoardAdmin();  },});Template.membersWidget.events({  'click .js-member': Popup.open('member'),  'click .js-open-board-menu': Popup.open('boardMenu'),  'click .js-manage-board-members': Popup.open('addMember'),  'click .js-import': Popup.open('boardImportBoard'),  submit: this.onSubmit,  'click .js-import-board': Popup.open('chooseBoardSource'),  'click .js-open-archived-board'() {    Modal.open('archivedBoards');  },  'click .sandstorm-powerbox-request-identity'() {    window.sandstormRequestIdentity();  },  'click .js-member-invite-accept'() {    const boardId = Session.get('currentBoard');    Meteor.user().removeInvite(boardId);  },  'click .js-member-invite-decline'() {    const boardId = Session.get('currentBoard');    Meteor.call('quitBoard', boardId, (err, ret) => {      if (!err && ret) {        Meteor.user().removeInvite(boardId);        FlowRouter.go('home');      }    });  },});BlazeComponent.extendComponent({  boardId() {    return Session.get('currentBoard') || Integrations.Const.GLOBAL_WEBHOOK_ID;  },  integrations() {    const boardId = this.boardId();    return Integrations.find({ boardId: `${boardId}` }).fetch();  },  types() {    return Integrations.Const.WEBHOOK_TYPES;  },  integration(cond) {    const boardId = this.boardId();    const condition = { boardId, ...cond };    for (const k in condition) {      if (!condition[k]) delete condition[k];    }    return Integrations.findOne(condition);  },  onCreated() {    this.disabled = new ReactiveVar(false);  },  events() {    return [      {        'click a.flex'(evt) {          this.disabled.set(!this.disabled.get());          $(evt.target).toggleClass(CKCLS, this.disabled.get());        },        submit(evt) {          evt.preventDefault();          const url = evt.target.url.value;          const boardId = this.boardId();          let id = null;          let integration = null;          const title = evt.target.title.value;          const token = evt.target.token.value;          const type = evt.target.type.value;          const enabled = !this.disabled.get();          let remove = false;          const values = {            url,            type,            token,            title,            enabled,          };          if (evt.target.id) {            id = evt.target.id.value;            integration = this.integration({ _id: id });            remove = !url;          } else if (url) {            integration = this.integration({ url, token });          }          if (remove) {            Integrations.remove(integration._id);          } else if (integration && integration._id) {            Integrations.update(integration._id, {              $set: values,            });          } else if (url) {            Integrations.insert({              ...values,              userId: Meteor.userId(),              enabled: true,              boardId,              activities: ['all'],            });          }          Popup.close();        },      },    ];  },}).register('outgoingWebhooksPopup');BlazeComponent.extendComponent({  template() {    return 'chooseBoardSource';  },}).register('chooseBoardSourcePopup');BlazeComponent.extendComponent({  template() {    return 'exportBoard';  },  withApi() {    return Template.instance().apiEnabled.get();  },  exportUrl() {    const params = {      boardId: Session.get('currentBoard'),    };    const queryParams = {      authToken: Accounts._storedLoginToken(),    };    return FlowRouter.path('/api/boards/:boardId/export', params, queryParams);  },  exportCsvUrl() {    const params = {      boardId: Session.get('currentBoard'),    };    const queryParams = {      authToken: Accounts._storedLoginToken(),    };    return FlowRouter.path(      '/api/boards/:boardId/export/csv',      params,      queryParams,    );  },  exportTsvUrl() {    const params = {      boardId: Session.get('currentBoard'),    };    const queryParams = {      authToken: Accounts._storedLoginToken(),      delimiter: '\t',    };    return FlowRouter.path(      '/api/boards/:boardId/export/csv',      params,      queryParams,    );  },  exportJsonFilename() {    const boardId = Session.get('currentBoard');    return `wekan-export-board-${boardId}.json`;  },  exportCsvFilename() {    const boardId = Session.get('currentBoard');    return `wekan-export-board-${boardId}.csv`;  },  exportTsvFilename() {    const boardId = Session.get('currentBoard');    return `wekan-export-board-${boardId}.tsv`;  },}).register('exportBoardPopup');Template.exportBoard.events({  'click .html-export-board': async event => {    event.preventDefault();    await ExportHtml(Popup)();  },});Template.labelsWidget.events({  'click .js-label': Popup.open('editLabel'),  'click .js-add-label': Popup.open('createLabel'),});Template.labelsWidget.helpers({  isBoardAdmin() {    return Meteor.user().isBoardAdmin();  },});// Board members can assign people or labels by drag-dropping elements from the// sidebar to the cards on the board. In order to re-initialize the jquery-ui// plugin any time a draggable member or label is modified or removed we use a// autorun function and register a dependency on the both members and labels// fields of the current board document.function draggableMembersLabelsWidgets() {  this.autorun(() => {    const currentBoardId = Tracker.nonreactive(() => {      return Session.get('currentBoard');    });    Boards.findOne(currentBoardId, {      fields: {        members: 1,        labels: 1,      },    });    Tracker.afterFlush(() => {      const $draggables = this.$('.js-member,.js-label');      $draggables.draggable({        appendTo: 'body',        helper: 'clone',        revert: 'invalid',        revertDuration: 150,        snap: false,        snapMode: 'both',        start() {          EscapeActions.executeUpTo('popup-back');        },      });      function userIsMember() {        return Meteor.user() && Meteor.user().isBoardMember();      }      this.autorun(() => {        $draggables.draggable('option', 'disabled', !userIsMember());      });    });  });}Template.membersWidget.onRendered(draggableMembersLabelsWidgets);Template.labelsWidget.onRendered(draggableMembersLabelsWidgets);BlazeComponent.extendComponent({  backgroundColors() {    return Boards.simpleSchema()._schema.color.allowedValues;  },  isSelected() {    const currentBoard = Boards.findOne(Session.get('currentBoard'));    return currentBoard.color === this.currentData().toString();  },  events() {    return [      {        'click .js-select-background'(evt) {          const currentBoard = Boards.findOne(Session.get('currentBoard'));          const newColor = this.currentData().toString();          currentBoard.setColor(newColor);          evt.preventDefault();        },      },    ];  },}).register('boardChangeColorPopup');BlazeComponent.extendComponent({  onCreated() {    this.currentBoard = Boards.findOne(Session.get('currentBoard'));  },  allowsSubtasks() {    return this.currentBoard.allowsSubtasks;  },  allowsReceivedDate() {    return this.currentBoard.allowsReceivedDate;  },  isBoardSelected() {    return this.currentBoard.subtasksDefaultBoardId === this.currentData()._id;  },  isNullBoardSelected() {    return (      this.currentBoard.subtasksDefaultBoardId === null ||      this.currentBoard.subtasksDefaultBoardId === undefined    );  },  boards() {    return Boards.find(      {        archived: false,        'members.userId': Meteor.userId(),      },      {        sort: { sort: 1 /* boards default sorting */ },      },    );  },  lists() {    return Lists.find(      {        boardId: this.currentBoard._id,        archived: false,      },      {        sort: ['title'],      },    );  },  hasLists() {    return this.lists().count() > 0;  },  isListSelected() {    return this.currentBoard.subtasksDefaultBoardId === this.currentData()._id;  },  presentParentTask() {    let result = this.currentBoard.presentParentTask;    if (result === null || result === undefined) {      result = 'no-parent';    }    return result;  },  events() {    return [      {        'click .js-field-has-subtasks'(evt) {          evt.preventDefault();          this.currentBoard.allowsSubtasks = !this.currentBoard.allowsSubtasks;          this.currentBoard.setAllowsSubtasks(this.currentBoard.allowsSubtasks);          $(`.js-field-has-subtasks ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsSubtasks,          );          $('.js-field-has-subtasks').toggleClass(            CKCLS,            this.currentBoard.allowsSubtasks,          );          $('.js-field-deposit-board').prop(            'disabled',            !this.currentBoard.allowsSubtasks,          );        },        'change .js-field-deposit-board'(evt) {          let value = evt.target.value;          if (value === 'null') {            value = null;          }          this.currentBoard.setSubtasksDefaultBoardId(value);          evt.preventDefault();        },        'change .js-field-deposit-list'(evt) {          this.currentBoard.setSubtasksDefaultListId(evt.target.value);          evt.preventDefault();        },        'click .js-field-show-parent-in-minicard'(evt) {          const value =            evt.target.id ||            $(evt.target).parent()[0].id ||            $(evt.target)              .parent()[0]              .parent()[0].id;          const options = [            'prefix-with-full-path',            'prefix-with-parent',            'subtext-with-full-path',            'subtext-with-parent',            'no-parent',          ];          options.forEach(function(element) {            if (element !== value) {              $(`#${element} ${MCB}`).toggleClass(CKCLS, false);              $(`#${element}`).toggleClass(CKCLS, false);            }          });          $(`#${value} ${MCB}`).toggleClass(CKCLS, true);          $(`#${value}`).toggleClass(CKCLS, true);          this.currentBoard.setPresentParentTask(value);          evt.preventDefault();        },      },    ];  },}).register('boardSubtaskSettingsPopup');BlazeComponent.extendComponent({  onCreated() {    this.currentBoard = Boards.findOne(Session.get('currentBoard'));  },  allowsReceivedDate() {    return this.currentBoard.allowsReceivedDate;  },  allowsStartDate() {    return this.currentBoard.allowsStartDate;  },  allowsDueDate() {    return this.currentBoard.allowsDueDate;  },  allowsEndDate() {    return this.currentBoard.allowsEndDate;  },  allowsSubtasks() {    return this.currentBoard.allowsSubtasks;  },  allowsMembers() {    return this.currentBoard.allowsMembers;  },  allowsAssignee() {    return this.currentBoard.allowsAssignee;  },  allowsAssignedBy() {    return this.currentBoard.allowsAssignedBy;  },  allowsRequestedBy() {    return this.currentBoard.allowsRequestedBy;  },  allowsLabels() {    return this.currentBoard.allowsLabels;  },  allowsChecklists() {    return this.currentBoard.allowsChecklists;  },  allowsAttachments() {    return this.currentBoard.allowsAttachments;  },  allowsComments() {    return this.currentBoard.allowsComments;  },  allowsDescriptionTitle() {    return this.currentBoard.allowsDescriptionTitle;  },  allowsDescriptionText() {    return this.currentBoard.allowsDescriptionText;  },  isBoardSelected() {    return this.currentBoard.dateSettingsDefaultBoardID;  },  isNullBoardSelected() {    return (      this.currentBoard.dateSettingsDefaultBoardId === null ||      this.currentBoard.dateSettingsDefaultBoardId === undefined    );  },  boards() {    return Boards.find(      {        archived: false,        'members.userId': Meteor.userId(),      },      {        sort: { sort: 1 /* boards default sorting */ },      },    );  },  lists() {    return Lists.find(      {        boardId: this.currentBoard._id,        archived: false,      },      {        sort: ['title'],      },    );  },  hasLists() {    return this.lists().count() > 0;  },  isListSelected() {    return (      this.currentBoard.dateSettingsDefaultBoardId === this.currentData()._id    );  },  events() {    return [      {        'click .js-field-has-receiveddate'(evt) {          evt.preventDefault();          this.currentBoard.allowsReceivedDate = !this.currentBoard            .allowsReceivedDate;          this.currentBoard.setAllowsReceivedDate(            this.currentBoard.allowsReceivedDate,          );          $(`.js-field-has-receiveddate ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsReceivedDate,          );          $('.js-field-has-receiveddate').toggleClass(            CKCLS,            this.currentBoard.allowsReceivedDate,          );        },        'click .js-field-has-startdate'(evt) {          evt.preventDefault();          this.currentBoard.allowsStartDate = !this.currentBoard            .allowsStartDate;          this.currentBoard.setAllowsStartDate(            this.currentBoard.allowsStartDate,          );          $(`.js-field-has-startdate ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsStartDate,          );          $('.js-field-has-startdate').toggleClass(            CKCLS,            this.currentBoard.allowsStartDate,          );        },        'click .js-field-has-enddate'(evt) {          evt.preventDefault();          this.currentBoard.allowsEndDate = !this.currentBoard.allowsEndDate;          this.currentBoard.setAllowsEndDate(this.currentBoard.allowsEndDate);          $(`.js-field-has-enddate ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsEndDate,          );          $('.js-field-has-enddate').toggleClass(            CKCLS,            this.currentBoard.allowsEndDate,          );        },        'click .js-field-has-duedate'(evt) {          evt.preventDefault();          this.currentBoard.allowsDueDate = !this.currentBoard.allowsDueDate;          this.currentBoard.setAllowsDueDate(this.currentBoard.allowsDueDate);          $(`.js-field-has-duedate ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsDueDate,          );          $('.js-field-has-duedate').toggleClass(            CKCLS,            this.currentBoard.allowsDueDate,          );        },        'click .js-field-has-subtasks'(evt) {          evt.preventDefault();          this.currentBoard.allowsSubtasks = !this.currentBoard.allowsSubtasks;          this.currentBoard.setAllowsSubtasks(this.currentBoard.allowsSubtasks);          $(`.js-field-has-subtasks ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsSubtasks,          );          $('.js-field-has-subtasks').toggleClass(            CKCLS,            this.currentBoard.allowsSubtasks,          );        },        'click .js-field-has-members'(evt) {          evt.preventDefault();          this.currentBoard.allowsMembers = !this.currentBoard.allowsMembers;          this.currentBoard.setAllowsMembers(this.currentBoard.allowsMembers);          $(`.js-field-has-members ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsMembers,          );          $('.js-field-has-members').toggleClass(            CKCLS,            this.currentBoard.allowsMembers,          );        },        'click .js-field-has-assignee'(evt) {          evt.preventDefault();          this.currentBoard.allowsAssignee = !this.currentBoard.allowsAssignee;          this.currentBoard.setAllowsAssignee(this.currentBoard.allowsAssignee);          $(`.js-field-has-assignee ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsAssignee,          );          $('.js-field-has-assignee').toggleClass(            CKCLS,            this.currentBoard.allowsAssignee,          );        },        'click .js-field-has-assigned-by'(evt) {          evt.preventDefault();          this.currentBoard.allowsAssignedBy = !this.currentBoard            .allowsAssignedBy;          this.currentBoard.setAllowsAssignedBy(            this.currentBoard.allowsAssignedBy,          );          $(`.js-field-has-assigned-by ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsAssignedBy,          );          $('.js-field-has-assigned-by').toggleClass(            CKCLS,            this.currentBoard.allowsAssignedBy,          );        },        'click .js-field-has-requested-by'(evt) {          evt.preventDefault();          this.currentBoard.allowsRequestedBy = !this.currentBoard            .allowsRequestedBy;          this.currentBoard.setAllowsRequestedBy(            this.currentBoard.allowsRequestedBy,          );          $(`.js-field-has-requested-by ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsRequestedBy,          );          $('.js-field-has-requested-by').toggleClass(            CKCLS,            this.currentBoard.allowsRequestedBy,          );        },        'click .js-field-has-labels'(evt) {          evt.preventDefault();          this.currentBoard.allowsLabels = !this.currentBoard.allowsLabels;          this.currentBoard.setAllowsLabels(this.currentBoard.allowsLabels);          $(`.js-field-has-labels ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsAssignee,          );          $('.js-field-has-labels').toggleClass(            CKCLS,            this.currentBoard.allowsLabels,          );        },        'click .js-field-has-description-title'(evt) {          evt.preventDefault();          this.currentBoard.allowsDescriptionTitle = !this.currentBoard            .allowsDescriptionTitle;          this.currentBoard.setAllowsDescriptionTitle(            this.currentBoard.allowsDescriptionTitle,          );          $(`.js-field-has-description-title ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsDescriptionTitle,          );          $('.js-field-has-description-title').toggleClass(            CKCLS,            this.currentBoard.allowsDescriptionTitle,          );        },        'click .js-field-has-description-text'(evt) {          evt.preventDefault();          this.currentBoard.allowsDescriptionText = !this.currentBoard            .allowsDescriptionText;          this.currentBoard.setAllowsDescriptionText(            this.currentBoard.allowsDescriptionText,          );          $(`.js-field-has-description-text ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsDescriptionText,          );          $('.js-field-has-description-text').toggleClass(            CKCLS,            this.currentBoard.allowsDescriptionText,          );        },        'click .js-field-has-checklists'(evt) {          evt.preventDefault();          this.currentBoard.allowsChecklists = !this.currentBoard            .allowsChecklists;          this.currentBoard.setAllowsChecklists(            this.currentBoard.allowsChecklists,          );          $(`.js-field-has-checklists ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsChecklists,          );          $('.js-field-has-checklists').toggleClass(            CKCLS,            this.currentBoard.allowsChecklists,          );        },        'click .js-field-has-attachments'(evt) {          evt.preventDefault();          this.currentBoard.allowsAttachments = !this.currentBoard            .allowsAttachments;          this.currentBoard.setAllowsAttachments(            this.currentBoard.allowsAttachments,          );          $(`.js-field-has-attachments ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsAttachments,          );          $('.js-field-has-attachments').toggleClass(            CKCLS,            this.currentBoard.allowsAttachments,          );        },        'click .js-field-has-comments'(evt) {          evt.preventDefault();          this.currentBoard.allowsComments = !this.currentBoard.allowsComments;          this.currentBoard.setAllowsComments(this.currentBoard.allowsComments);          $(`.js-field-has-comments ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsComments,          );          $('.js-field-has-comments').toggleClass(            CKCLS,            this.currentBoard.allowsComments,          );        },        'click .js-field-has-activities'(evt) {          evt.preventDefault();          this.currentBoard.allowsActivities = !this.currentBoard            .allowsActivities;          this.currentBoard.setAllowsActivities(            this.currentBoard.allowsActivities,          );          $(`.js-field-has-activities ${MCB}`).toggleClass(            CKCLS,            this.currentBoard.allowsActivities,          );          $('.js-field-has-activities').toggleClass(            CKCLS,            this.currentBoard.allowsActivities,          );        },      },    ];  },}).register('boardCardSettingsPopup');BlazeComponent.extendComponent({  onCreated() {    this.error = new ReactiveVar('');    this.loading = new ReactiveVar(false);  },  onRendered() {    this.find('.js-search-member input').focus();    this.setLoading(false);  },  isBoardMember() {    const userId = this.currentData()._id;    const user = Users.findOne(userId);    return user && user.isBoardMember();  },  isValidEmail(email) {    return SimpleSchema.RegEx.Email.test(email);  },  setError(error) {    this.error.set(error);  },  setLoading(w) {    this.loading.set(w);  },  isLoading() {    return this.loading.get();  },  inviteUser(idNameEmail) {    const boardId = Session.get('currentBoard');    this.setLoading(true);    const self = this;    Meteor.call('inviteUserToBoard', idNameEmail, boardId, (err, ret) => {      self.setLoading(false);      if (err) self.setError(err.error);      else if (ret.email) self.setError('email-sent');      else Popup.close();    });  },  events() {    return [      {        'keyup input'() {          this.setError('');        },        'click .js-select-member'() {          const userId = this.currentData()._id;          const currentBoard = Boards.findOne(Session.get('currentBoard'));          if (!currentBoard.hasMember(userId)) {            this.inviteUser(userId);          }        },        'click .js-email-invite'() {          const idNameEmail = $('.js-search-member input').val();          if (idNameEmail.indexOf('@') < 0 || this.isValidEmail(idNameEmail)) {            this.inviteUser(idNameEmail);          } else this.setError('email-invalid');        },      },    ];  },}).register('addMemberPopup');Template.changePermissionsPopup.events({  'click .js-set-admin, click .js-set-normal, click .js-set-no-comments, click .js-set-comment-only, click .js-set-worker'(    event,  ) {    const currentBoard = Boards.findOne(Session.get('currentBoard'));    const memberId = this.userId;    const isAdmin = $(event.currentTarget).hasClass('js-set-admin');    const isCommentOnly = $(event.currentTarget).hasClass(      'js-set-comment-only',    );    const isNoComments = $(event.currentTarget).hasClass('js-set-no-comments');    const isWorker = $(event.currentTarget).hasClass('js-set-worker');    currentBoard.setMemberPermission(      memberId,      isAdmin,      isNoComments,      isCommentOnly,      isWorker,    );    Popup.back(1);  },});Template.changePermissionsPopup.helpers({  isAdmin() {    const currentBoard = Boards.findOne(Session.get('currentBoard'));    return currentBoard.hasAdmin(this.userId);  },  isNormal() {    const currentBoard = Boards.findOne(Session.get('currentBoard'));    return (      !currentBoard.hasAdmin(this.userId) &&      !currentBoard.hasNoComments(this.userId) &&      !currentBoard.hasCommentOnly(this.userId) &&      !currentBoard.hasWorker(this.userId)    );  },  isNoComments() {    const currentBoard = Boards.findOne(Session.get('currentBoard'));    return (      !currentBoard.hasAdmin(this.userId) &&      currentBoard.hasNoComments(this.userId)    );  },  isCommentOnly() {    const currentBoard = Boards.findOne(Session.get('currentBoard'));    return (      !currentBoard.hasAdmin(this.userId) &&      currentBoard.hasCommentOnly(this.userId)    );  },  isWorker() {    const currentBoard = Boards.findOne(Session.get('currentBoard'));    return (      !currentBoard.hasAdmin(this.userId) && currentBoard.hasWorker(this.userId)    );  },  isLastAdmin() {    const currentBoard = Boards.findOne(Session.get('currentBoard'));    return (      currentBoard.hasAdmin(this.userId) && currentBoard.activeAdmins() === 1    );  },});
 |