mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
3.7 KiB
130 lines
3.7 KiB
// XXX Obviously this shouldn't be a global, but this is currently the only way
|
|
// to share a variable between two files.
|
|
|
|
|
|
BlazeComponent.extendComponent({
|
|
template: function() {
|
|
return 'cardDetails';
|
|
},
|
|
|
|
mixins: function() {
|
|
return [Mixins.InfiniteScrolling, Mixins.PerfectScrollbar];
|
|
},
|
|
|
|
calculateNextPeak: function() {
|
|
var altitude = this.find('.js-card-details').scrollHeight;
|
|
this.callFirstWith(this, 'setNextPeak', altitude);
|
|
},
|
|
|
|
reachNextPeak: function() {
|
|
var activitiesComponent = this.componentChildren('activities')[0];
|
|
activitiesComponent.loadNextPage();
|
|
},
|
|
|
|
onCreated: function() {
|
|
this.isLoaded = new ReactiveVar(false);
|
|
this.componentParent().showOverlay.set(true);
|
|
this.componentParent().mouseHasEnterCardDetails = false;
|
|
},
|
|
|
|
onRendered: function() {
|
|
var bodyBoardComponent = this.componentParent();
|
|
var additionalMargin = 550;
|
|
var $cardDetails = this.$(this.firstNode());
|
|
var scollLeft = $cardDetails.offset().left + additionalMargin;
|
|
bodyBoardComponent.scrollLeft(scollLeft);
|
|
},
|
|
|
|
onDestroyed: function() {
|
|
this.componentParent().showOverlay.set(false);
|
|
},
|
|
|
|
updateCard: function(modifier) {
|
|
Cards.update(this.data()._id, {
|
|
$set: modifier
|
|
});
|
|
},
|
|
|
|
events: function() {
|
|
var events = {
|
|
[CSSEvents.animationend + ' .js-card-details']: function() {
|
|
this.isLoaded.set(true);
|
|
}
|
|
};
|
|
|
|
return [_.extend(events, {
|
|
'click .js-close-card-details': function() {
|
|
Utils.goBoardId(this.data().boardId);
|
|
},
|
|
'click .js-open-card-details-menu': Popup.open('cardDetailsActions'),
|
|
'submit .js-card-description': function(evt) {
|
|
evt.preventDefault();
|
|
var description = this.currentComponent().getValue();
|
|
this.updateCard({ description: description });
|
|
},
|
|
'submit .js-card-details-title': function(evt) {
|
|
evt.preventDefault();
|
|
var title = this.currentComponent().getValue();
|
|
if ($.trim(title)) {
|
|
this.updateCard({ title: title });
|
|
}
|
|
},
|
|
'click .js-member': Popup.open('cardMember'),
|
|
'click .js-add-members': Popup.open('cardMembers'),
|
|
'click .js-add-labels': Popup.open('cardLabels'),
|
|
'mouseenter .js-card-details': function() {
|
|
this.componentParent().showOverlay.set(true);
|
|
this.componentParent().mouseHasEnterCardDetails = true;
|
|
}
|
|
})];
|
|
}
|
|
}).register('cardDetails');
|
|
|
|
Template.cardDetailsActionsPopup.events({
|
|
'click .js-members': Popup.open('cardMembers'),
|
|
'click .js-labels': Popup.open('cardLabels'),
|
|
'click .js-attachments': Popup.open('cardAttachments'),
|
|
'click .js-move-card': Popup.open('moveCard'),
|
|
// 'click .js-copy': Popup.open(),
|
|
'click .js-archive': function(evt) {
|
|
evt.preventDefault();
|
|
Cards.update(this._id, {
|
|
$set: {
|
|
archived: true
|
|
}
|
|
});
|
|
Popup.close();
|
|
},
|
|
'click .js-more': Popup.open('cardMore')
|
|
});
|
|
|
|
Template.moveCardPopup.events({
|
|
'click .js-select-list': function() {
|
|
// XXX We should *not* get the currentCard from the global state, but
|
|
// instead from a “component” state.
|
|
var cardId = Session.get('currentCard');
|
|
var newListId = this._id;
|
|
Cards.update(cardId, {
|
|
$set: {
|
|
listId: newListId
|
|
}
|
|
});
|
|
Popup.close();
|
|
}
|
|
});
|
|
|
|
Template.cardMorePopup.events({
|
|
'click .js-delete': Popup.afterConfirm('cardDelete', function() {
|
|
Popup.close();
|
|
Cards.remove(this._id);
|
|
Utils.goBoardId(this.board()._id);
|
|
})
|
|
});
|
|
|
|
// Close the card details pane by pressing escape
|
|
EscapeActions.register('detailsPane',
|
|
function() { Utils.goBoardId(Session.get('currentBoard')); },
|
|
function() { return ! Session.equals('currentCard', null); }, {
|
|
noClickEscapeOn: '.js-card-details,.board-sidebar,#header'
|
|
}
|
|
);
|
|
|