mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 12:44:57 +03:00
504fb1bfa1
no-issue This adds the concept of "Value Objects" to an Offers properties, allowing us to move validation out and ensure that an Offer will only ever have valid properties, without having to duplicate checks - or leave them to the persistent layer. This means we can fail early, as well as write unit tests for all of our validation.
25 lines
757 B
JavaScript
25 lines
757 B
JavaScript
const ValueObject = require('../../shared/ValueObject');
|
|
const InvalidOfferCadence = require('../../errors').InvalidOfferCadence;
|
|
|
|
/**
|
|
* @extends ValueObject<'month'|'year'>
|
|
*/
|
|
class OfferCadence extends ValueObject {
|
|
/** @param {unknown} cadence */
|
|
static create(cadence) {
|
|
if (!cadence || typeof cadence !== 'string') {
|
|
throw new InvalidOfferCadence({
|
|
message: 'Offer `cadence` must be a string.'
|
|
});
|
|
}
|
|
if (cadence !== 'month' && cadence !== 'year') {
|
|
throw new InvalidOfferCadence({
|
|
message: 'Offer `cadence` must be one of "month" or "year".'
|
|
});
|
|
}
|
|
return new OfferCadence(cadence);
|
|
}
|
|
}
|
|
|
|
module.exports = OfferCadence;
|