| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 | import { ReactiveCache } from '/imports/reactiveCache';import { TAPi18n } from '/imports/i18n';const subManager = new SubsManager();Template.boardList.helpers({  hideCardCounterList() {    /* Bug Board icons random dance https://github.com/wekan/wekan/issues/4214       return Utils.isMiniScreen() && Session.get('currentBoard'); */    return true;  },  hideBoardMemberList() {    /* Bug Board icons random dance https://github.com/wekan/wekan/issues/4214       return Utils.isMiniScreen() && Session.get('currentBoard'); */    return true;  },})Template.boardListHeaderBar.events({  'click .js-open-archived-board'() {    Modal.open('archivedBoards');  },});Template.boardList.events({});Template.boardListHeaderBar.helpers({  title() {    //if (FlowRouter.getRouteName() === 'template-container') {    //  return 'template-container';    //} else {    return FlowRouter.getRouteName() === 'home' ? 'my-boards' : 'public';    //}  },  templatesBoardId() {    return ReactiveCache.getCurrentUser()?.getTemplatesBoardId();  },  templatesBoardSlug() {    return ReactiveCache.getCurrentUser()?.getTemplatesBoardSlug();  },});BlazeComponent.extendComponent({  onCreated() {    Meteor.subscribe('setting');    Meteor.subscribe('tableVisibilityModeSettings');    let currUser = ReactiveCache.getCurrentUser();    let userLanguage;    if (currUser && currUser.profile) {      userLanguage = currUser.profile.language    }    if (userLanguage) {      TAPi18n.setLanguage(userLanguage);    }  },  onRendered() {    const itemsSelector = '.js-board:not(.placeholder)';    const $boards = this.$('.js-boards');    $boards.sortable({      connectWith: '.js-boards',      tolerance: 'pointer',      appendTo: '.board-list',      helper: 'clone',      distance: 7,      items: itemsSelector,      placeholder: 'board-wrapper placeholder',      start(evt, ui) {        ui.helper.css('z-index', 1000);        ui.placeholder.height(ui.helper.height());        EscapeActions.executeUpTo('popup-close');      },      stop(evt, ui) {        // To attribute the new index number, we need to get the DOM element        // of the previous and the following card -- if any.        const prevBoardDom = ui.item.prev('.js-board').get(0);        const nextBoardBom = ui.item.next('.js-board').get(0);        const sortIndex = Utils.calculateIndex(prevBoardDom, nextBoardBom, 1);        const boardDomElement = ui.item.get(0);        const board = Blaze.getData(boardDomElement);        // Normally the jquery-ui sortable library moves the dragged DOM element        // to its new position, which disrupts Blaze reactive updates mechanism        // (especially when we move the last card of a list, or when multiple        // users move some cards at the same time). To prevent these UX glitches        // we ask sortable to gracefully cancel the move, and to put back the        // DOM in its initial state. The card move is then handled reactively by        // Blaze with the below query.        $boards.sortable('cancel');        board.move(sortIndex.base);      },    });    // Disable drag-dropping if the current user is not a board member or is comment only    this.autorun(() => {      if (Utils.isTouchScreenOrShowDesktopDragHandles()) {        $boards.sortable({          handle: '.board-handle',        });      }    });  },  userHasTeams() {    if (ReactiveCache.getCurrentUser()?.teams?.length > 0)      return true;    else      return false;  },  teamsDatas() {    const teams = ReactiveCache.getCurrentUser()?.teams    if (teams)      return teams.sort((a, b) => a.teamDisplayName.localeCompare(b.teamDisplayName));    else      return [];  },  userHasOrgs() {    if (ReactiveCache.getCurrentUser()?.orgs?.length > 0)      return true;    else      return false;  },  orgsDatas() {    const orgs = ReactiveCache.getCurrentUser()?.orgs;    if (orgs)      return orgs.sort((a, b) => a.orgDisplayName.localeCompare(b.orgDisplayName));    else      return [];  },  userHasOrgsOrTeams() {    const ret = this.userHasOrgs() || this.userHasTeams();    return ret;  },  boards() {    let query = {      // { type: 'board' },      // { type: { $in: ['board','template-container'] } },      $and: [        { archived: false },        { type: { $in: ['board', 'template-container'] } },        { $or: [] },        { title: { $not: { $regex: /^\^.*\^$/ } } }      ]    };    let allowPrivateVisibilityOnly = TableVisibilityModeSettings.findOne('tableVisibilityMode-allowPrivateOnly');    if (FlowRouter.getRouteName() === 'home') {      query.$and[2].$or.push({ 'members.userId': Meteor.userId() });      if (allowPrivateVisibilityOnly !== undefined && allowPrivateVisibilityOnly.booleanValue) {        query.$and.push({ 'permission': 'private' });      }      const currUser = ReactiveCache.getCurrentUser();      let orgIdsUserBelongs = currUser?.orgIdsUserBelongs() || '';      if (orgIdsUserBelongs) {        let orgsIds = orgIdsUserBelongs.split(',');        // for(let i = 0; i < orgsIds.length; i++){        //   query.$and[2].$or.push({'orgs.orgId': orgsIds[i]});        // }        //query.$and[2].$or.push({'orgs': {$elemMatch : {orgId: orgsIds[0]}}});        query.$and[2].$or.push({ 'orgs.orgId': { $in: orgsIds } });      }      let teamIdsUserBelongs = currUser?.teamIdsUserBelongs() || '';      if (teamIdsUserBelongs) {        let teamsIds = teamIdsUserBelongs.split(',');        // for(let i = 0; i < teamsIds.length; i++){        //   query.$or[2].$or.push({'teams.teamId': teamsIds[i]});        // }        //query.$and[2].$or.push({'teams': { $elemMatch : {teamId: teamsIds[0]}}});        query.$and[2].$or.push({ 'teams.teamId': { $in: teamsIds } });      }    }    else if (allowPrivateVisibilityOnly !== undefined && !allowPrivateVisibilityOnly.booleanValue) {      query = {        archived: false,        //type: { $in: ['board','template-container'] },        type: 'board',        permission: 'public',      };    }    const ret = ReactiveCache.getBoards(query, {      sort: { sort: 1 /* boards default sorting */ },    });    return ret;  },  boardLists(boardId) {    /* Bug Board icons random dance https://github.com/wekan/wekan/issues/4214    const lists = ReactiveCache.getLists({ 'boardId': boardId, 'archived': false },{sort: ['sort','asc']});    const ret = lists.map(list => {      let cardCount = ReactiveCache.getCards({ 'boardId': boardId, 'listId': list._id }).length;      return `${list.title}: ${cardCount}`;    });    return ret;    */    return [];  },  boardMembers(boardId) {    /* Bug Board icons random dance https://github.com/wekan/wekan/issues/4214    const lists = ReactiveCache.getBoard(boardId)    const boardMembers = lists?.members.map(member => member.userId);    return boardMembers;    */    return [];  },  isStarred() {    const user = ReactiveCache.getCurrentUser();    return user && user.hasStarred(this.currentData()._id);  },  isAdministrable() {    const user = ReactiveCache.getCurrentUser();    return user && user.isBoardAdmin(this.currentData()._id);  },  hasOvertimeCards() {    return this.currentData().hasOvertimeCards();  },  hasSpentTimeCards() {    return this.currentData().hasSpentTimeCards();  },  isInvited() {    const user = ReactiveCache.getCurrentUser();    return user && user.isInvitedTo(this.currentData()._id);  },  events() {    return [      {        'click .js-add-board': Popup.open('createBoard'),        'click .js-star-board'(evt) {          const boardId = this.currentData()._id;          ReactiveCache.getCurrentUser().toggleBoardStar(boardId);          evt.preventDefault();        },        'click .js-clone-board'(evt) {          if (confirm(TAPi18n.__('duplicate-board-confirm'))) {            let title =              getSlug(ReactiveCache.getBoard(this.currentData()._id).title) ||              'cloned-board';            Meteor.call(              'copyBoard',              this.currentData()._id,              {                sort: ReactiveCache.getBoards({ archived: false }).length,                type: 'board',                title: ReactiveCache.getBoard(this.currentData()._id).title,              },              (err, res) => {                if (err) {                  console.error(err);                } else {                  Session.set('fromBoard', null);                  subManager.subscribe('board', res, false);                  FlowRouter.go('board', {                    id: res,                    slug: title,                  });                }              },            );            evt.preventDefault();          }        },        'click .js-archive-board'(evt) {          if (confirm(TAPi18n.__('archive-board-confirm'))) {            const boardId = this.currentData()._id;            Meteor.call('archiveBoard', boardId);            evt.preventDefault();          }        },        'click .js-accept-invite'() {          const boardId = this.currentData()._id;          Meteor.call('acceptInvite', boardId);        },        'click .js-decline-invite'() {          const boardId = this.currentData()._id;          Meteor.call('quitBoard', boardId, (err, ret) => {            if (!err && ret) {              Meteor.call('acceptInvite', boardId);              FlowRouter.go('home');            }          });        },        'click #resetBtn'(event) {          let allBoards = document.getElementsByClassName("js-board");          let currBoard;          for (let i = 0; i < allBoards.length; i++) {            currBoard = allBoards[i];            currBoard.style.display = "block";          }        },        'click #filterBtn'(event) {          event.preventDefault();          let selectedTeams = document.querySelectorAll('#jsAllBoardTeams option:checked');          let selectedTeamsValues = Array.from(selectedTeams).map(function (elt) { return elt.value });          let index = selectedTeamsValues.indexOf("-1");          if (index > -1) {            selectedTeamsValues.splice(index, 1);          }          let selectedOrgs = document.querySelectorAll('#jsAllBoardOrgs option:checked');          let selectedOrgsValues = Array.from(selectedOrgs).map(function (elt) { return elt.value });          index = selectedOrgsValues.indexOf("-1");          if (index > -1) {            selectedOrgsValues.splice(index, 1);          }          if (selectedTeamsValues.length > 0 || selectedOrgsValues.length > 0) {            const query = {              $and: [                { archived: false },                { type: 'board' },                { $or: [] }              ]            };            if (selectedTeamsValues.length > 0) {              query.$and[2].$or.push({ 'teams.teamId': { $in: selectedTeamsValues } });            }            if (selectedOrgsValues.length > 0) {              query.$and[2].$or.push({ 'orgs.orgId': { $in: selectedOrgsValues } });            }            let filteredBoards = ReactiveCache.getBoards(query, {});            let allBoards = document.getElementsByClassName("js-board");            let currBoard;            if (filteredBoards.length > 0) {              let currBoardId;              let found;              for (let i = 0; i < allBoards.length; i++) {                currBoard = allBoards[i];                currBoardId = currBoard.classList[0];                found = filteredBoards.find(function (board) {                  return board._id == currBoardId;                });                if (found !== undefined)                  currBoard.style.display = "block";                else                  currBoard.style.display = "none";              }            }            else {              for (let i = 0; i < allBoards.length; i++) {                currBoard = allBoards[i];                currBoard.style.display = "none";              }            }          }        },      },    ];  },}).register('boardList');
 |