swimlanes.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. const { calculateIndex } = Utils;
  2. function currentListIsInThisSwimlane(swimlaneId) {
  3. const currentList = Lists.findOne(Session.get('currentList'));
  4. return (
  5. currentList &&
  6. (currentList.swimlaneId === swimlaneId || currentList.swimlaneId === '')
  7. );
  8. }
  9. function currentCardIsInThisList(listId, swimlaneId) {
  10. const currentCard = Utils.getCurrentCard();
  11. const currentUser = Meteor.user();
  12. if (
  13. currentUser &&
  14. currentUser.profile &&
  15. Utils.boardView() === 'board-view-swimlanes'
  16. )
  17. return (
  18. currentCard &&
  19. currentCard.listId === listId &&
  20. currentCard.swimlaneId === swimlaneId
  21. );
  22. else return currentCard && currentCard.listId === listId;
  23. // https://github.com/wekan/wekan/issues/1623
  24. // https://github.com/ChronikEwok/wekan/commit/cad9b20451bb6149bfb527a99b5001873b06c3de
  25. // TODO: In public board, if you would like to switch between List/Swimlane view, you could
  26. // 1) If there is no view cookie, save to cookie board-view-lists
  27. // board-view-lists / board-view-swimlanes / board-view-cal
  28. // 2) If public user changes clicks board-view-lists then change view and
  29. // then change view and save cookie with view value
  30. // without using currentuser above, because currentuser is null.
  31. }
  32. function initSortable(boardComponent, $listsDom) {
  33. // We want to animate the card details window closing. We rely on CSS
  34. // transition for the actual animation.
  35. $listsDom._uihooks = {
  36. removeElement(node) {
  37. const removeNode = _.once(() => {
  38. node.parentNode.removeChild(node);
  39. });
  40. if ($(node).hasClass('js-card-details')) {
  41. $(node).css({
  42. flexBasis: 0,
  43. padding: 0,
  44. });
  45. $listsDom.one(CSSEvents.transitionend, removeNode);
  46. } else {
  47. removeNode();
  48. }
  49. },
  50. };
  51. $listsDom.sortable({
  52. tolerance: 'pointer',
  53. helper: 'clone',
  54. items: '.js-list:not(.js-list-composer)',
  55. placeholder: 'list placeholder',
  56. distance: 7,
  57. start(evt, ui) {
  58. ui.placeholder.height(ui.helper.height());
  59. EscapeActions.executeUpTo('popup-close');
  60. boardComponent.setIsDragging(true);
  61. },
  62. stop(evt, ui) {
  63. // To attribute the new index number, we need to get the DOM element
  64. // of the previous and the following card -- if any.
  65. const prevListDom = ui.item.prev('.js-list').get(0);
  66. const nextListDom = ui.item.next('.js-list').get(0);
  67. const sortIndex = calculateIndex(prevListDom, nextListDom, 1);
  68. $listsDom.sortable('cancel');
  69. const listDomElement = ui.item.get(0);
  70. const list = Blaze.getData(listDomElement);
  71. Lists.update(list._id, {
  72. $set: {
  73. sort: sortIndex.base,
  74. },
  75. });
  76. boardComponent.setIsDragging(false);
  77. },
  78. });
  79. //function userIsMember() {
  80. // return (
  81. // Meteor.user() &&
  82. // Meteor.user().isBoardMember() &&
  83. // !Meteor.user().isCommentOnly() &&
  84. // !Meteor.user().isWorker()
  85. // );
  86. //}
  87. boardComponent.autorun(() => {
  88. if (Utils.isMiniScreenOrShowDesktopDragHandles()) {
  89. $listsDom.sortable({
  90. handle: '.js-list-handle',
  91. });
  92. } else {
  93. $listsDom.sortable({
  94. handle: '.js-list-header',
  95. });
  96. }
  97. const $listDom = $listsDom;
  98. if ($listDom.data('uiSortable') || $listDom.data('sortable')) {
  99. $listsDom.sortable(
  100. 'option',
  101. 'disabled',
  102. // Disable drag-dropping when user is not member/is worker
  103. //!userIsMember() || Meteor.user().isWorker(),
  104. !Meteor.user() || !Meteor.user().isBoardAdmin(),
  105. // Not disable drag-dropping while in multi-selection mode
  106. // MultiSelection.isActive() || !userIsMember(),
  107. );
  108. }
  109. });
  110. }
  111. BlazeComponent.extendComponent({
  112. onRendered() {
  113. const boardComponent = this.parentComponent();
  114. const $listsDom = this.$('.js-lists');
  115. if (!Utils.getCurrentCardId()) {
  116. boardComponent.scrollLeft();
  117. }
  118. initSortable(boardComponent, $listsDom);
  119. },
  120. onCreated() {
  121. this.draggingActive = new ReactiveVar(false);
  122. this._isDragging = false;
  123. this._lastDragPositionX = 0;
  124. },
  125. id() {
  126. return this._id;
  127. },
  128. currentCardIsInThisList(listId, swimlaneId) {
  129. return currentCardIsInThisList(listId, swimlaneId);
  130. },
  131. currentListIsInThisSwimlane(swimlaneId) {
  132. return currentListIsInThisSwimlane(swimlaneId);
  133. },
  134. visible(list) {
  135. if (list.archived) {
  136. // Show archived list only when filter archive is on or archive is selected
  137. if (!(Filter.archive.isSelected() || archivedRequested)) {
  138. return false;
  139. }
  140. }
  141. if (Filter.lists._isActive()) {
  142. if (!list.title.match(Filter.lists.getRegexSelector())) {
  143. return false;
  144. }
  145. }
  146. if (Filter.hideEmpty.isSelected()) {
  147. const swimlaneId = this.parentComponent()
  148. .parentComponent()
  149. .data()._id;
  150. const cards = list.cards(swimlaneId);
  151. if (cards.count() === 0) {
  152. return false;
  153. }
  154. }
  155. return true;
  156. },
  157. events() {
  158. return [
  159. {
  160. // Click-and-drag action
  161. 'mousedown .board-canvas'(evt) {
  162. // Translating the board canvas using the click-and-drag action can
  163. // conflict with the build-in browser mechanism to select text. We
  164. // define a list of elements in which we disable the dragging because
  165. // the user will legitimately expect to be able to select some text with
  166. // his mouse.
  167. const noDragInside = ['a', 'input', 'textarea', 'p'].concat(
  168. Utils.isMiniScreenOrShowDesktopDragHandles()
  169. ? ['.js-list-handle', '.js-swimlane-header-handle']
  170. : ['.js-list-header'],
  171. );
  172. if (
  173. $(evt.target).closest(noDragInside.join(',')).length === 0 &&
  174. this.$('.swimlane').prop('clientHeight') > evt.offsetY
  175. ) {
  176. this._isDragging = true;
  177. this._lastDragPositionX = evt.clientX;
  178. }
  179. },
  180. mouseup() {
  181. if (this._isDragging) {
  182. this._isDragging = false;
  183. }
  184. },
  185. mousemove(evt) {
  186. if (this._isDragging) {
  187. // Update the canvas position
  188. this.listsDom.scrollLeft -= evt.clientX - this._lastDragPositionX;
  189. this._lastDragPositionX = evt.clientX;
  190. // Disable browser text selection while dragging
  191. evt.stopPropagation();
  192. evt.preventDefault();
  193. // Don't close opened card or inlined form at the end of the
  194. // click-and-drag.
  195. EscapeActions.executeUpTo('popup-close');
  196. EscapeActions.preventNextClick();
  197. }
  198. },
  199. },
  200. ];
  201. },
  202. }).register('swimlane');
  203. BlazeComponent.extendComponent({
  204. onCreated() {
  205. this.currentBoard = Boards.findOne(Session.get('currentBoard'));
  206. this.isListTemplatesSwimlane =
  207. this.currentBoard.isTemplatesBoard() &&
  208. this.currentData().isListTemplatesSwimlane();
  209. this.currentSwimlane = this.currentData();
  210. },
  211. // Proxy
  212. open() {
  213. this.childComponents('inlinedForm')[0].open();
  214. },
  215. events() {
  216. return [
  217. {
  218. submit(evt) {
  219. evt.preventDefault();
  220. const lastList = this.currentBoard.getLastList();
  221. const sortIndex = Utils.calculateIndexData(lastList, null).base;
  222. const titleInput = this.find('.list-name-input');
  223. const title = titleInput.value.trim();
  224. if (title) {
  225. Lists.insert({
  226. title,
  227. boardId: Session.get('currentBoard'),
  228. sort: sortIndex,
  229. type: this.isListTemplatesSwimlane ? 'template-list' : 'list',
  230. swimlaneId: this.currentBoard.isTemplatesBoard()
  231. ? this.currentSwimlane._id
  232. : '',
  233. });
  234. titleInput.value = '';
  235. titleInput.focus();
  236. }
  237. },
  238. 'click .js-list-template': Popup.open('searchElement'),
  239. },
  240. ];
  241. },
  242. }).register('addListForm');
  243. Template.swimlane.helpers({
  244. canSeeAddList() {
  245. return Meteor.user().isBoardAdmin();
  246. /*
  247. Meteor.user() &&
  248. Meteor.user().isBoardMember() &&
  249. !Meteor.user().isCommentOnly() &&
  250. !Meteor.user().isWorker()
  251. */
  252. },
  253. });
  254. BlazeComponent.extendComponent({
  255. currentCardIsInThisList(listId, swimlaneId) {
  256. return currentCardIsInThisList(listId, swimlaneId);
  257. },
  258. visible(list) {
  259. if (list.archived) {
  260. // Show archived list only when filter archive is on or archive is selected
  261. if (!(Filter.archive.isSelected() || archivedRequested)) {
  262. return false;
  263. }
  264. }
  265. if (Filter.lists._isActive()) {
  266. if (!list.title.match(Filter.lists.getRegexSelector())) {
  267. return false;
  268. }
  269. }
  270. if (Filter.hideEmpty.isSelected()) {
  271. const swimlaneId = this.parentComponent()
  272. .parentComponent()
  273. .data()._id;
  274. const cards = list.cards(swimlaneId);
  275. if (cards.count() === 0) {
  276. return false;
  277. }
  278. }
  279. return true;
  280. },
  281. onRendered() {
  282. const boardComponent = this.parentComponent();
  283. const $listsDom = this.$('.js-lists');
  284. if (!Utils.getCurrentCardId()) {
  285. boardComponent.scrollLeft();
  286. }
  287. initSortable(boardComponent, $listsDom);
  288. },
  289. }).register('listsGroup');
  290. class MoveSwimlaneComponent extends BlazeComponent {
  291. serverMethod = 'moveSwimlane';
  292. onCreated() {
  293. this.currentSwimlane = this.currentData();
  294. }
  295. board() {
  296. return Boards.findOne(Session.get('currentBoard'));
  297. }
  298. toBoardsSelector() {
  299. return {
  300. archived: false,
  301. 'members.userId': Meteor.userId(),
  302. type: 'board',
  303. _id: { $ne: this.board()._id },
  304. };
  305. }
  306. toBoards() {
  307. return Boards.find(this.toBoardsSelector(), { sort: { title: 1 } });
  308. }
  309. events() {
  310. return [
  311. {
  312. 'click .js-done'() {
  313. // const swimlane = Swimlanes.findOne(this.currentSwimlane._id);
  314. const bSelect = $('.js-select-boards')[0];
  315. let boardId;
  316. if (bSelect) {
  317. boardId = bSelect.options[bSelect.selectedIndex].value;
  318. Meteor.call(this.serverMethod, this.currentSwimlane._id, boardId);
  319. }
  320. Popup.back();
  321. },
  322. },
  323. ];
  324. }
  325. }
  326. MoveSwimlaneComponent.register('moveSwimlanePopup');
  327. (class extends MoveSwimlaneComponent {
  328. serverMethod = 'copySwimlane';
  329. toBoardsSelector() {
  330. const selector = super.toBoardsSelector();
  331. delete selector._id;
  332. return selector;
  333. }
  334. }.register('copySwimlanePopup'));