1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
BlazeComponent.extendComponent({
onCreated() {
},
events() {
return [{
'click .js-add-spec-move-action' (event) {
const ruleName = this.data().ruleName.get();
const trigger = this.data().triggerVar.get();
const actionSelected = this.find('#move-spec-action').value;
const listTitle = this.find('#listName').value;
const boardId = Session.get('currentBoard');
const desc = Utils.getTriggerActionDesc(event, this);
if (actionSelected == "top") {
const triggerId = Triggers.insert(trigger);
const actionId = Actions.insert({
actionType: "moveCardToTop",
"listTitle": listTitle,
"boardId": boardId,
"desc": desc
});
Rules.insert({
title: ruleName,
triggerId: triggerId,
actionId: actionId,
"boardId": boardId
});
}
if (actionSelected == "bottom") {
const triggerId = Triggers.insert(trigger);
const actionId = Actions.insert({
actionType: "moveCardToBottom",
"listTitle": listTitle,
"boardId": boardId,
"desc": desc
});
Rules.insert({
title: ruleName,
triggerId: triggerId,
actionId: actionId,
"boardId": boardId
});
}
},
'click .js-add-gen-move-action' (event) {
const desc = Utils.getTriggerActionDesc(event, this);
const boardId = Session.get('currentBoard');
const ruleName = this.data().ruleName.get();
const trigger = this.data().triggerVar.get();
const actionSelected = this.find('#move-gen-action').value;
if (actionSelected == "top") {
const triggerId = Triggers.insert(trigger);
const actionId = Actions.insert({
actionType: "moveCardToTop",
"listTitle": "*",
"boardId": boardId,
"desc": desc
});
Rules.insert({
title: ruleName,
triggerId: triggerId,
actionId: actionId,
"boardId": boardId
});
}
if (actionSelected == "bottom") {
const triggerId = Triggers.insert(trigger);
const actionId = Actions.insert({
actionType: "moveCardToBottom",
"listTitle": "*",
"boardId": boardId,
"desc": desc
});
Rules.insert({
title: ruleName,
triggerId: triggerId,
actionId: actionId,
"boardId": boardId
});
}
},
'click .js-add-arch-action' (event) {
const desc = Utils.getTriggerActionDesc(event, this);
const boardId = Session.get('currentBoard');
const ruleName = this.data().ruleName.get();
const trigger = this.data().triggerVar.get();
const actionSelected = this.find('#arch-action').value;
if (actionSelected == "archive") {
const triggerId = Triggers.insert(trigger);
const actionId = Actions.insert({
actionType: "archive",
"boardId": boardId,
"desc": desc
});
Rules.insert({
title: ruleName,
triggerId: triggerId,
actionId: actionId,
"boardId": boardId
});
}
if (actionSelected == "unarchive") {
const triggerId = Triggers.insert(trigger);
const actionId = Actions.insert({
actionType: "unarchive",
"boardId": boardId,
"desc": desc
});
Rules.insert({
title: ruleName,
triggerId: triggerId,
actionId: actionId,
"boardId": boardId
});
}
},
}];
},
}).register('boardActions');
|