123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- var subManager = new SubsManager();
- BlazeComponent.extendComponent({
- template: function() {
- return 'board';
- },
- onCreated: function() {
- var self = this;
- self.draggingActive = new ReactiveVar(false);
- self.showOverlay = new ReactiveVar(false);
- self.isBoardReady = new ReactiveVar(false);
- // 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
- // XXX The boardId should be readed from some sort the component "props",
- // unfortunatly, Blaze doesn't have this notion.
- self.autorun(function() {
- var handle = subManager.subscribe('board', Session.get('currentBoard'));
- self.isBoardReady.set(handle.ready());
- });
- self._isDragging = false;
- self._lastDragPositionX = 0;
- },
- openNewListForm: function() {
- this.componentChildren('addListForm')[0].open();
- },
- // 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: function(bool) {
- this.draggingActive.set(bool);
- },
- scrollLeft: function(position) {
- position = position || 0;
- var $container = $(this.listsDom);
- var containerWidth = $container.width();
- var currentScrollPosition = $container.scrollLeft();
- if (position < currentScrollPosition) {
- $container.animate({
- scrollLeft: position
- });
- } else if (position > currentScrollPosition + containerWidth) {
- $container.animate({
- scrollLeft: Math.max(0, position - containerWidth)
- });
- }
- },
- currentCardIsInThisList: function() {
- var currentCard = Cards.findOne(Session.get('currentCard'));
- var listId = this.currentData()._id;
- return currentCard && currentCard.listId === listId;
- },
- sidebarSize: function() {
- var sidebar = this.componentChildren('sidebar')[0];
- if (sidebar && sidebar.isOpen())
- return 'next-sidebar';
- },
- events: function() {
- return [{
- // XXX The board-overlay div should probably be moved to the parent
- // component.
- 'mouseenter .board-overlay': function() {
- this.showOverlay.set(false);
- },
- // Click-and-drag action
- 'mousedown .board-canvas': function(evt) {
- if ($(evt.target).closest('a,.js-list-header').length === 0) {
- this._isDragging = true;
- this._lastDragPositionX = evt.clientX;
- }
- },
- 'mouseup': function(evt) {
- if (this._isDragging) {
- this._isDragging = false;
- }
- },
- 'mousemove': function(evt) {
- if (this._isDragging) {
- // Update the canvas position
- this.listsDom.scrollLeft -= evt.clientX - this._lastDragPositionX;
- this._lastDragPositionX = evt.clientX;
- // Disable browser text selection while dragging
- evt.stopPropagation();
- evt.preventDefault();
- // Don't close opened card or inlined form at the end of the
- // click-and-drag.
- EscapeActions.executeUpTo('popup-close');
- EscapeActions.preventNextClick();
- }
- }
- }];
- }
- }).register('board');
- Template.boardBody.onRendered(function() {
- var self = BlazeComponent.getComponentForElement(this.firstNode);
- self.scrollLeft();
- self.listsDom = this.find('.js-lists');
- // We want to animate the card details window closing. We rely on CSS
- // transition for the actual animation.
- self.listsDom._uihooks = {
- removeElement: function(node) {
- var removeNode = _.once(function() {
- node.parentNode.removeChild(node);
- });
- if ($(node).hasClass('js-card-details')) {
- $(node).css({
- flexBasis: 0,
- padding: 0
- });
- $(self.listsDom).one(CSSEvents.transitionend, removeNode);
- } else {
- removeNode();
- }
- }
- };
- if (! Meteor.user() || ! Meteor.user().isBoardMember())
- return;
- self.$(self.listsDom).sortable({
- tolerance: 'pointer',
- helper: 'clone',
- handle: '.js-list-header',
- items: '.js-list:not(.js-list-composer)',
- placeholder: 'list placeholder',
- distance: 7,
- start: function(evt, ui) {
- ui.placeholder.height(ui.helper.height());
- Popup.close();
- },
- stop: function() {
- self.$('.js-lists').find('.js-list:not(.js-list-composer)').each(
- function(i, list) {
- var data = Blaze.getData(list);
- Lists.update(data._id, {
- $set: {
- sort: i
- }
- });
- }
- );
- }
- });
- // Disable drag-dropping while in multi-selection mode
- self.autorun(function() {
- self.$(self.listsDom).sortable('option', 'disabled',
- MultiSelection.isActive());
- });
- // If there is no data in the board (ie, no lists) we autofocus the list
- // creation form by clicking on the corresponding element.
- var currentBoard = Boards.findOne(Session.get('currentBoard'));
- if (currentBoard.lists().count() === 0) {
- self.openNewListForm();
- }
- });
- BlazeComponent.extendComponent({
- template: function() {
- return 'addListForm';
- },
- // Proxy
- open: function() {
- this.componentChildren('inlinedForm')[0].open();
- },
- events: function() {
- return [{
- submit: function(evt) {
- evt.preventDefault();
- var title = this.find('.list-name-input');
- if ($.trim(title.value)) {
- Lists.insert({
- title: title.value,
- boardId: Session.get('currentBoard'),
- sort: $('.list').length
- });
- title.value = '';
- }
- }
- }];
- }
- }).register('addListForm');
|