Fix lint errors.

This commit is contained in:
Lauri Ojansivu 2017-06-02 19:18:31 +03:00
parent 3b6c1baff3
commit bee9bf2226

View file

@ -1,73 +1,74 @@
BlazeComponent.extendComponent({ BlazeComponent.extendComponent({
editTitle(evt) { editTitle(evt) {
evt.preventDefault(); evt.preventDefault();
const newTitle = this.childComponents('inlinedForm')[0].getValue().trim(); const newTitle = this.childComponents('inlinedForm')[0].getValue().trim();
const list = this.currentData(); const list = this.currentData();
if (newTitle) { if (newTitle) {
list.rename(newTitle.trim()); list.rename(newTitle.trim());
} }
}, },
isWatching() { isWatching() {
const list = this.currentData(); const list = this.currentData();
return list.findWatcher(Meteor.userId()); return list.findWatcher(Meteor.userId());
}, },
limitToShowCardsCount() { limitToShowCardsCount() {
return Meteor.user().getLimitToShowCardsCount(); return Meteor.user().getLimitToShowCardsCount();
}, },
showCardsCountForList(count) { showCardsCountForList(count) {
return count > this.limitToShowCardsCount(); return count > this.limitToShowCardsCount();
}, },
events() { events() {
return [{ return [{
'click .js-open-list-menu': Popup.open('listAction'), 'click .js-open-list-menu': Popup.open('listAction'),
submit: this.editTitle, submit: this.editTitle,
}]; }];
}, },
}).register('listHeader'); }).register('listHeader');
Template.listActionPopup.helpers({ Template.listActionPopup.helpers({
isWatching() { isWatching() {
return this.findWatcher(Meteor.userId()); return this.findWatcher(Meteor.userId());
}, },
}); });
Template.listActionPopup.events({ Template.listActionPopup.events({
'click .js-add-card' () { 'click .js-add-card' () {
const listDom = document.getElementById(`js-list-${this._id}`); const listDom = document.getElementById(`js-list-${this._id}`);
const listComponent = BlazeComponent.getComponentForElement(listDom); const listComponent = BlazeComponent.getComponentForElement(listDom);
listComponent.openForm({ position: 'top' }); listComponent.openForm({
Popup.close(); position: 'top'
});
Popup.close();
}, },
'click .js-list-subscribe' () {}, 'click .js-list-subscribe' () {},
'click .js-select-cards' () { 'click .js-select-cards' () {
const cardIds = this.allCards().map((card) => card._id); const cardIds = this.allCards().map((card) => card._id);
MultiSelection.add(cardIds); MultiSelection.add(cardIds);
Popup.close(); Popup.close();
}, },
'click .js-toggle-watch-list' () { 'click .js-toggle-watch-list' () {
const currentList = this; const currentList = this;
const level = currentList.findWatcher(Meteor.userId()) ? null : 'watching'; const level = currentList.findWatcher(Meteor.userId()) ? null : 'watching';
Meteor.call('watch', 'list', currentList._id, level, (err, ret) => { Meteor.call('watch', 'list', currentList._id, level, (err, ret) => {
if (!err && ret) Popup.close(); if (!err && ret) Popup.close();
}); });
}, },
'click .js-close-list' (evt) { 'click .js-close-list' (evt) {
evt.preventDefault(); evt.preventDefault();
this.archive(); this.archive();
Popup.close(); Popup.close();
}, },
'click .js-more': Popup.open('listMore'), 'click .js-more': Popup.open('listMore'),
}); });
Template.listMorePopup.events({ Template.listMorePopup.events({
'click .js-delete': Popup.afterConfirm('listDelete', function() { 'click .js-delete': Popup.afterConfirm('listDelete', function () {
Popup.close(); Popup.close();
Lists.remove(this._id); Lists.remove(this._id);
Utils.goBoardId(this.boardId); Utils.goBoardId(this.boardId);
}), }),
}); });