mirror of
https://github.com/wekan/wekan.git
synced 2025-04-24 22:17:16 -04:00
36 lines
947 B
JavaScript
36 lines
947 B
JavaScript
Blaze.registerHelper('currentBoard', () => {
|
|
const boardId = Session.get('currentBoard');
|
|
if (boardId) {
|
|
return Boards.findOne(boardId);
|
|
} else {
|
|
return null;
|
|
}
|
|
});
|
|
|
|
Blaze.registerHelper('currentCard', () => {
|
|
const cardId = Session.get('currentCard');
|
|
if (cardId) {
|
|
return Cards.findOne(cardId);
|
|
} else {
|
|
return null;
|
|
}
|
|
});
|
|
|
|
Blaze.registerHelper('currentList', () => {
|
|
const listId = Session.get('currentList');
|
|
if (listId) {
|
|
return Lists.findOne(listId);
|
|
} else {
|
|
return null;
|
|
}
|
|
});
|
|
|
|
Blaze.registerHelper('getUser', userId => Users.findOne(userId));
|
|
|
|
Blaze.registerHelper('concat', (...args) => args.slice(0, -1).join(''));
|
|
|
|
Blaze.registerHelper('isMiniScreen', () => Utils.isMiniScreen());
|
|
|
|
Blaze.registerHelper('isShowDesktopDragHandles', () => Utils.isShowDesktopDragHandles());
|
|
|
|
Blaze.registerHelper('isMiniScreenOrShowDesktopDragHandles', () => Utils.isMiniScreenOrShowDesktopDragHandles());
|