summaryrefslogtreecommitdiffstats
path: root/models
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2017-10-09 14:49:38 +0300
committerLauri Ojansivu <x@xet7.org>2017-10-09 14:49:38 +0300
commitfb060ed2c52ee80d9f25d9e8431280b092f74da0 (patch)
tree3e325e5f2d19b72811c596727ca67e02d7b47f4a /models
parentc84187bdadb7f1afaa8211773d1d1cb986709099 (diff)
parentf77da76c682ec7ad1b5e141d113d4b74371f46ae (diff)
downloadwekan-fb060ed2c52ee80d9f25d9e8431280b092f74da0.tar.gz
wekan-fb060ed2c52ee80d9f25d9e8431280b092f74da0.tar.bz2
wekan-fb060ed2c52ee80d9f25d9e8431280b092f74da0.zip
Merge branch 'issue783' of https://github.com/amadilsons/wekan into amadilsons-issue783
Diffstat (limited to 'models')
-rw-r--r--models/cards.js8
-rw-r--r--models/lists.js62
2 files changed, 70 insertions, 0 deletions
diff --git a/models/cards.js b/models/cards.js
index 0a440697..5b752ec3 100644
--- a/models/cards.js
+++ b/models/cards.js
@@ -179,6 +179,14 @@ Cards.helpers({
cardId: this._id,
});
},
+
+ canBeRestored() {
+ const list = Lists.findOne({_id: this.listId});
+ if(list.getWipLimit() && list.getWipLimit('enabled') && list.getWipLimit('value') === list.cards().count()){
+ return false;
+ }
+ return true;
+ },
});
Cards.mutations({
diff --git a/models/lists.js b/models/lists.js
index d9a5b8e2..1b999b07 100644
--- a/models/lists.js
+++ b/models/lists.js
@@ -42,6 +42,31 @@ Lists.attachSchema(new SimpleSchema({
}
},
},
+ wipLimit: {
+ type: Object,
+ optional: true,
+ },
+ 'wipLimit.value': {
+ type: Number,
+ decimal: false,
+ autoValue() {
+ if(this.isInsert){
+ return 0;
+ }
+ return this.value;
+ },
+ optional: true,
+ },
+ 'wipLimit.enabled':{
+ type: Boolean,
+ autoValue() {
+ if(this.isInsert){
+ return false;
+ }
+ return this.value;
+ },
+ optional: true,
+ },
}));
Lists.allow({
@@ -72,6 +97,17 @@ Lists.helpers({
board() {
return Boards.findOne(this.boardId);
},
+
+ getWipLimit(option){
+ const list = Lists.findOne({ _id: this._id });
+ if(!list.wipLimit) { // Necessary check to avoid exceptions for the case where the doc doesn't have the wipLimit field yet set
+ return 0;
+ } else if(!option) {
+ return list.wipLimit;
+ } else {
+ return list.wipLimit[option] ? list.wipLimit[option] : 0; // Necessary check to avoid exceptions for the case where the doc doesn't have the wipLimit field yet set
+ }
+ },
});
Lists.mutations({
@@ -86,6 +122,32 @@ Lists.mutations({
restore() {
return { $set: { archived: false } };
},
+
+ toggleWipLimit(toggle) {
+ return { $set: { 'wipLimit.enabled': toggle } };
+ },
+
+ setWipLimit(limit) {
+ return { $set: { 'wipLimit.value': limit } };
+ },
+});
+
+Meteor.methods({
+ applyWipLimit(listId, limit){
+ check(listId, String);
+ check(limit, Number);
+ Lists.findOne({ _id: listId }).setWipLimit(limit);
+ },
+
+ enableWipLimit(listId) {
+ check(listId, String);
+ const list = Lists.findOne({ _id: listId });
+ if(list.getWipLimit()){ // Necessary check to avoid exceptions for the case where the doc doesn't have the wipLimit field yet set
+ list.toggleWipLimit(!list.getWipLimit('enabled'));
+ } else {
+ list.toggleWipLimit(true); // First time toggle is always to 'true' because default is 'false'
+ }
+ },
});
Lists.hookOptions.after.update = { fetchPrevious: false };