Refactoring rules description

This commit is contained in:
Angelo Gallarello 2018-09-14 16:49:06 +02:00
parent e649c79bb7
commit fc73dc5bbc
15 changed files with 270 additions and 69 deletions

View file

@ -24,28 +24,80 @@ Triggers.allow({
Triggers.helpers({
getRule(){
return Rules.findOne({triggerId:this._id});
},
description(){
if(this.activityType == "createCard"){
if(this.listName == "*"){
return TAPi18n.__('r-when-a-card-is') + " " + TAPi18n.__('r-added-to').toLowerCase() + " " + TAPi18n.__('r-the-board');
}else{
return TAPi18n.__('r-when-a-card-is') + " " + TAPi18n.__('r-added-to').toLowerCase() + " " + TAPi18n.__('r-list') + " " +this.listName;
}
}
if(this.activityType == "removeCard"){
if(this.listName == "*"){
return TAPi18n.__('r-when-a-card-is') + " " + TAPi18n.__('r-removed-from') + " " + TAPi18n.__('r-the-board');
}else{
return TAPi18n.__('r-when-a-card-is') + " " + TAPi18n.__('r-removed-from') + " " + TAPi18n.__('r-list') + " " +this.listName;
}
}
if(this.activityType == "moveCard"){
if(this.listName = "*"){
return TAPi18n.__('r-when-a-card-is') + " " + TAPi18n.__('r-moved-from') + " " + this.oldListName;
}else{
return TAPi18n.__('r-when-a-card-is') + " " + TAPi18n.__('r-moved-to') + " " + this.listName;
}
}
if(this.activityType = "archivedCard"){
return TAPi18n.__('r-when-a-card-is') + " " + TAPi18n.__('r-archived');
}
if(this.activityType = "restoredCard"){
return TAPi18n.__('r-when-a-card-is') + " " + TAPi18n.__('r-unarchived');
}
if(this.activityType = "addedLabel"){
if(this.labelId == "*"){
return TAPi18n.__('r-when-a-label-is') + " " + TAPi18n.__('r-added-to') + " " + TAPi18n.__('r-a-card');
}else{
const board = Boards.findOne(Session.get('currentBoard'));
const label = board.getLabelById(this.labelId);
let name;
if(label.name == "" || label.name == undefined){
name = label.color.toUpperCase();
}else{
name = label.name;
}
}
}
if(this.activityType = "restoredCard"){
return TAPi18n.__('r-when-a-card-is') + " " + TAPi18n.__('r-unarchived');
}
fromList() {
return Lists.findOne(this.fromId);
},
toList() {
return Lists.findOne(this.toId);
},
findList(title) {
return Lists.findOne({title:title});
},
return "No description found";
},
labels() {
const boardLabels = this.board().labels;
const cardLabels = _.filter(boardLabels, (label) => {
return _.contains(this.labelIds, label._id);
});
return cardLabels;
getRule(){
return Rules.findOne({triggerId:this._id});
},
fromList() {
return Lists.findOne(this.fromId);
},
toList() {
return Lists.findOne(this.toId);
},
findList(title) {
return Lists.findOne({title:title});
},
labels() {
const boardLabels = this.board().labels;
const cardLabels = _.filter(boardLabels, (label) => {
return _.contains(this.labelIds, label._id);
});
return cardLabels;
}});