package.cjs.utils.validators.slug.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neeto-commons-frontend Show documentation
Show all versions of neeto-commons-frontend Show documentation
A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.
"use strict";
var _typeof = require("@babel/runtime/helpers/typeof");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.slugValidator = void 0;
var _regex = require("../../constants/regex");
var _i18next = require("i18next");
var yup = _interopRequireWildcard(require("yup"));
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
var slugValidator = function slugValidator(label) {
return yup.string().test({
name: "slug",
test: function test(value, ctx) {
if (!value) {
return ctx.createError({
message: (0, _i18next.t)("neetoCommons.validators.isRequired", {
what: label
})
});
}
if (_regex.VALID_SLUG_REGEX.test(value)) return true;
if (/[A-Z]/.test(value)) {
return ctx.createError({
message: (0, _i18next.t)("neetoCommons.validators.mustNotContainCapitalLetters", {
what: label
})
});
}
if (value !== null && value !== void 0 && value.includes(" ")) {
return ctx.createError({
message: (0, _i18next.t)("neetoCommons.validators.mustNotContainSpaces", {
what: label
})
});
}
if (!/^[a-z0-9-]+$/.test(value)) {
return ctx.createError({
message: (0, _i18next.t)("neetoCommons.validators.mustNotContainSpecialCharactersExceptHyphen", {
what: label
})
});
}
if (/^[-]|[-]$/.test(value)) {
return ctx.createError({
message: (0, _i18next.t)("neetoCommons.validators.mustNotStartOrEndWithSpecialCharacters", {
what: label
})
});
}
return true;
}
});
};
exports.slugValidator = slugValidator;
//# sourceMappingURL=slug.js.map