swimlanes.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  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 = Cards.findOne(Session.get('currentCard'));
  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. let showDesktopDragHandles = false;
  89. currentUser = Meteor.user();
  90. if (currentUser) {
  91. showDesktopDragHandles = (currentUser.profile || {})
  92. .showDesktopDragHandles;
  93. } else if (window.localStorage.getItem('showDesktopDragHandles')) {
  94. showDesktopDragHandles = true;
  95. } else {
  96. showDesktopDragHandles = false;
  97. }
  98. if (Utils.isMiniScreen() || showDesktopDragHandles) {
  99. $listsDom.sortable({
  100. handle: '.js-list-handle',
  101. });
  102. } else if (!Utils.isMiniScreen() && !showDesktopDragHandles) {
  103. $listsDom.sortable({
  104. handle: '.js-list-header',
  105. });
  106. }
  107. const $listDom = $listsDom;
  108. if ($listDom.data('uiSortable') || $listDom.data('sortable')) {
  109. $listsDom.sortable(
  110. 'option',
  111. 'disabled',
  112. // Disable drag-dropping when user is not member/is worker
  113. //!userIsMember() || Meteor.user().isWorker(),
  114. !Meteor.user().isBoardAdmin(),
  115. // Not disable drag-dropping while in multi-selection mode
  116. // MultiSelection.isActive() || !userIsMember(),
  117. );
  118. }
  119. });
  120. }
  121. BlazeComponent.extendComponent({
  122. onRendered() {
  123. const boardComponent = this.parentComponent();
  124. const $listsDom = this.$('.js-lists');
  125. if (!Session.get('currentCard')) {
  126. boardComponent.scrollLeft();
  127. }
  128. initSortable(boardComponent, $listsDom);
  129. },
  130. onCreated() {
  131. this.draggingActive = new ReactiveVar(false);
  132. this._isDragging = false;
  133. this._lastDragPositionX = 0;
  134. },
  135. id() {
  136. return this._id;
  137. },
  138. currentCardIsInThisList(listId, swimlaneId) {
  139. return currentCardIsInThisList(listId, swimlaneId);
  140. },
  141. currentListIsInThisSwimlane(swimlaneId) {
  142. return currentListIsInThisSwimlane(swimlaneId);
  143. },
  144. events() {
  145. return [
  146. {
  147. // Click-and-drag action
  148. 'mousedown .board-canvas'(evt) {
  149. // Translating the board canvas using the click-and-drag action can
  150. // conflict with the build-in browser mechanism to select text. We
  151. // define a list of elements in which we disable the dragging because
  152. // the user will legitimately expect to be able to select some text with
  153. // his mouse.
  154. let showDesktopDragHandles = false;
  155. currentUser = Meteor.user();
  156. if (currentUser) {
  157. showDesktopDragHandles = (currentUser.profile || {})
  158. .showDesktopDragHandles;
  159. } else if (window.localStorage.getItem('showDesktopDragHandles')) {
  160. showDesktopDragHandles = true;
  161. } else {
  162. showDesktopDragHandles = false;
  163. }
  164. const noDragInside = ['a', 'input', 'textarea', 'p'].concat(
  165. Utils.isMiniScreen() || showDesktopDragHandles
  166. ? ['.js-list-handle', '.js-swimlane-header-handle']
  167. : ['.js-list-header'],
  168. );
  169. if (
  170. $(evt.target).closest(noDragInside.join(',')).length === 0 &&
  171. this.$('.swimlane').prop('clientHeight') > evt.offsetY
  172. ) {
  173. this._isDragging = true;
  174. this._lastDragPositionX = evt.clientX;
  175. }
  176. },
  177. mouseup() {
  178. if (this._isDragging) {
  179. this._isDragging = false;
  180. }
  181. },
  182. mousemove(evt) {
  183. if (this._isDragging) {
  184. // Update the canvas position
  185. this.listsDom.scrollLeft -= evt.clientX - this._lastDragPositionX;
  186. this._lastDragPositionX = evt.clientX;
  187. // Disable browser text selection while dragging
  188. evt.stopPropagation();
  189. evt.preventDefault();
  190. // Don't close opened card or inlined form at the end of the
  191. // click-and-drag.
  192. EscapeActions.executeUpTo('popup-close');
  193. EscapeActions.preventNextClick();
  194. }
  195. },
  196. },
  197. ];
  198. },
  199. }).register('swimlane');
  200. BlazeComponent.extendComponent({
  201. onCreated() {
  202. this.currentBoard = Boards.findOne(Session.get('currentBoard'));
  203. this.isListTemplatesSwimlane =
  204. this.currentBoard.isTemplatesBoard() &&
  205. this.currentData().isListTemplatesSwimlane();
  206. this.currentSwimlane = this.currentData();
  207. },
  208. // Proxy
  209. open() {
  210. this.childComponents('inlinedForm')[0].open();
  211. },
  212. events() {
  213. return [
  214. {
  215. submit(evt) {
  216. evt.preventDefault();
  217. const titleInput = this.find('.list-name-input');
  218. const title = titleInput.value.trim();
  219. if (title) {
  220. Lists.insert({
  221. title,
  222. boardId: Session.get('currentBoard'),
  223. sort: $('.list').length,
  224. type: this.isListTemplatesSwimlane ? 'template-list' : 'list',
  225. swimlaneId: this.currentBoard.isTemplatesBoard()
  226. ? this.currentSwimlane._id
  227. : '',
  228. });
  229. titleInput.value = '';
  230. titleInput.focus();
  231. }
  232. },
  233. 'click .js-list-template': Popup.open('searchElement'),
  234. },
  235. ];
  236. },
  237. }).register('addListForm');
  238. Template.swimlane.helpers({
  239. showDesktopDragHandles() {
  240. currentUser = Meteor.user();
  241. if (currentUser) {
  242. return (currentUser.profile || {}).showDesktopDragHandles;
  243. } else if (window.localStorage.getItem('showDesktopDragHandles')) {
  244. return true;
  245. } else {
  246. return false;
  247. }
  248. },
  249. canSeeAddList() {
  250. return Meteor.user().isBoardAdmin();
  251. /*
  252. Meteor.user() &&
  253. Meteor.user().isBoardMember() &&
  254. !Meteor.user().isCommentOnly() &&
  255. !Meteor.user().isWorker()
  256. */
  257. },
  258. });
  259. BlazeComponent.extendComponent({
  260. currentCardIsInThisList(listId, swimlaneId) {
  261. return currentCardIsInThisList(listId, swimlaneId);
  262. },
  263. visible(list) {
  264. if (list.archived) {
  265. // Show archived list only when filter archive is on or archive is selected
  266. if (!(Filter.archive.isSelected() || archivedRequested)) {
  267. return false;
  268. }
  269. }
  270. if (Filter.lists._isActive()) {
  271. if (!list.title.match(Filter.lists.getRegexSelector())) {
  272. return false;
  273. }
  274. }
  275. if (Filter.hideEmpty.isSelected()) {
  276. const swimlaneId = this.parentComponent()
  277. .parentComponent()
  278. .data()._id;
  279. const cards = list.cards(swimlaneId);
  280. if (cards.count() === 0) {
  281. return false;
  282. }
  283. }
  284. return true;
  285. },
  286. onRendered() {
  287. const boardComponent = this.parentComponent();
  288. const $listsDom = this.$('.js-lists');
  289. if (!Session.get('currentCard')) {
  290. boardComponent.scrollLeft();
  291. }
  292. initSortable(boardComponent, $listsDom);
  293. },
  294. }).register('listsGroup');
  295. class MoveSwimlaneComponent extends BlazeComponent {
  296. serverMethod = 'moveSwimlane';
  297. onCreated() {
  298. this.currentSwimlane = this.currentData();
  299. }
  300. board() {
  301. return Boards.findOne(Session.get('currentBoard'));
  302. }
  303. toBoardsSelector() {
  304. return {
  305. archived: false,
  306. 'members.userId': Meteor.userId(),
  307. type: 'board',
  308. _id: { $ne: this.board()._id },
  309. };
  310. }
  311. toBoards() {
  312. return Boards.find(this.toBoardsSelector(), { sort: { title: 1 } });
  313. }
  314. events() {
  315. return [
  316. {
  317. 'click .js-done'() {
  318. // const swimlane = Swimlanes.findOne(this.currentSwimlane._id);
  319. const bSelect = $('.js-select-boards')[0];
  320. let boardId;
  321. if (bSelect) {
  322. boardId = bSelect.options[bSelect.selectedIndex].value;
  323. Meteor.call(this.serverMethod, this.currentSwimlane._id, boardId);
  324. }
  325. Popup.close();
  326. },
  327. },
  328. ];
  329. }
  330. }
  331. MoveSwimlaneComponent.register('moveSwimlanePopup');
  332. (class extends MoveSwimlaneComponent {
  333. serverMethod = 'copySwimlane';
  334. toBoardsSelector() {
  335. const selector = super.toBoardsSelector();
  336. delete selector._id;
  337. return selector;
  338. }
  339. }.register('copySwimlanePopup'));