35f150bcf4
no-issue More cleanup to pull files into their appropriate responsibility
25 lines
707 B
JavaScript
25 lines
707 B
JavaScript
const ValueObject = require('./shared/ValueObject');
|
|
const InvalidOfferTitle = require('../errors').InvalidOfferTitle;
|
|
|
|
/** @extends ValueObject<string> */
|
|
class OfferTitle extends ValueObject {
|
|
/** @param {unknown} title */
|
|
static create(title) {
|
|
if (!title || typeof title !== 'string') {
|
|
throw new InvalidOfferTitle({
|
|
message: 'Offer `display_title` must be a string.'
|
|
});
|
|
}
|
|
|
|
if (title.length > 191) {
|
|
throw new InvalidOfferTitle({
|
|
message: 'Offer `display_title` can be a maximum of 191 characters.'
|
|
});
|
|
}
|
|
|
|
return new OfferTitle(title);
|
|
}
|
|
}
|
|
|
|
module.exports = OfferTitle;
|