2015-09-03 23:12:46 +02:00
|
|
|
const subManager = new SubsManager();
|
2018-03-16 22:13:40 -03:00
|
|
|
const { calculateIndex } = Utils;
|
2015-08-22 22:59:03 +02:00
|
|
|
|
Renaissance
_,,ad8888888888bba,_
,ad88888I888888888888888ba,
,88888888I88888888888888888888a,
,d888888888I8888888888888888888888b,
d88888PP"""" ""YY88888888888888888888b,
,d88"'__,,--------,,,,.;ZZZY8888888888888,
,8IIl'" ;;l"ZZZIII8888888888,
,I88l;' ;lZZZZZ888III8888888,
,II88Zl;. ;llZZZZZ888888I888888,
,II888Zl;. .;;;;;lllZZZ888888I8888b
,II8888Z;; `;;;;;''llZZ8888888I8888,
II88888Z;' .;lZZZ8888888I888b
II88888Z; _,aaa, .,aaaaa,__.l;llZZZ88888888I888
II88888IZZZZZZZZZ, .ZZZZZZZZZZZZZZ;llZZ88888888I888,
II88888IZZ<'(@@>Z| |ZZZ<'(@@>ZZZZ;;llZZ888888888I88I
,II88888; `""" ;| |ZZ; `""" ;;llZ8888888888I888
II888888l `;; .;llZZ8888888888I888,
,II888888Z; ;;; .;;llZZZ8888888888I888I
III888888Zl; .., `;; ,;;lllZZZ88888888888I888
II88888888Z;;...;(_ _) ,;;;llZZZZ88888888888I888,
II88888888Zl;;;;;' `--'Z;. .,;;;;llZZZZ88888888888I888b
]I888888888Z;;;;' ";llllll;..;;;lllZZZZ88888888888I8888,
II888888888Zl.;;"Y88bd888P";;,..;lllZZZZZ88888888888I8888I
II8888888888Zl;.; `"PPP";;;,..;lllZZZZZZZ88888888888I88888
II888888888888Zl;;. `;;;l;;;;lllZZZZZZZZW88888888888I88888
`II8888888888888Zl;. ,;;lllZZZZZZZZWMZ88888888888I88888
II8888888888888888ZbaalllZZZZZZZZZWWMZZZ8888888888I888888,
`II88888888888888888b"WWZZZZZWWWMMZZZZZZI888888888I888888b
`II88888888888888888;ZZMMMMMMZZZZZZZZllI888888888I8888888
`II8888888888888888 `;lZZZZZZZZZZZlllll888888888I8888888,
II8888888888888888, `;lllZZZZllllll;;.Y88888888I8888888b,
,II8888888888888888b .;;lllllll;;;.;..88888888I88888888b,
II888888888888888PZI;. .`;;;.;;;..; ...88888888I8888888888,
II888888888888PZ;;';;. ;. .;. .;. .. Y8888888I88888888888b,
,II888888888PZ;;' `8888888I8888888888888b,
II888888888' 888888I8888888888888888
,II888888888 ,888888I8888888888888888
,d88888888888 d888888I8888888888ZZZZZZ
,ad888888888888I 8888888I8888ZZZZZZZZZZZZ
888888888888888' 888888IZZZZZZZZZZZZZZZZZ
8888888888P'8P' Y888ZZZZZZZZZZZZZZZZZZZZ
888888888, " ,ZZZZZZZZZZZZZZZZZZZZZZZ
8888888888, ,ZZZZZZZZZZZZZZZZZZZZZZZZZZ
888888888888a, _ ,ZZZZZZZZZZZZZZZZZZZZ88888888
888888888888888ba,_d' ,ZZZZZZZZZZZZZZZZZ8888888888888
8888888888888888888888bbbaaa,,,______,ZZZZZZZZZZZZZZZ88888888888888888
88888888888888888888888888888888888ZZZZZZZZZZZZZZZ88888888888888888888
8888888888888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888
888888888888888888888888888888888ZZZZZZZZZZZZZZ88888888888888888888888
8888888888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888888
88888888888888888888888888888ZZZZZZZZZZZZZZ888888888888888888888888888
8888888888888888888888888888ZZZZZZZZZZZZZZ88888888888888888 Normand 8
88888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888 Veilleux 8
8888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888888888888
2015-05-12 19:20:58 +02:00
|
|
|
BlazeComponent.extendComponent({
|
2015-09-03 23:12:46 +02:00
|
|
|
onCreated() {
|
2015-08-31 19:39:56 +02:00
|
|
|
this.isBoardReady = new ReactiveVar(false);
|
2015-08-22 22:59:03 +02:00
|
|
|
|
2015-08-23 01:05:59 +02:00
|
|
|
// The pattern we use to manually handle data loading is described here:
|
|
|
|
// https://kadira.io/academy/meteor-routing-guide/content/subscriptions-and-data-management/using-subs-manager
|
2015-08-22 22:59:03 +02:00
|
|
|
// XXX The boardId should be readed from some sort the component "props",
|
|
|
|
// unfortunatly, Blaze doesn't have this notion.
|
2015-08-31 19:39:56 +02:00
|
|
|
this.autorun(() => {
|
2015-09-03 23:12:46 +02:00
|
|
|
const currentBoardId = Session.get('currentBoard');
|
|
|
|
if (!currentBoardId)
|
2015-08-31 19:39:56 +02:00
|
|
|
return;
|
2015-09-03 23:12:46 +02:00
|
|
|
const handle = subManager.subscribe('board', currentBoardId);
|
2015-08-31 19:39:56 +02:00
|
|
|
Tracker.nonreactive(() => {
|
|
|
|
Tracker.autorun(() => {
|
|
|
|
this.isBoardReady.set(handle.ready());
|
2015-09-03 23:12:46 +02:00
|
|
|
});
|
|
|
|
});
|
2015-08-23 01:05:59 +02:00
|
|
|
});
|
2018-03-16 22:13:40 -03:00
|
|
|
},
|
2015-08-28 03:35:18 +02:00
|
|
|
|
2018-03-16 22:13:40 -03:00
|
|
|
onlyShowCurrentCard() {
|
|
|
|
return Utils.isMiniScreen() && Session.get('currentCard');
|
|
|
|
},
|
|
|
|
|
|
|
|
}).register('board');
|
2015-08-28 05:11:45 +02:00
|
|
|
|
2018-03-16 22:13:40 -03:00
|
|
|
BlazeComponent.extendComponent({
|
|
|
|
onCreated() {
|
|
|
|
this.showOverlay = new ReactiveVar(false);
|
|
|
|
this.draggingActive = new ReactiveVar(false);
|
|
|
|
this._isDragging = false;
|
2015-08-28 05:11:45 +02:00
|
|
|
// Used to set the overlay
|
2015-08-31 19:39:56 +02:00
|
|
|
this.mouseHasEnterCardDetails = false;
|
2015-05-29 23:35:30 +02:00
|
|
|
},
|
2018-03-16 22:13:40 -03:00
|
|
|
onRendered() {
|
|
|
|
const boardComponent = this;
|
|
|
|
const $swimlanesDom = boardComponent.$('.js-swimlanes');
|
2015-05-29 23:35:30 +02:00
|
|
|
|
2018-03-16 22:13:40 -03:00
|
|
|
$swimlanesDom.sortable({
|
|
|
|
tolerance: 'pointer',
|
|
|
|
appendTo: '.board-canvas',
|
|
|
|
helper: 'clone',
|
|
|
|
handle: '.js-swimlane-header',
|
|
|
|
items: '.js-swimlane:not(.placeholder)',
|
|
|
|
placeholder: 'swimlane placeholder',
|
|
|
|
distance: 7,
|
|
|
|
start(evt, ui) {
|
|
|
|
ui.placeholder.height(ui.helper.height());
|
|
|
|
EscapeActions.executeUpTo('popup-close');
|
|
|
|
boardComponent.setIsDragging(true);
|
|
|
|
},
|
|
|
|
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 prevSwimlaneDom = ui.item.prev('.js-swimlane').get(0);
|
|
|
|
const nextSwimlaneDom = ui.item.next('.js-swimlane').get(0);
|
|
|
|
const sortIndex = calculateIndex(prevSwimlaneDom, nextSwimlaneDom, 1);
|
2015-05-23 22:23:27 +02:00
|
|
|
|
2018-03-16 22:13:40 -03:00
|
|
|
$swimlanesDom.sortable('cancel');
|
|
|
|
const swimlaneDomElement = ui.item.get(0);
|
|
|
|
const swimlane = Blaze.getData(swimlaneDomElement);
|
|
|
|
|
|
|
|
Swimlanes.update(swimlane._id, {
|
|
|
|
$set: {
|
|
|
|
sort: sortIndex.base,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
boardComponent.setIsDragging(false);
|
|
|
|
},
|
2015-08-31 23:14:31 +02:00
|
|
|
});
|
Renaissance
_,,ad8888888888bba,_
,ad88888I888888888888888ba,
,88888888I88888888888888888888a,
,d888888888I8888888888888888888888b,
d88888PP"""" ""YY88888888888888888888b,
,d88"'__,,--------,,,,.;ZZZY8888888888888,
,8IIl'" ;;l"ZZZIII8888888888,
,I88l;' ;lZZZZZ888III8888888,
,II88Zl;. ;llZZZZZ888888I888888,
,II888Zl;. .;;;;;lllZZZ888888I8888b
,II8888Z;; `;;;;;''llZZ8888888I8888,
II88888Z;' .;lZZZ8888888I888b
II88888Z; _,aaa, .,aaaaa,__.l;llZZZ88888888I888
II88888IZZZZZZZZZ, .ZZZZZZZZZZZZZZ;llZZ88888888I888,
II88888IZZ<'(@@>Z| |ZZZ<'(@@>ZZZZ;;llZZ888888888I88I
,II88888; `""" ;| |ZZ; `""" ;;llZ8888888888I888
II888888l `;; .;llZZ8888888888I888,
,II888888Z; ;;; .;;llZZZ8888888888I888I
III888888Zl; .., `;; ,;;lllZZZ88888888888I888
II88888888Z;;...;(_ _) ,;;;llZZZZ88888888888I888,
II88888888Zl;;;;;' `--'Z;. .,;;;;llZZZZ88888888888I888b
]I888888888Z;;;;' ";llllll;..;;;lllZZZZ88888888888I8888,
II888888888Zl.;;"Y88bd888P";;,..;lllZZZZZ88888888888I8888I
II8888888888Zl;.; `"PPP";;;,..;lllZZZZZZZ88888888888I88888
II888888888888Zl;;. `;;;l;;;;lllZZZZZZZZW88888888888I88888
`II8888888888888Zl;. ,;;lllZZZZZZZZWMZ88888888888I88888
II8888888888888888ZbaalllZZZZZZZZZWWMZZZ8888888888I888888,
`II88888888888888888b"WWZZZZZWWWMMZZZZZZI888888888I888888b
`II88888888888888888;ZZMMMMMMZZZZZZZZllI888888888I8888888
`II8888888888888888 `;lZZZZZZZZZZZlllll888888888I8888888,
II8888888888888888, `;lllZZZZllllll;;.Y88888888I8888888b,
,II8888888888888888b .;;lllllll;;;.;..88888888I88888888b,
II888888888888888PZI;. .`;;;.;;;..; ...88888888I8888888888,
II888888888888PZ;;';;. ;. .;. .;. .. Y8888888I88888888888b,
,II888888888PZ;;' `8888888I8888888888888b,
II888888888' 888888I8888888888888888
,II888888888 ,888888I8888888888888888
,d88888888888 d888888I8888888888ZZZZZZ
,ad888888888888I 8888888I8888ZZZZZZZZZZZZ
888888888888888' 888888IZZZZZZZZZZZZZZZZZ
8888888888P'8P' Y888ZZZZZZZZZZZZZZZZZZZZ
888888888, " ,ZZZZZZZZZZZZZZZZZZZZZZZ
8888888888, ,ZZZZZZZZZZZZZZZZZZZZZZZZZZ
888888888888a, _ ,ZZZZZZZZZZZZZZZZZZZZ88888888
888888888888888ba,_d' ,ZZZZZZZZZZZZZZZZZ8888888888888
8888888888888888888888bbbaaa,,,______,ZZZZZZZZZZZZZZZ88888888888888888
88888888888888888888888888888888888ZZZZZZZZZZZZZZZ88888888888888888888
8888888888888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888
888888888888888888888888888888888ZZZZZZZZZZZZZZ88888888888888888888888
8888888888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888888
88888888888888888888888888888ZZZZZZZZZZZZZZ888888888888888888888888888
8888888888888888888888888888ZZZZZZZZZZZZZZ88888888888888888 Normand 8
88888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888 Veilleux 8
8888888888888888888888888ZZZZZZZZZZZZZZ8888888888888888888888888888888
2015-05-12 19:20:58 +02:00
|
|
|
|
2018-03-16 22:13:40 -03:00
|
|
|
function userIsMember() {
|
|
|
|
return Meteor.user() && Meteor.user().isBoardMember() && !Meteor.user().isCommentOnly();
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there is no data in the board (ie, no lists) we autofocus the list
|
|
|
|
// creation form by clicking on the corresponding element.
|
|
|
|
const currentBoard = Boards.findOne(Session.get('currentBoard'));
|
|
|
|
if (userIsMember() && currentBoard.lists().count() === 0) {
|
|
|
|
boardComponent.openNewListForm();
|
|
|
|
}
|
2015-12-17 14:23:35 +08:00
|
|
|
},
|
|
|
|
|
2018-01-22 23:35:23 -03:00
|
|
|
isViewSwimlanes() {
|
|
|
|
const currentBoardId = Session.get('currentBoard');
|
|
|
|
const board = Boards.findOne(currentBoardId);
|
|
|
|
return (board.view === 'board-view-swimlanes');
|
|
|
|
},
|
|
|
|
|
|
|
|
isViewLists() {
|
|
|
|
const currentBoardId = Session.get('currentBoard');
|
|
|
|
const board = Boards.findOne(currentBoardId);
|
|
|
|
return (board.view === 'board-view-lists');
|
|
|
|
},
|
|
|
|
|
2018-03-16 22:13:40 -03:00
|
|
|
openNewListForm() {
|
|
|
|
if (this.isViewSwimlanes()) {
|
|
|
|
this.childComponents('swimlane')[0]
|
|
|
|
.childComponents('addListAndSwimlaneForm')[0].open();
|
|
|
|
} else if (this.isViewLists()) {
|
|
|
|
this.childComponents('listsGroup')[0]
|
|
|
|
.childComponents('addListForm')[0].open();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-09-03 23:12:46 +02:00
|
|
|
events() {
|
2015-06-06 12:07:52 +02:00
|
|
|
return [{
|
|
|
|
// XXX The board-overlay div should probably be moved to the parent
|
|
|
|
// component.
|
2015-09-03 23:12:46 +02:00
|
|
|
'mouseenter .board-overlay'() {
|
2015-08-28 05:11:45 +02:00
|
|
|
if (this.mouseHasEnterCardDetails) {
|
|
|
|
this.showOverlay.set(false);
|
|
|
|
}
|
2015-08-28 03:35:18 +02:00
|
|
|
},
|
2015-09-03 23:12:46 +02:00
|
|
|
'mouseup'() {
|
2015-08-28 03:35:18 +02:00
|
|
|
if (this._isDragging) {
|
|
|
|
this._isDragging = false;
|
|
|
|
}
|
|
|
|
},
|
2015-06-06 12:07:52 +02:00
|
|
|
}];
|
2015-09-03 23:12:46 +02:00
|
|
|
},
|
2018-03-16 22:13:40 -03:00
|
|
|
|
|
|
|
// XXX Flow components allow us to avoid creating these two setter methods by
|
|
|
|
// exposing a public API to modify the component state. We need to investigate
|
|
|
|
// best practices here.
|
|
|
|
setIsDragging(bool) {
|
|
|
|
this.draggingActive.set(bool);
|
|
|
|
},
|
|
|
|
|
|
|
|
scrollLeft(position = 0) {
|
2018-03-17 00:31:19 -03:00
|
|
|
const swimlanes = this.$('.js-swimlanes');
|
|
|
|
swimlanes && swimlanes.animate({
|
2018-03-16 22:13:40 -03:00
|
|
|
scrollLeft: position,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
}).register('boardBody');
|