mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
45 lines
1.4 KiB
JavaScript
45 lines
1.4 KiB
JavaScript
// Template.cards.events({
|
|
// 'click .member': Popup.open('cardMember')
|
|
// });
|
|
|
|
BlazeComponent.extendComponent({
|
|
template: function() {
|
|
return 'minicard';
|
|
},
|
|
|
|
isSelected: function() {
|
|
return Session.equals('currentCard', this.currentData()._id);
|
|
},
|
|
|
|
toggleMultiSelection: function(evt) {
|
|
evt.stopPropagation();
|
|
evt.preventDefault();
|
|
MultiSelection.toogle(this.currentData()._id);
|
|
},
|
|
|
|
clickOnMiniCard: function(evt) {
|
|
if (MultiSelection.isActive() || evt.shiftKey) {
|
|
evt.stopImmediatePropagation();
|
|
evt.preventDefault();
|
|
var methodName = evt.shiftKey ? 'toogleRange' : 'toogle';
|
|
MultiSelection[methodName](this.currentData()._id);
|
|
|
|
// If the card is already selected, we want to de-select it.
|
|
// XXX We should probably modify the minicard href attribute instead of
|
|
// overwriting the event in case the card is already selected.
|
|
} else if (Session.equals('currentCard', this.currentData()._id)) {
|
|
evt.stopImmediatePropagation();
|
|
evt.preventDefault();
|
|
Utils.goBoardId(Session.get('currentBoard'));
|
|
}
|
|
},
|
|
|
|
events: function() {
|
|
return [{
|
|
submit: this.addCard,
|
|
'click .js-toggle-multi-selection': this.toggleMultiSelection,
|
|
'click .js-minicard': this.clickOnMiniCard,
|
|
'click .open-minicard-composer': this.scrollToBottom
|
|
}];
|
|
}
|
|
}).register('minicard');
|