mirror of
https://github.com/wekan/wekan.git
synced 2026-03-13 17:06:13 +01:00
Convert all remaining BlazeComponent-based components to native Meteor Template pattern: activities, comments, all rules actions/triggers, swimlanes, users, gantt, import, and main utility components.
142 lines
4.1 KiB
JavaScript
142 lines
4.1 KiB
JavaScript
Template.checklistTriggers.onCreated(function () {
|
|
this.subscribe('allRules');
|
|
});
|
|
|
|
Template.checklistTriggers.events({
|
|
'click .js-add-gen-check-trigger'(event, tpl) {
|
|
const desc = Utils.getTriggerActionDesc(event, tpl);
|
|
const datas = Template.currentData();
|
|
const actionSelected = tpl.find('#gen-check-action').value;
|
|
const boardId = Session.get('currentBoard');
|
|
if (actionSelected === 'created') {
|
|
datas.triggerVar.set({
|
|
activityType: 'addChecklist',
|
|
boardId,
|
|
checklistName: '*',
|
|
desc,
|
|
});
|
|
}
|
|
if (actionSelected === 'removed') {
|
|
datas.triggerVar.set({
|
|
activityType: 'removeChecklist',
|
|
boardId,
|
|
checklistName: '*',
|
|
desc,
|
|
});
|
|
}
|
|
},
|
|
'click .js-add-spec-check-trigger'(event, tpl) {
|
|
const desc = Utils.getTriggerActionDesc(event, tpl);
|
|
const datas = Template.currentData();
|
|
const actionSelected = tpl.find('#spec-check-action').value;
|
|
const checklistId = tpl.find('#check-name').value;
|
|
const boardId = Session.get('currentBoard');
|
|
if (actionSelected === 'created') {
|
|
datas.triggerVar.set({
|
|
activityType: 'addChecklist',
|
|
boardId,
|
|
checklistName: checklistId,
|
|
desc,
|
|
});
|
|
}
|
|
if (actionSelected === 'removed') {
|
|
datas.triggerVar.set({
|
|
activityType: 'removeChecklist',
|
|
boardId,
|
|
checklistName: checklistId,
|
|
desc,
|
|
});
|
|
}
|
|
},
|
|
'click .js-add-gen-comp-trigger'(event, tpl) {
|
|
const desc = Utils.getTriggerActionDesc(event, tpl);
|
|
|
|
const datas = Template.currentData();
|
|
const actionSelected = tpl.find('#gen-comp-check-action').value;
|
|
const boardId = Session.get('currentBoard');
|
|
if (actionSelected === 'completed') {
|
|
datas.triggerVar.set({
|
|
activityType: 'completeChecklist',
|
|
boardId,
|
|
checklistName: '*',
|
|
desc,
|
|
});
|
|
}
|
|
if (actionSelected === 'uncompleted') {
|
|
datas.triggerVar.set({
|
|
activityType: 'uncompleteChecklist',
|
|
boardId,
|
|
checklistName: '*',
|
|
desc,
|
|
});
|
|
}
|
|
},
|
|
'click .js-add-spec-comp-trigger'(event, tpl) {
|
|
const desc = Utils.getTriggerActionDesc(event, tpl);
|
|
const datas = Template.currentData();
|
|
const actionSelected = tpl.find('#spec-comp-check-action').value;
|
|
const checklistId = tpl.find('#spec-comp-check-name').value;
|
|
const boardId = Session.get('currentBoard');
|
|
if (actionSelected === 'completed') {
|
|
datas.triggerVar.set({
|
|
activityType: 'completeChecklist',
|
|
boardId,
|
|
checklistName: checklistId,
|
|
desc,
|
|
});
|
|
}
|
|
if (actionSelected === 'uncompleted') {
|
|
datas.triggerVar.set({
|
|
activityType: 'uncompleteChecklist',
|
|
boardId,
|
|
checklistName: checklistId,
|
|
desc,
|
|
});
|
|
}
|
|
},
|
|
'click .js-add-gen-check-item-trigger'(event, tpl) {
|
|
const desc = Utils.getTriggerActionDesc(event, tpl);
|
|
const datas = Template.currentData();
|
|
const actionSelected = tpl.find('#check-item-gen-action').value;
|
|
const boardId = Session.get('currentBoard');
|
|
if (actionSelected === 'checked') {
|
|
datas.triggerVar.set({
|
|
activityType: 'checkedItem',
|
|
boardId,
|
|
checklistItemName: '*',
|
|
desc,
|
|
});
|
|
}
|
|
if (actionSelected === 'unchecked') {
|
|
datas.triggerVar.set({
|
|
activityType: 'uncheckedItem',
|
|
boardId,
|
|
checklistItemName: '*',
|
|
desc,
|
|
});
|
|
}
|
|
},
|
|
'click .js-add-spec-check-item-trigger'(event, tpl) {
|
|
const desc = Utils.getTriggerActionDesc(event, tpl);
|
|
const datas = Template.currentData();
|
|
const actionSelected = tpl.find('#check-item-spec-action').value;
|
|
const checklistItemId = tpl.find('#check-item-name').value;
|
|
const boardId = Session.get('currentBoard');
|
|
if (actionSelected === 'checked') {
|
|
datas.triggerVar.set({
|
|
activityType: 'checkedItem',
|
|
boardId,
|
|
checklistItemName: checklistItemId,
|
|
desc,
|
|
});
|
|
}
|
|
if (actionSelected === 'unchecked') {
|
|
datas.triggerVar.set({
|
|
activityType: 'uncheckedItem',
|
|
boardId,
|
|
checklistItemName: checklistItemId,
|
|
desc,
|
|
});
|
|
}
|
|
},
|
|
});
|