Last active
November 4, 2020 09:40
-
-
Save acanimal/7482b125eb8643b4cbcb to your computer and use it in GitHub Desktop.
Specification pattern in JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
/** | |
* Specification base class | |
* @class | |
*/ | |
var Specification = { | |
and: function(spec) { | |
return new AndSpecification(this, spec); | |
}, | |
or: function(spec) { | |
return new OrSpecification(this, spec); | |
}, | |
not: function(spec) { | |
return new NotSpecification(spec); | |
} | |
} | |
/** | |
* And specification class | |
* @param {Specification} left Specification | |
* @param {Specification} right Specification | |
*/ | |
function AndSpecification(left, right){ | |
this.leftSpec = left; | |
this.rightSpec = right; | |
} | |
AndSpecification.prototype = Object.create(Specification); | |
AndSpecification.prototype.isSatisfiedBy = function(obj){ | |
var leftSat = false, rightSat = false; | |
if (this.leftSpec && this.leftSpec.isSatisfiedBy) { | |
leftSat = this.leftSpec.isSatisfiedBy(obj); | |
} | |
if (this.rightSpec && this.rightSpec.isSatisfiedBy) { | |
rightSat = this.rightSpec.isSatisfiedBy(obj); | |
} | |
return leftSat && rightSat; | |
}; | |
/** | |
* Or specification class | |
* @param {Specification} left Specification | |
* @param {Specification} right Specification | |
*/ | |
function OrSpecification(left, right){ | |
this.leftSpec = left; | |
this.rightSpec = right; | |
} | |
OrSpecification.prototype = Object.create(Specification); | |
OrSpecification.prototype.isSatisfiedBy = function(obj){ | |
var leftSat = false, rightSat = false; | |
if (this.leftSpec && this.leftSpec.isSatisfiedBy) { | |
leftSat = this.leftSpec.isSatisfiedBy(obj); | |
} | |
if (this.rightSpec && this.rightSpec.isSatisfiedBy) { | |
rightSat = this.rightSpec.isSatisfiedBy(obj); | |
} | |
return leftSat || rightSat; | |
}; | |
/** | |
* Not specification | |
* @param {Specification} spec Specification | |
*/ | |
function NotSpecification(spec){ | |
this.spec = spec; | |
} | |
NotSpecification.prototype = Object.create(Specification); | |
NotSpecification.prototype.isSatisfiedBy = function(obj){ | |
if (!this.spec || !this.spec.isSatisfiedBy){ | |
return false; | |
} | |
return !this.spec.isSatisfiedBy(obj); | |
}; | |
module.exports = Specification; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment