summaryrefslogtreecommitdiffstats
path: root/client/components/rules/actions
diff options
context:
space:
mode:
authorAngelo Gallarello <angelo.gallarell@gmail.com>2019-01-02 22:32:08 +0100
committerAngelo Gallarello <angelo.gallarell@gmail.com>2019-01-02 22:32:08 +0100
commit8ad0da210940c514fc173564955568f023bde3d6 (patch)
tree0a563112c29c20f2c40ab182fded20dfcdf745b7 /client/components/rules/actions
parent12827ef0a6a36edd4fc2ee4abd93c16ceb0245ee (diff)
downloadwekan-8ad0da210940c514fc173564955568f023bde3d6.tar.gz
wekan-8ad0da210940c514fc173564955568f023bde3d6.tar.bz2
wekan-8ad0da210940c514fc173564955568f023bde3d6.zip
Added create card action
Diffstat (limited to 'client/components/rules/actions')
-rw-r--r--client/components/rules/actions/boardActions.jade17
-rw-r--r--client/components/rules/actions/boardActions.js25
2 files changed, 42 insertions, 0 deletions
diff --git a/client/components/rules/actions/boardActions.jade b/client/components/rules/actions/boardActions.jade
index ab7d77a8..6034184c 100644
--- a/client/components/rules/actions/boardActions.jade
+++ b/client/components/rules/actions/boardActions.jade
@@ -47,6 +47,23 @@ template(name="boardActions")
div.trigger-button.js-add-swimlane-action.js-goto-rules
i.fa.fa-plus
+ div.trigger-item
+ div.trigger-content
+ div.trigger-text
+ | {{_'r-create-card'}}
+ div.trigger-dropdown
+ input(id="card-name",type=text,placeholder="{{_'r-name'}}")
+ div.trigger-text
+ | {{_'r-in-list'}}
+ div.trigger-dropdown
+ input(id="list-name",type=text,placeholder="{{_'r-name'}}")
+ div.trigger-text
+ | {{_'r-in-swimlane'}}
+ div.trigger-dropdown
+ input(id="swimlane-name2",type=text,placeholder="{{_'r-name'}}")
+ div.trigger-button.js-create-card-action.js-goto-rules
+ i.fa.fa-plus
+
diff --git a/client/components/rules/actions/boardActions.js b/client/components/rules/actions/boardActions.js
index 34f7c4b4..c2ac156c 100644
--- a/client/components/rules/actions/boardActions.js
+++ b/client/components/rules/actions/boardActions.js
@@ -5,6 +5,31 @@ BlazeComponent.extendComponent({
events() {
return [{
+ 'click .js-create-card-action' (event) {
+ const ruleName = this.data().ruleName.get();
+ const trigger = this.data().triggerVar.get();
+ const cardName = this.find('#card-name').value;
+ const listName = this.find('#list-name').value;
+ const swimlaneName = this.find('#swimlane-name2').value;
+ const boardId = Session.get('currentBoard');
+ const desc = Utils.getTriggerActionDesc(event, this);
+ const triggerId = Triggers.insert(trigger);
+ const actionId = Actions.insert({
+ actionType: 'createCard',
+ swimlaneName,
+ cardName,
+ listName,
+ boardId,
+ desc,
+ });
+ Rules.insert({
+ title: ruleName,
+ triggerId,
+ actionId,
+ boardId,
+ });
+
+ },
'click .js-add-swimlane-action' (event) {
const ruleName = this.data().ruleName.get();
const trigger = this.data().triggerVar.get();