123456789101112131415161718192021222324252627282930 |
- BlazeComponent.extendComponent({
- template: function() {
- return 'boardList';
- },
- boards: function() {
- return Boards.find({
- archived: false,
- 'members.userId': Meteor.userId()
- }, {
- sort: ['title']
- });
- },
- isStarred: function() {
- var user = Meteor.user();
- return user && user.hasStarred(this.currentData()._id);
- },
- events: function() {
- return [{
- 'click .js-add-board': Popup.open('createBoard'),
- 'click .js-star-board': function(evt) {
- var boardId = this.currentData()._id;
- Meteor.user().toggleBoardStar(boardId);
- evt.preventDefault();
- }
- }];
- }
- }).register('boardList');
|