You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1465 lines
99 KiB
1465 lines
99 KiB
/*!
|
|
* inputmask.js
|
|
* https://github.com/RobinHerbots/jquery.inputmask
|
|
* Copyright (c) 2010 - 2016 Robin Herbots
|
|
* Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
|
|
* Version: 3.3.1
|
|
*/
|
|
!function(factory) {
|
|
"function" == typeof define && define.amd ? define([ "inputmask.dependencyLib" ], factory) : "object" == typeof exports ? module.exports = factory(require("./inputmask.dependencyLib.jquery")) : factory(window.dependencyLib || jQuery);
|
|
}(function($) {
|
|
function Inputmask(alias, options) {
|
|
return this instanceof Inputmask ? ($.isPlainObject(alias) ? options = alias : (options = options || {},
|
|
options.alias = alias), this.el = void 0, this.opts = $.extend(!0, {}, this.defaults, options),
|
|
this.noMasksCache = options && void 0 !== options.definitions, this.userOptions = options || {},
|
|
this.events = {}, void resolveAlias(this.opts.alias, options, this.opts)) : new Inputmask(alias, options);
|
|
}
|
|
function isInputEventSupported(eventName) {
|
|
var el = document.createElement("input"), evName = "on" + eventName, isSupported = evName in el;
|
|
return isSupported || (el.setAttribute(evName, "return;"), isSupported = "function" == typeof el[evName]),
|
|
el = null, isSupported;
|
|
}
|
|
function isElementTypeSupported(input, opts) {
|
|
var elementType = input.getAttribute("type"), isSupported = "INPUT" === input.tagName && -1 !== $.inArray(elementType, opts.supportsInputType) || input.isContentEditable || "TEXTAREA" === input.tagName;
|
|
if (!isSupported && "INPUT" === input.tagName) {
|
|
var el = document.createElement("input");
|
|
el.setAttribute("type", elementType), isSupported = "text" === el.type, el = null;
|
|
}
|
|
return isSupported;
|
|
}
|
|
function resolveAlias(aliasStr, options, opts) {
|
|
var aliasDefinition = opts.aliases[aliasStr];
|
|
return aliasDefinition ? (aliasDefinition.alias && resolveAlias(aliasDefinition.alias, void 0, opts),
|
|
$.extend(!0, opts, aliasDefinition), $.extend(!0, opts, options), !0) : (null === opts.mask && (opts.mask = aliasStr),
|
|
!1);
|
|
}
|
|
function importAttributeOptions(npt, opts, userOptions) {
|
|
function importOption(option, optionData) {
|
|
optionData = void 0 !== optionData ? optionData : npt.getAttribute("data-inputmask-" + option),
|
|
null !== optionData && ("string" == typeof optionData && (0 === option.indexOf("on") ? optionData = window[optionData] : "false" === optionData ? optionData = !1 : "true" === optionData && (optionData = !0)),
|
|
userOptions[option] = optionData);
|
|
}
|
|
var option, dataoptions, optionData, p, attrOptions = npt.getAttribute("data-inputmask");
|
|
if (attrOptions && "" !== attrOptions && (attrOptions = attrOptions.replace(new RegExp("'", "g"), '"'),
|
|
dataoptions = JSON.parse("{" + attrOptions + "}")), dataoptions) {
|
|
optionData = void 0;
|
|
for (p in dataoptions) if ("alias" === p.toLowerCase()) {
|
|
optionData = dataoptions[p];
|
|
break;
|
|
}
|
|
}
|
|
importOption("alias", optionData), userOptions.alias && resolveAlias(userOptions.alias, userOptions, opts);
|
|
for (option in opts) {
|
|
if (dataoptions) {
|
|
optionData = void 0;
|
|
for (p in dataoptions) if (p.toLowerCase() === option.toLowerCase()) {
|
|
optionData = dataoptions[p];
|
|
break;
|
|
}
|
|
}
|
|
importOption(option, optionData);
|
|
}
|
|
return $.extend(!0, opts, userOptions), opts;
|
|
}
|
|
function generateMaskSet(opts, nocache) {
|
|
function analyseMask(mask) {
|
|
function MaskToken(isGroup, isOptional, isQuantifier, isAlternator) {
|
|
this.matches = [], this.isGroup = isGroup || !1, this.isOptional = isOptional || !1,
|
|
this.isQuantifier = isQuantifier || !1, this.isAlternator = isAlternator || !1,
|
|
this.quantifier = {
|
|
min: 1,
|
|
max: 1
|
|
};
|
|
}
|
|
function insertTestDefinition(mtoken, element, position) {
|
|
var maskdef = opts.definitions[element];
|
|
position = void 0 !== position ? position : mtoken.matches.length;
|
|
var prevMatch = mtoken.matches[position - 1];
|
|
if (maskdef && !escaped) {
|
|
maskdef.placeholder = $.isFunction(maskdef.placeholder) ? maskdef.placeholder(opts) : maskdef.placeholder;
|
|
for (var prevalidators = maskdef.prevalidator, prevalidatorsL = prevalidators ? prevalidators.length : 0, i = 1; i < maskdef.cardinality; i++) {
|
|
var prevalidator = prevalidatorsL >= i ? prevalidators[i - 1] : [], validator = prevalidator.validator, cardinality = prevalidator.cardinality;
|
|
mtoken.matches.splice(position++, 0, {
|
|
fn: validator ? "string" == typeof validator ? new RegExp(validator) : new function() {
|
|
this.test = validator;
|
|
}() : new RegExp("."),
|
|
cardinality: cardinality ? cardinality : 1,
|
|
optionality: mtoken.isOptional,
|
|
newBlockMarker: void 0 === prevMatch || prevMatch.def !== (maskdef.definitionSymbol || element),
|
|
casing: maskdef.casing,
|
|
def: maskdef.definitionSymbol || element,
|
|
placeholder: maskdef.placeholder,
|
|
mask: element
|
|
}), prevMatch = mtoken.matches[position - 1];
|
|
}
|
|
mtoken.matches.splice(position++, 0, {
|
|
fn: maskdef.validator ? "string" == typeof maskdef.validator ? new RegExp(maskdef.validator) : new function() {
|
|
this.test = maskdef.validator;
|
|
}() : new RegExp("."),
|
|
cardinality: maskdef.cardinality,
|
|
optionality: mtoken.isOptional,
|
|
newBlockMarker: void 0 === prevMatch || prevMatch.def !== (maskdef.definitionSymbol || element),
|
|
casing: maskdef.casing,
|
|
def: maskdef.definitionSymbol || element,
|
|
placeholder: maskdef.placeholder,
|
|
mask: element
|
|
});
|
|
} else mtoken.matches.splice(position++, 0, {
|
|
fn: null,
|
|
cardinality: 0,
|
|
optionality: mtoken.isOptional,
|
|
newBlockMarker: void 0 === prevMatch || prevMatch.def !== element,
|
|
casing: null,
|
|
def: opts.staticDefinitionSymbol || element,
|
|
placeholder: void 0 !== opts.staticDefinitionSymbol ? element : void 0,
|
|
mask: element
|
|
}), escaped = !1;
|
|
}
|
|
function verifyGroupMarker(lastMatch, isOpenGroup) {
|
|
lastMatch.isGroup && (lastMatch.isGroup = !1, insertTestDefinition(lastMatch, opts.groupmarker.start, 0),
|
|
isOpenGroup !== !0 && insertTestDefinition(lastMatch, opts.groupmarker.end));
|
|
}
|
|
function maskCurrentToken(m, currentToken, lastMatch, extraCondition) {
|
|
currentToken.matches.length > 0 && (void 0 === extraCondition || extraCondition) && (lastMatch = currentToken.matches[currentToken.matches.length - 1],
|
|
verifyGroupMarker(lastMatch)), insertTestDefinition(currentToken, m);
|
|
}
|
|
function defaultCase() {
|
|
if (openenings.length > 0) {
|
|
if (currentOpeningToken = openenings[openenings.length - 1], maskCurrentToken(m, currentOpeningToken, lastMatch, !currentOpeningToken.isAlternator),
|
|
currentOpeningToken.isAlternator) {
|
|
alternator = openenings.pop();
|
|
for (var mndx = 0; mndx < alternator.matches.length; mndx++) alternator.matches[mndx].isGroup = !1;
|
|
openenings.length > 0 ? (currentOpeningToken = openenings[openenings.length - 1],
|
|
currentOpeningToken.matches.push(alternator)) : currentToken.matches.push(alternator);
|
|
}
|
|
} else maskCurrentToken(m, currentToken, lastMatch);
|
|
}
|
|
function reverseTokens(maskToken) {
|
|
function reverseStatic(st) {
|
|
return st === opts.optionalmarker.start ? st = opts.optionalmarker.end : st === opts.optionalmarker.end ? st = opts.optionalmarker.start : st === opts.groupmarker.start ? st = opts.groupmarker.end : st === opts.groupmarker.end && (st = opts.groupmarker.start),
|
|
st;
|
|
}
|
|
maskToken.matches = maskToken.matches.reverse();
|
|
for (var match in maskToken.matches) {
|
|
var intMatch = parseInt(match);
|
|
if (maskToken.matches[match].isQuantifier && maskToken.matches[intMatch + 1] && maskToken.matches[intMatch + 1].isGroup) {
|
|
var qt = maskToken.matches[match];
|
|
maskToken.matches.splice(match, 1), maskToken.matches.splice(intMatch + 1, 0, qt);
|
|
}
|
|
void 0 !== maskToken.matches[match].matches ? maskToken.matches[match] = reverseTokens(maskToken.matches[match]) : maskToken.matches[match] = reverseStatic(maskToken.matches[match]);
|
|
}
|
|
return maskToken;
|
|
}
|
|
for (var match, m, openingToken, currentOpeningToken, alternator, lastMatch, groupToken, tokenizer = /(?:[?*+]|\{[0-9\+\*]+(?:,[0-9\+\*]*)?\})|[^.?*+^${[]()|\\]+|./g, escaped = !1, currentToken = new MaskToken(), openenings = [], maskTokens = []; match = tokenizer.exec(mask); ) if (m = match[0],
|
|
escaped) defaultCase(); else switch (m.charAt(0)) {
|
|
case opts.escapeChar:
|
|
escaped = !0;
|
|
break;
|
|
|
|
case opts.optionalmarker.end:
|
|
case opts.groupmarker.end:
|
|
if (openingToken = openenings.pop(), void 0 !== openingToken) if (openenings.length > 0) {
|
|
if (currentOpeningToken = openenings[openenings.length - 1], currentOpeningToken.matches.push(openingToken),
|
|
currentOpeningToken.isAlternator) {
|
|
alternator = openenings.pop();
|
|
for (var mndx = 0; mndx < alternator.matches.length; mndx++) alternator.matches[mndx].isGroup = !1;
|
|
openenings.length > 0 ? (currentOpeningToken = openenings[openenings.length - 1],
|
|
currentOpeningToken.matches.push(alternator)) : currentToken.matches.push(alternator);
|
|
}
|
|
} else currentToken.matches.push(openingToken); else defaultCase();
|
|
break;
|
|
|
|
case opts.optionalmarker.start:
|
|
openenings.push(new MaskToken(!1, !0));
|
|
break;
|
|
|
|
case opts.groupmarker.start:
|
|
openenings.push(new MaskToken(!0));
|
|
break;
|
|
|
|
case opts.quantifiermarker.start:
|
|
var quantifier = new MaskToken(!1, !1, !0);
|
|
m = m.replace(/[{}]/g, "");
|
|
var mq = m.split(","), mq0 = isNaN(mq[0]) ? mq[0] : parseInt(mq[0]), mq1 = 1 === mq.length ? mq0 : isNaN(mq[1]) ? mq[1] : parseInt(mq[1]);
|
|
if (("*" === mq1 || "+" === mq1) && (mq0 = "*" === mq1 ? 0 : 1), quantifier.quantifier = {
|
|
min: mq0,
|
|
max: mq1
|
|
}, openenings.length > 0) {
|
|
var matches = openenings[openenings.length - 1].matches;
|
|
match = matches.pop(), match.isGroup || (groupToken = new MaskToken(!0), groupToken.matches.push(match),
|
|
match = groupToken), matches.push(match), matches.push(quantifier);
|
|
} else match = currentToken.matches.pop(), match.isGroup || (groupToken = new MaskToken(!0),
|
|
groupToken.matches.push(match), match = groupToken), currentToken.matches.push(match),
|
|
currentToken.matches.push(quantifier);
|
|
break;
|
|
|
|
case opts.alternatormarker:
|
|
openenings.length > 0 ? (currentOpeningToken = openenings[openenings.length - 1],
|
|
lastMatch = currentOpeningToken.matches.pop()) : lastMatch = currentToken.matches.pop(),
|
|
lastMatch.isAlternator ? openenings.push(lastMatch) : (alternator = new MaskToken(!1, !1, !1, !0),
|
|
alternator.matches.push(lastMatch), openenings.push(alternator));
|
|
break;
|
|
|
|
default:
|
|
defaultCase();
|
|
}
|
|
for (;openenings.length > 0; ) openingToken = openenings.pop(), verifyGroupMarker(openingToken, !0),
|
|
currentToken.matches.push(openingToken);
|
|
return currentToken.matches.length > 0 && (lastMatch = currentToken.matches[currentToken.matches.length - 1],
|
|
verifyGroupMarker(lastMatch), maskTokens.push(currentToken)), opts.numericInput && reverseTokens(maskTokens[0]),
|
|
maskTokens;
|
|
}
|
|
function generateMask(mask, metadata) {
|
|
if (null === mask || "" === mask) return void 0;
|
|
if (1 === mask.length && opts.greedy === !1 && 0 !== opts.repeat && (opts.placeholder = ""),
|
|
opts.repeat > 0 || "*" === opts.repeat || "+" === opts.repeat) {
|
|
var repeatStart = "*" === opts.repeat ? 0 : "+" === opts.repeat ? 1 : opts.repeat;
|
|
mask = opts.groupmarker.start + mask + opts.groupmarker.end + opts.quantifiermarker.start + repeatStart + "," + opts.repeat + opts.quantifiermarker.end;
|
|
}
|
|
var masksetDefinition;
|
|
return void 0 === Inputmask.prototype.masksCache[mask] || nocache === !0 ? (masksetDefinition = {
|
|
mask: mask,
|
|
maskToken: analyseMask(mask),
|
|
validPositions: {},
|
|
_buffer: void 0,
|
|
buffer: void 0,
|
|
tests: {},
|
|
metadata: metadata
|
|
}, nocache !== !0 && (Inputmask.prototype.masksCache[opts.numericInput ? mask.split("").reverse().join("") : mask] = masksetDefinition,
|
|
masksetDefinition = $.extend(!0, {}, Inputmask.prototype.masksCache[opts.numericInput ? mask.split("").reverse().join("") : mask]))) : masksetDefinition = $.extend(!0, {}, Inputmask.prototype.masksCache[opts.numericInput ? mask.split("").reverse().join("") : mask]),
|
|
masksetDefinition;
|
|
}
|
|
function preProcessMask(mask) {
|
|
return mask = mask.toString();
|
|
}
|
|
var ms;
|
|
if ($.isFunction(opts.mask) && (opts.mask = opts.mask(opts)), $.isArray(opts.mask)) {
|
|
if (opts.mask.length > 1) {
|
|
opts.keepStatic = null === opts.keepStatic ? !0 : opts.keepStatic;
|
|
var altMask = "(";
|
|
return $.each(opts.numericInput ? opts.mask.reverse() : opts.mask, function(ndx, msk) {
|
|
altMask.length > 1 && (altMask += ")|("), altMask += preProcessMask(void 0 === msk.mask || $.isFunction(msk.mask) ? msk : msk.mask);
|
|
}), altMask += ")", generateMask(altMask, opts.mask);
|
|
}
|
|
opts.mask = opts.mask.pop();
|
|
}
|
|
return opts.mask && (ms = void 0 === opts.mask.mask || $.isFunction(opts.mask.mask) ? generateMask(preProcessMask(opts.mask), opts.mask) : generateMask(preProcessMask(opts.mask.mask), opts.mask)),
|
|
ms;
|
|
}
|
|
function maskScope(actionObj, maskset, opts) {
|
|
function getMaskTemplate(baseOnInput, minimalPos, includeInput) {
|
|
minimalPos = minimalPos || 0;
|
|
var ndxIntlzr, test, testPos, maskTemplate = [], pos = 0, lvp = getLastValidPosition();
|
|
do {
|
|
if (baseOnInput === !0 && getMaskSet().validPositions[pos]) {
|
|
var validPos = getMaskSet().validPositions[pos];
|
|
test = validPos.match, ndxIntlzr = validPos.locator.slice(), maskTemplate.push(includeInput === !0 ? validPos.input : getPlaceholder(pos, test));
|
|
} else testPos = getTestTemplate(pos, ndxIntlzr, pos - 1), test = testPos.match,
|
|
ndxIntlzr = testPos.locator.slice(), (opts.jitMasking === !1 || lvp > pos || isFinite(opts.jitMasking) && opts.jitMasking > pos) && maskTemplate.push(getPlaceholder(pos, test));
|
|
pos++;
|
|
} while ((void 0 === maxLength || maxLength > pos - 1) && null !== test.fn || null === test.fn && "" !== test.def || minimalPos >= pos);
|
|
return "" === maskTemplate[maskTemplate.length - 1] && maskTemplate.pop(), maskTemplate;
|
|
}
|
|
function getMaskSet() {
|
|
return maskset;
|
|
}
|
|
function resetMaskSet(soft) {
|
|
var maskset = getMaskSet();
|
|
maskset.buffer = void 0, soft !== !0 && (maskset.tests = {}, maskset._buffer = void 0,
|
|
maskset.validPositions = {}, maskset.p = 0);
|
|
}
|
|
function getLastValidPosition(closestTo, strict, validPositions) {
|
|
var before = -1, after = -1, valids = validPositions || getMaskSet().validPositions;
|
|
void 0 === closestTo && (closestTo = -1);
|
|
for (var posNdx in valids) {
|
|
var psNdx = parseInt(posNdx);
|
|
valids[psNdx] && (strict || null !== valids[psNdx].match.fn) && (closestTo >= psNdx && (before = psNdx),
|
|
psNdx >= closestTo && (after = psNdx));
|
|
}
|
|
return -1 !== before && closestTo - before > 1 || closestTo > after ? before : after;
|
|
}
|
|
function setValidPosition(pos, validTest, fromSetValid, isSelection) {
|
|
if (isSelection || opts.insertMode && void 0 !== getMaskSet().validPositions[pos] && void 0 === fromSetValid) {
|
|
var i, positionsClone = $.extend(!0, {}, getMaskSet().validPositions), lvp = getLastValidPosition();
|
|
for (i = pos; lvp >= i; i++) delete getMaskSet().validPositions[i];
|
|
getMaskSet().validPositions[pos] = validTest;
|
|
var j, valid = !0, vps = getMaskSet().validPositions, needsValidation = !1;
|
|
for (i = j = pos; lvp >= i; i++) {
|
|
var t = positionsClone[i];
|
|
if (void 0 !== t) for (var posMatch = j, prevPosMatch = -1; posMatch < getMaskLength() && (null == t.match.fn && vps[i] && (vps[i].match.optionalQuantifier === !0 || vps[i].match.optionality === !0) || null != t.match.fn); ) {
|
|
if (null === t.match.fn || !opts.keepStatic && vps[i] && (void 0 !== vps[i + 1] && getTests(i + 1, vps[i].locator.slice(), i).length > 1 || void 0 !== vps[i].alternation) ? posMatch++ : posMatch = seekNext(j),
|
|
needsValidation === !1 && positionsClone[posMatch] && positionsClone[posMatch].match.def === t.match.def) {
|
|
getMaskSet().validPositions[posMatch] = $.extend(!0, {}, positionsClone[posMatch]),
|
|
getMaskSet().validPositions[posMatch].input = t.input, j = posMatch, valid = !0;
|
|
break;
|
|
}
|
|
if (positionCanMatchDefinition(posMatch, t.match.def)) {
|
|
var result = isValid(posMatch, t.input, !0, !0);
|
|
if (valid = result !== !1, j = result.caret || result.insert ? getLastValidPosition() : posMatch,
|
|
needsValidation = !0, valid) break;
|
|
} else {
|
|
if (valid = null == t.match.fn, prevPosMatch === posMatch) break;
|
|
prevPosMatch = posMatch;
|
|
}
|
|
}
|
|
if (!valid) break;
|
|
}
|
|
if (!valid) return getMaskSet().validPositions = $.extend(!0, {}, positionsClone),
|
|
resetMaskSet(!0), !1;
|
|
} else getMaskSet().validPositions[pos] = validTest;
|
|
return resetMaskSet(!0), !0;
|
|
}
|
|
function stripValidPositions(start, end, nocheck, strict) {
|
|
function IsEnclosedStatic(pos) {
|
|
var posMatch = getMaskSet().validPositions[pos];
|
|
if (void 0 !== posMatch && null === posMatch.match.fn) {
|
|
var prevMatch = getMaskSet().validPositions[pos - 1], nextMatch = getMaskSet().validPositions[pos + 1];
|
|
return void 0 !== prevMatch && void 0 !== nextMatch;
|
|
}
|
|
return !1;
|
|
}
|
|
var i, startPos = start, positionsClone = $.extend(!0, {}, getMaskSet().validPositions), needsValidation = !1;
|
|
for (getMaskSet().p = start, i = end - 1; i >= startPos; i--) void 0 !== getMaskSet().validPositions[i] && (nocheck === !0 || !IsEnclosedStatic(i) && opts.canClearPosition(getMaskSet(), i, getLastValidPosition(), strict, opts) !== !1) && delete getMaskSet().validPositions[i];
|
|
for (resetMaskSet(!0), i = startPos + 1; i <= getLastValidPosition(); ) {
|
|
for (;void 0 !== getMaskSet().validPositions[startPos]; ) startPos++;
|
|
var s = getMaskSet().validPositions[startPos];
|
|
if (startPos > i && (i = startPos + 1), void 0 === getMaskSet().validPositions[i] && isMask(i) || void 0 !== s) i++; else {
|
|
var t = getTestTemplate(i);
|
|
needsValidation === !1 && positionsClone[startPos] && positionsClone[startPos].match.def === t.match.def ? (getMaskSet().validPositions[startPos] = $.extend(!0, {}, positionsClone[startPos]),
|
|
getMaskSet().validPositions[startPos].input = t.input, delete getMaskSet().validPositions[i],
|
|
i++) : positionCanMatchDefinition(startPos, t.match.def) ? isValid(startPos, t.input || getPlaceholder(i), !0) !== !1 && (delete getMaskSet().validPositions[i],
|
|
i++, needsValidation = !0) : isMask(i) || (i++, startPos--), startPos++;
|
|
}
|
|
}
|
|
resetMaskSet(!0);
|
|
}
|
|
function getTestTemplate(pos, ndxIntlzr, tstPs) {
|
|
var testPos = getMaskSet().validPositions[pos];
|
|
if (void 0 === testPos) for (var testPositions = getTests(pos, ndxIntlzr, tstPs), lvp = getLastValidPosition(), lvTest = getMaskSet().validPositions[lvp] || getTests(0)[0], lvTestAltArr = void 0 !== lvTest.alternation ? lvTest.locator[lvTest.alternation].toString().split(",") : [], ndx = 0; ndx < testPositions.length && (testPos = testPositions[ndx],
|
|
!(testPos.match && (opts.greedy && testPos.match.optionalQuantifier !== !0 || (testPos.match.optionality === !1 || testPos.match.newBlockMarker === !1) && testPos.match.optionalQuantifier !== !0) && (void 0 === lvTest.alternation || lvTest.alternation !== testPos.alternation || void 0 !== testPos.locator[lvTest.alternation] && checkAlternationMatch(testPos.locator[lvTest.alternation].toString().split(","), lvTestAltArr)))); ndx++) ;
|
|
return testPos;
|
|
}
|
|
function getTest(pos) {
|
|
return getMaskSet().validPositions[pos] ? getMaskSet().validPositions[pos].match : getTests(pos)[0].match;
|
|
}
|
|
function positionCanMatchDefinition(pos, def) {
|
|
for (var valid = !1, tests = getTests(pos), tndx = 0; tndx < tests.length; tndx++) if (tests[tndx].match && tests[tndx].match.def === def) {
|
|
valid = !0;
|
|
break;
|
|
}
|
|
return valid;
|
|
}
|
|
function selectBestMatch(pos, alternateNdx) {
|
|
var bestMatch, indexPos;
|
|
return (getMaskSet().tests[pos] || getMaskSet().validPositions[pos]) && $.each(getMaskSet().tests[pos] || [ getMaskSet().validPositions[pos] ], function(ndx, lmnt) {
|
|
var ndxPos = lmnt.alternation ? lmnt.locator[lmnt.alternation].toString().indexOf(alternateNdx) : -1;
|
|
(void 0 === indexPos || indexPos > ndxPos) && -1 !== ndxPos && (bestMatch = lmnt,
|
|
indexPos = ndxPos);
|
|
}), bestMatch;
|
|
}
|
|
function getTests(pos, ndxIntlzr, tstPs) {
|
|
function resolveTestFromToken(maskToken, ndxInitializer, loopNdx, quantifierRecurse) {
|
|
function handleMatch(match, loopNdx, quantifierRecurse) {
|
|
function isFirstMatch(latestMatch, tokenGroup) {
|
|
var firstMatch = 0 === $.inArray(latestMatch, tokenGroup.matches);
|
|
return firstMatch || $.each(tokenGroup.matches, function(ndx, match) {
|
|
return match.isQuantifier === !0 && (firstMatch = isFirstMatch(latestMatch, tokenGroup.matches[ndx - 1])) ? !1 : void 0;
|
|
}), firstMatch;
|
|
}
|
|
function resolveNdxInitializer(pos, alternateNdx) {
|
|
var bestMatch = selectBestMatch(pos, alternateNdx);
|
|
return bestMatch ? bestMatch.locator.slice(bestMatch.alternation + 1) : [];
|
|
}
|
|
if (testPos > 1e4) throw "Inputmask: There is probably an error in your mask definition or in the code. Create an issue on github with an example of the mask you are using. " + getMaskSet().mask;
|
|
if (testPos === pos && void 0 === match.matches) return matches.push({
|
|
match: match,
|
|
locator: loopNdx.reverse(),
|
|
cd: cacheDependency
|
|
}), !0;
|
|
if (void 0 !== match.matches) {
|
|
if (match.isGroup && quantifierRecurse !== match) {
|
|
if (match = handleMatch(maskToken.matches[$.inArray(match, maskToken.matches) + 1], loopNdx)) return !0;
|
|
} else if (match.isOptional) {
|
|
var optionalToken = match;
|
|
if (match = resolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse)) {
|
|
if (latestMatch = matches[matches.length - 1].match, !isFirstMatch(latestMatch, optionalToken)) return !0;
|
|
insertStop = !0, testPos = pos;
|
|
}
|
|
} else if (match.isAlternator) {
|
|
var maltMatches, alternateToken = match, malternateMatches = [], currentMatches = matches.slice(), loopNdxCnt = loopNdx.length, altIndex = ndxInitializer.length > 0 ? ndxInitializer.shift() : -1;
|
|
if (-1 === altIndex || "string" == typeof altIndex) {
|
|
var amndx, currentPos = testPos, ndxInitializerClone = ndxInitializer.slice(), altIndexArr = [];
|
|
if ("string" == typeof altIndex) altIndexArr = altIndex.split(","); else for (amndx = 0; amndx < alternateToken.matches.length; amndx++) altIndexArr.push(amndx);
|
|
for (var ndx = 0; ndx < altIndexArr.length; ndx++) {
|
|
if (amndx = parseInt(altIndexArr[ndx]), matches = [], ndxInitializer = resolveNdxInitializer(testPos, amndx),
|
|
match = handleMatch(alternateToken.matches[amndx] || maskToken.matches[amndx], [ amndx ].concat(loopNdx), quantifierRecurse) || match,
|
|
match !== !0 && void 0 !== match && altIndexArr[altIndexArr.length - 1] < alternateToken.matches.length) {
|
|
var ntndx = $.inArray(match, maskToken.matches) + 1;
|
|
maskToken.matches.length > ntndx && (match = handleMatch(maskToken.matches[ntndx], [ ntndx ].concat(loopNdx.slice(1, loopNdx.length)), quantifierRecurse),
|
|
match && (altIndexArr.push(ntndx.toString()), $.each(matches, function(ndx, lmnt) {
|
|
lmnt.alternation = loopNdx.length - 1;
|
|
})));
|
|
}
|
|
maltMatches = matches.slice(), testPos = currentPos, matches = [];
|
|
for (var i = 0; i < ndxInitializerClone.length; i++) ndxInitializer[i] = ndxInitializerClone[i];
|
|
for (var ndx1 = 0; ndx1 < maltMatches.length; ndx1++) {
|
|
var altMatch = maltMatches[ndx1];
|
|
altMatch.alternation = altMatch.alternation || loopNdxCnt;
|
|
for (var ndx2 = 0; ndx2 < malternateMatches.length; ndx2++) {
|
|
var altMatch2 = malternateMatches[ndx2];
|
|
if (altMatch.match.def === altMatch2.match.def && ("string" != typeof altIndex || -1 !== $.inArray(altMatch.locator[altMatch.alternation].toString(), altIndexArr))) {
|
|
altMatch.match.mask === altMatch2.match.mask && (maltMatches.splice(ndx1, 1), ndx1--),
|
|
-1 === altMatch2.locator[altMatch.alternation].toString().indexOf(altMatch.locator[altMatch.alternation]) && (altMatch2.locator[altMatch.alternation] = altMatch2.locator[altMatch.alternation] + "," + altMatch.locator[altMatch.alternation],
|
|
altMatch2.alternation = altMatch.alternation);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
malternateMatches = malternateMatches.concat(maltMatches);
|
|
}
|
|
"string" == typeof altIndex && (malternateMatches = $.map(malternateMatches, function(lmnt, ndx) {
|
|
if (isFinite(ndx)) {
|
|
var mamatch, alternation = lmnt.alternation, altLocArr = lmnt.locator[alternation].toString().split(",");
|
|
lmnt.locator[alternation] = void 0, lmnt.alternation = void 0;
|
|
for (var alndx = 0; alndx < altLocArr.length; alndx++) mamatch = -1 !== $.inArray(altLocArr[alndx], altIndexArr),
|
|
mamatch && (void 0 !== lmnt.locator[alternation] ? (lmnt.locator[alternation] += ",",
|
|
lmnt.locator[alternation] += altLocArr[alndx]) : lmnt.locator[alternation] = parseInt(altLocArr[alndx]),
|
|
lmnt.alternation = alternation);
|
|
if (void 0 !== lmnt.locator[alternation]) return lmnt;
|
|
}
|
|
})), matches = currentMatches.concat(malternateMatches), testPos = pos, insertStop = matches.length > 0;
|
|
} else match = handleMatch(alternateToken.matches[altIndex] || maskToken.matches[altIndex], [ altIndex ].concat(loopNdx), quantifierRecurse);
|
|
if (match) return !0;
|
|
} else if (match.isQuantifier && quantifierRecurse !== maskToken.matches[$.inArray(match, maskToken.matches) - 1]) for (var qt = match, qndx = ndxInitializer.length > 0 ? ndxInitializer.shift() : 0; qndx < (isNaN(qt.quantifier.max) ? qndx + 1 : qt.quantifier.max) && pos >= testPos; qndx++) {
|
|
var tokenGroup = maskToken.matches[$.inArray(qt, maskToken.matches) - 1];
|
|
if (match = handleMatch(tokenGroup, [ qndx ].concat(loopNdx), tokenGroup)) {
|
|
if (latestMatch = matches[matches.length - 1].match, latestMatch.optionalQuantifier = qndx > qt.quantifier.min - 1,
|
|
isFirstMatch(latestMatch, tokenGroup)) {
|
|
if (qndx > qt.quantifier.min - 1) {
|
|
insertStop = !0, testPos = pos;
|
|
break;
|
|
}
|
|
return !0;
|
|
}
|
|
return !0;
|
|
}
|
|
} else if (match = resolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse)) return !0;
|
|
} else testPos++;
|
|
}
|
|
for (var tndx = ndxInitializer.length > 0 ? ndxInitializer.shift() : 0; tndx < maskToken.matches.length; tndx++) if (maskToken.matches[tndx].isQuantifier !== !0) {
|
|
var match = handleMatch(maskToken.matches[tndx], [ tndx ].concat(loopNdx), quantifierRecurse);
|
|
if (match && testPos === pos) return match;
|
|
if (testPos > pos) break;
|
|
}
|
|
}
|
|
function mergeLocators(tests) {
|
|
var locator = [];
|
|
return $.isArray(tests) || (tests = [ tests ]), void 0 === tests[0].alternation ? locator = tests[0].locator.slice() : $.each(tests, function(ndx, tst) {
|
|
if ("" !== tst.def) if (0 === locator.length) locator = tst.locator.slice(); else for (var i = 0; i < locator.length; i++) tst.locator[i] && -1 === locator[i].toString().indexOf(tst.locator[i]) && (locator[i] += "," + tst.locator[i]);
|
|
}), locator;
|
|
}
|
|
var latestMatch, maskTokens = getMaskSet().maskToken, testPos = ndxIntlzr ? tstPs : 0, ndxInitializer = ndxIntlzr || [ 0 ], matches = [], insertStop = !1, cacheDependency = ndxIntlzr ? ndxIntlzr.join("") : "";
|
|
if (pos > -1) {
|
|
if (void 0 === ndxIntlzr) {
|
|
for (var test, previousPos = pos - 1; void 0 === (test = getMaskSet().validPositions[previousPos] || getMaskSet().tests[previousPos]) && previousPos > -1; ) previousPos--;
|
|
void 0 !== test && previousPos > -1 && (ndxInitializer = mergeLocators(test), cacheDependency = ndxInitializer.join(""),
|
|
testPos = previousPos);
|
|
}
|
|
if (getMaskSet().tests[pos] && getMaskSet().tests[pos][0].cd === cacheDependency) return getMaskSet().tests[pos];
|
|
for (var mtndx = ndxInitializer.shift(); mtndx < maskTokens.length; mtndx++) {
|
|
var match = resolveTestFromToken(maskTokens[mtndx], ndxInitializer, [ mtndx ]);
|
|
if (match && testPos === pos || testPos > pos) break;
|
|
}
|
|
}
|
|
return (0 === matches.length || insertStop) && matches.push({
|
|
match: {
|
|
fn: null,
|
|
cardinality: 0,
|
|
optionality: !0,
|
|
casing: null,
|
|
def: ""
|
|
},
|
|
locator: []
|
|
}), getMaskSet().tests[pos] = $.extend(!0, [], matches), getMaskSet().tests[pos];
|
|
}
|
|
function getBufferTemplate() {
|
|
return void 0 === getMaskSet()._buffer && (getMaskSet()._buffer = getMaskTemplate(!1, 1)),
|
|
getMaskSet()._buffer;
|
|
}
|
|
function getBuffer(noCache) {
|
|
if (void 0 === getMaskSet().buffer || noCache === !0) {
|
|
if (noCache === !0) for (var testNdx in getMaskSet().tests) void 0 === getMaskSet().validPositions[testNdx] && delete getMaskSet().tests[testNdx];
|
|
getMaskSet().buffer = getMaskTemplate(!0, getLastValidPosition(), !0);
|
|
}
|
|
return getMaskSet().buffer;
|
|
}
|
|
function refreshFromBuffer(start, end, buffer) {
|
|
var i;
|
|
if (buffer = buffer, start === !0) resetMaskSet(), start = 0, end = buffer.length; else for (i = start; end > i; i++) delete getMaskSet().validPositions[i],
|
|
delete getMaskSet().tests[i];
|
|
for (i = start; end > i; i++) resetMaskSet(!0), buffer[i] !== opts.skipOptionalPartCharacter && isValid(i, buffer[i], !0, !0);
|
|
}
|
|
function casing(elem, test) {
|
|
switch (test.casing) {
|
|
case "upper":
|
|
elem = elem.toUpperCase();
|
|
break;
|
|
|
|
case "lower":
|
|
elem = elem.toLowerCase();
|
|
}
|
|
return elem;
|
|
}
|
|
function checkAlternationMatch(altArr1, altArr2) {
|
|
for (var altArrC = opts.greedy ? altArr2 : altArr2.slice(0, 1), isMatch = !1, alndx = 0; alndx < altArr1.length; alndx++) if (-1 !== $.inArray(altArr1[alndx], altArrC)) {
|
|
isMatch = !0;
|
|
break;
|
|
}
|
|
return isMatch;
|
|
}
|
|
function isValid(pos, c, strict, fromSetValid) {
|
|
function isSelection(posObj) {
|
|
return isRTL ? posObj.begin - posObj.end > 1 || posObj.begin - posObj.end === 1 && opts.insertMode : posObj.end - posObj.begin > 1 || posObj.end - posObj.begin === 1 && opts.insertMode;
|
|
}
|
|
function _isValid(position, c, strict, fromSetValid) {
|
|
var rslt = !1;
|
|
return $.each(getTests(position), function(ndx, tst) {
|
|
for (var test = tst.match, loopend = c ? 1 : 0, chrs = "", i = test.cardinality; i > loopend; i--) chrs += getBufferElement(position - (i - 1));
|
|
if (c && (chrs += c), getBuffer(!0), rslt = null != test.fn ? test.fn.test(chrs, getMaskSet(), position, strict, opts, isSelection(pos)) : c !== test.def && c !== opts.skipOptionalPartCharacter || "" === test.def ? !1 : {
|
|
c: test.placeholder || test.def,
|
|
pos: position
|
|
}, rslt !== !1) {
|
|
var elem = void 0 !== rslt.c ? rslt.c : c;
|
|
elem = elem === opts.skipOptionalPartCharacter && null === test.fn ? test.placeholder || test.def : elem;
|
|
var validatedPos = position, possibleModifiedBuffer = getBuffer();
|
|
if (void 0 !== rslt.remove && ($.isArray(rslt.remove) || (rslt.remove = [ rslt.remove ]),
|
|
$.each(rslt.remove.sort(function(a, b) {
|
|
return b - a;
|
|
}), function(ndx, lmnt) {
|
|
stripValidPositions(lmnt, lmnt + 1, !0);
|
|
})), void 0 !== rslt.insert && ($.isArray(rslt.insert) || (rslt.insert = [ rslt.insert ]),
|
|
$.each(rslt.insert.sort(function(a, b) {
|
|
return a - b;
|
|
}), function(ndx, lmnt) {
|
|
isValid(lmnt.pos, lmnt.c, !1, fromSetValid);
|
|
})), rslt.refreshFromBuffer) {
|
|
var refresh = rslt.refreshFromBuffer;
|
|
if (strict = !0, refreshFromBuffer(refresh === !0 ? refresh : refresh.start, refresh.end, possibleModifiedBuffer),
|
|
void 0 === rslt.pos && void 0 === rslt.c) return rslt.pos = getLastValidPosition(),
|
|
!1;
|
|
if (validatedPos = void 0 !== rslt.pos ? rslt.pos : position, validatedPos !== position) return rslt = $.extend(rslt, isValid(validatedPos, elem, !0, fromSetValid)),
|
|
!1;
|
|
} else if (rslt !== !0 && void 0 !== rslt.pos && rslt.pos !== position && (validatedPos = rslt.pos,
|
|
refreshFromBuffer(position, validatedPos, getBuffer().slice()), validatedPos !== position)) return rslt = $.extend(rslt, isValid(validatedPos, elem, !0)),
|
|
!1;
|
|
return rslt !== !0 && void 0 === rslt.pos && void 0 === rslt.c ? !1 : (ndx > 0 && resetMaskSet(!0),
|
|
setValidPosition(validatedPos, $.extend({}, tst, {
|
|
input: casing(elem, test)
|
|
}), fromSetValid, isSelection(pos)) || (rslt = !1), !1);
|
|
}
|
|
}), rslt;
|
|
}
|
|
function alternate(pos, c, strict, fromSetValid) {
|
|
for (var lastAlt, alternation, isValidRslt, altPos, i, validPos, validPsClone = $.extend(!0, {}, getMaskSet().validPositions), testsClone = $.extend(!0, {}, getMaskSet().tests), lAlt = getLastValidPosition(); lAlt >= 0 && (altPos = getMaskSet().validPositions[lAlt],
|
|
!altPos || void 0 === altPos.alternation || (lastAlt = lAlt, alternation = getMaskSet().validPositions[lastAlt].alternation,
|
|
getTestTemplate(lastAlt).locator[altPos.alternation] === altPos.locator[altPos.alternation])); lAlt--) ;
|
|
if (void 0 !== alternation) {
|
|
lastAlt = parseInt(lastAlt);
|
|
for (var decisionPos in getMaskSet().validPositions) if (decisionPos = parseInt(decisionPos),
|
|
altPos = getMaskSet().validPositions[decisionPos], decisionPos >= lastAlt && void 0 !== altPos.alternation) {
|
|
var altNdxs;
|
|
0 === lastAlt ? (altNdxs = [], $.each(getMaskSet().tests[lastAlt], function(ndx, test) {
|
|
void 0 !== test.locator[alternation] && (altNdxs = altNdxs.concat(test.locator[alternation].toString().split(",")));
|
|
})) : altNdxs = getMaskSet().validPositions[lastAlt].locator[alternation].toString().split(",");
|
|
var decisionTaker = void 0 !== altPos.locator[alternation] ? altPos.locator[alternation] : altNdxs[0];
|
|
decisionTaker.length > 0 && (decisionTaker = decisionTaker.split(",")[0]);
|
|
for (var mndx = 0; mndx < altNdxs.length; mndx++) {
|
|
var validInputs = [], staticInputsBeforePos = 0, staticInputsBeforePosAlternate = 0;
|
|
if (decisionTaker < altNdxs[mndx]) {
|
|
for (var possibilityPos, possibilities, dp = decisionPos; dp >= 0; dp--) if (possibilityPos = getMaskSet().validPositions[dp],
|
|
void 0 !== possibilityPos) {
|
|
var bestMatch = selectBestMatch(dp, altNdxs[mndx]);
|
|
getMaskSet().validPositions[dp].match.def !== bestMatch.match.def && (validInputs.push(getMaskSet().validPositions[dp].input),
|
|
getMaskSet().validPositions[dp] = bestMatch, getMaskSet().validPositions[dp].input = getPlaceholder(dp),
|
|
null === getMaskSet().validPositions[dp].match.fn && staticInputsBeforePosAlternate++,
|
|
possibilityPos = bestMatch), possibilities = possibilityPos.locator[alternation],
|
|
possibilityPos.locator[alternation] = parseInt(altNdxs[mndx]);
|
|
break;
|
|
}
|
|
if (decisionTaker !== possibilityPos.locator[alternation]) {
|
|
for (i = decisionPos + 1; i < getLastValidPosition(void 0, !0) + 1; i++) validPos = getMaskSet().validPositions[i],
|
|
validPos && null != validPos.match.fn ? validInputs.push(validPos.input) : pos > i && staticInputsBeforePos++,
|
|
delete getMaskSet().validPositions[i], delete getMaskSet().tests[i];
|
|
for (resetMaskSet(!0), opts.keepStatic = !opts.keepStatic, isValidRslt = !0; validInputs.length > 0; ) {
|
|
var input = validInputs.shift();
|
|
if (input !== opts.skipOptionalPartCharacter && !(isValidRslt = isValid(getLastValidPosition(void 0, !0) + 1, input, !1, fromSetValid))) break;
|
|
}
|
|
if (possibilityPos.alternation = alternation, possibilityPos.locator[alternation] = possibilities,
|
|
isValidRslt) {
|
|
var targetLvp = getLastValidPosition(pos) + 1;
|
|
for (i = decisionPos + 1; i < getLastValidPosition() + 1; i++) validPos = getMaskSet().validPositions[i],
|
|
(void 0 === validPos || null == validPos.match.fn) && pos > i && staticInputsBeforePosAlternate++;
|
|
pos += staticInputsBeforePosAlternate - staticInputsBeforePos, isValidRslt = isValid(pos > targetLvp ? targetLvp : pos, c, strict, fromSetValid);
|
|
}
|
|
if (opts.keepStatic = !opts.keepStatic, isValidRslt) return isValidRslt;
|
|
resetMaskSet(), getMaskSet().validPositions = $.extend(!0, {}, validPsClone), getMaskSet().tests = $.extend(!0, {}, testsClone);
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
return !1;
|
|
}
|
|
function trackbackAlternations(originalPos, newPos) {
|
|
for (var vp = getMaskSet().validPositions[newPos], targetLocator = vp.locator, tll = targetLocator.length, ps = originalPos; newPos > ps; ps++) if (void 0 === getMaskSet().validPositions[ps] && !isMask(ps, !0)) {
|
|
var tests = getTests(ps), bestMatch = tests[0], equality = -1;
|
|
$.each(tests, function(ndx, tst) {
|
|
for (var i = 0; tll > i && (void 0 !== tst.locator[i] && checkAlternationMatch(tst.locator[i].toString().split(","), targetLocator[i].toString().split(","))); i++) i > equality && (equality = i,
|
|
bestMatch = tst);
|
|
}), setValidPosition(ps, $.extend({}, bestMatch, {
|
|
input: bestMatch.match.placeholder || bestMatch.match.def
|
|
}), !0);
|
|
}
|
|
}
|
|
strict = strict === !0;
|
|
var maskPos = pos;
|
|
void 0 !== pos.begin && (maskPos = isRTL && !isSelection(pos) ? pos.end : pos.begin);
|
|
for (var result = !1, positionsClone = $.extend(!0, {}, getMaskSet().validPositions), pndx = maskPos - 1; pndx > -1 && !getMaskSet().validPositions[pndx]; pndx--) ;
|
|
var testTemplate;
|
|
for (pndx++; maskPos > pndx; pndx++) void 0 === getMaskSet().validPositions[pndx] && (opts.jitMasking === !1 || opts.jitMasking > pndx) && ((testTemplate = getTestTemplate(pndx)).match.def === opts.radixPointDefinitionSymbol || !isMask(pndx, !0) || $.inArray(opts.radixPoint, getBuffer()) < pndx && testTemplate.match.fn && testTemplate.match.fn.test(getPlaceholder(pndx), getMaskSet(), pndx, !1, opts)) && _isValid(getLastValidPosition(pndx, !0) + 1, testTemplate.match.placeholder || (null == testTemplate.match.fn ? testTemplate.match.def : "" !== getPlaceholder(pndx) ? getPlaceholder(pndx) : getBuffer()[pndx]), !0, fromSetValid);
|
|
if (isSelection(pos) && (handleRemove(void 0, Inputmask.keyCode.DELETE, pos), maskPos = getMaskSet().p),
|
|
maskPos < getMaskLength() && (result = _isValid(maskPos, c, strict, fromSetValid),
|
|
(!strict || fromSetValid === !0) && result === !1)) {
|
|
var currentPosValid = getMaskSet().validPositions[maskPos];
|
|
if (!currentPosValid || null !== currentPosValid.match.fn || currentPosValid.match.def !== c && c !== opts.skipOptionalPartCharacter) {
|
|
if ((opts.insertMode || void 0 === getMaskSet().validPositions[seekNext(maskPos)]) && !isMask(maskPos, !0)) {
|
|
var staticChar = getTestTemplate(maskPos).match;
|
|
staticChar = staticChar.placeholder || staticChar.def, _isValid(maskPos, staticChar, strict, fromSetValid);
|
|
for (var nPos = maskPos + 1, snPos = seekNext(maskPos); snPos >= nPos; nPos++) if (result = _isValid(nPos, c, strict, fromSetValid),
|
|
result !== !1) {
|
|
trackbackAlternations(maskPos, nPos), maskPos = nPos;
|
|
break;
|
|
}
|
|
}
|
|
} else result = {
|
|
caret: seekNext(maskPos)
|
|
};
|
|
}
|
|
return result === !1 && opts.keepStatic && (result = alternate(maskPos, c, strict, fromSetValid)),
|
|
result === !0 && (result = {
|
|
pos: maskPos
|
|
}), $.isFunction(opts.postValidation) && result !== !1 && !strict && fromSetValid !== !0 && (result = opts.postValidation(getBuffer(!0), result, opts) ? result : !1),
|
|
void 0 === result.pos && (result.pos = maskPos), result === !1 && (resetMaskSet(!0),
|
|
getMaskSet().validPositions = $.extend(!0, {}, positionsClone)), result;
|
|
}
|
|
function isMask(pos, strict) {
|
|
var test;
|
|
if (strict ? (test = getTestTemplate(pos).match, "" === test.def && (test = getTest(pos))) : test = getTest(pos),
|
|
null != test.fn) return test.fn;
|
|
if (strict !== !0 && pos > -1 && !opts.keepStatic && void 0 === getMaskSet().validPositions[pos]) {
|
|
var tests = getTests(pos);
|
|
return tests.length > 2;
|
|
}
|
|
return !1;
|
|
}
|
|
function getMaskLength() {
|
|
var maskLength;
|
|
maxLength = void 0 !== el ? el.maxLength : void 0, -1 === maxLength && (maxLength = void 0);
|
|
var pos, lvp = getLastValidPosition(), testPos = getMaskSet().validPositions[lvp], ndxIntlzr = void 0 !== testPos ? testPos.locator.slice() : void 0;
|
|
for (pos = lvp + 1; void 0 === testPos || null !== testPos.match.fn || null === testPos.match.fn && "" !== testPos.match.def; pos++) testPos = getTestTemplate(pos, ndxIntlzr, pos - 1),
|
|
ndxIntlzr = testPos.locator.slice();
|
|
var lastTest = getTest(pos - 1);
|
|
return maskLength = "" !== lastTest.def ? pos : pos - 1, void 0 === maxLength || maxLength > maskLength ? maskLength : maxLength;
|
|
}
|
|
function seekNext(pos, newBlock) {
|
|
var maskL = getMaskLength();
|
|
if (pos >= maskL) return maskL;
|
|
for (var position = pos; ++position < maskL && (newBlock === !0 && (getTest(position).newBlockMarker !== !0 || !isMask(position)) || newBlock !== !0 && !isMask(position) && (opts.nojumps !== !0 || opts.nojumpsThreshold > position)); ) ;
|
|
return position;
|
|
}
|
|
function seekPrevious(pos, newBlock) {
|
|
var position = pos;
|
|
if (0 >= position) return 0;
|
|
for (;--position > 0 && (newBlock === !0 && getTest(position).newBlockMarker !== !0 || newBlock !== !0 && !isMask(position)); ) ;
|
|
return position;
|
|
}
|
|
function getBufferElement(position) {
|
|
return void 0 === getMaskSet().validPositions[position] ? getPlaceholder(position) : getMaskSet().validPositions[position].input;
|
|
}
|
|
function writeBuffer(input, buffer, caretPos, event, triggerInputEvent) {
|
|
if (event && $.isFunction(opts.onBeforeWrite)) {
|
|
var result = opts.onBeforeWrite(event, buffer, caretPos, opts);
|
|
if (result) {
|
|
if (result.refreshFromBuffer) {
|
|
var refresh = result.refreshFromBuffer;
|
|
refreshFromBuffer(refresh === !0 ? refresh : refresh.start, refresh.end, result.buffer || buffer),
|
|
buffer = getBuffer(!0);
|
|
}
|
|
void 0 !== caretPos && (caretPos = void 0 !== result.caret ? result.caret : caretPos);
|
|
}
|
|
}
|
|
input.inputmask._valueSet(buffer.join("")), void 0 === caretPos || void 0 !== event && "blur" === event.type || caret(input, caretPos),
|
|
triggerInputEvent === !0 && (skipInputEvent = !0, $(input).trigger("input"));
|
|
}
|
|
function getPlaceholder(pos, test) {
|
|
if (test = test || getTest(pos), void 0 !== test.placeholder) return test.placeholder;
|
|
if (null === test.fn) {
|
|
if (pos > -1 && !opts.keepStatic && void 0 === getMaskSet().validPositions[pos]) {
|
|
var prevTest, tests = getTests(pos), staticAlternations = [];
|
|
if (tests.length > 2) for (var i = 0; i < tests.length; i++) if (tests[i].match.optionality !== !0 && tests[i].match.optionalQuantifier !== !0 && (null === tests[i].match.fn || void 0 === prevTest || tests[i].match.fn.test(prevTest.match.def, getMaskSet(), pos, !0, opts) !== !1) && (staticAlternations.push(tests[i]),
|
|
null === tests[i].match.fn && (prevTest = tests[i]), staticAlternations.length > 1)) return opts.placeholder.charAt(pos % opts.placeholder.length);
|
|
}
|
|
return test.def;
|
|
}
|
|
return opts.placeholder.charAt(pos % opts.placeholder.length);
|
|
}
|
|
function checkVal(input, writeOut, strict, nptvl) {
|
|
function isTemplateMatch() {
|
|
var isMatch = !1, charCodeNdx = getBufferTemplate().slice(initialNdx, seekNext(initialNdx)).join("").indexOf(charCodes);
|
|
if (-1 !== charCodeNdx && !isMask(initialNdx)) {
|
|
isMatch = !0;
|
|
for (var bufferTemplateArr = getBufferTemplate().slice(initialNdx, initialNdx + charCodeNdx), i = 0; i < bufferTemplateArr.length; i++) if (" " !== bufferTemplateArr[i]) {
|
|
isMatch = !1;
|
|
break;
|
|
}
|
|
}
|
|
return isMatch;
|
|
}
|
|
var result, inputValue = nptvl.slice(), charCodes = "", initialNdx = 0;
|
|
if (resetMaskSet(), getMaskSet().p = seekNext(-1), !strict) if (opts.autoUnmask !== !0) {
|
|
var staticInput = getBufferTemplate().slice(0, seekNext(-1)).join(""), matches = inputValue.join("").match(new RegExp("^" + Inputmask.escapeRegex(staticInput), "g"));
|
|
matches && matches.length > 0 && (inputValue.splice(0, matches.length * staticInput.length),
|
|
initialNdx = seekNext(initialNdx));
|
|
} else initialNdx = seekNext(initialNdx);
|
|
$.each(inputValue, function(ndx, charCode) {
|
|
if (void 0 !== charCode) {
|
|
var keypress = new $.Event("keypress");
|
|
keypress.which = charCode.charCodeAt(0), charCodes += charCode;
|
|
var lvp = getLastValidPosition(void 0, !0), lvTest = getMaskSet().validPositions[lvp], nextTest = getTestTemplate(lvp + 1, lvTest ? lvTest.locator.slice() : void 0, lvp);
|
|
if (!isTemplateMatch() || strict || opts.autoUnmask) {
|
|
var pos = strict ? ndx : null == nextTest.match.fn && nextTest.match.optionality && lvp + 1 < getMaskSet().p ? lvp + 1 : getMaskSet().p;
|
|
result = keypressEvent.call(input, keypress, !0, !1, strict, pos), initialNdx = pos + 1,
|
|
charCodes = "";
|
|
} else result = keypressEvent.call(input, keypress, !0, !1, !0, lvp + 1);
|
|
if (!strict && $.isFunction(opts.onBeforeWrite) && (result = opts.onBeforeWrite(keypress, getBuffer(), result.forwardPosition, opts),
|
|
result && result.refreshFromBuffer)) {
|
|
var refresh = result.refreshFromBuffer;
|
|
refreshFromBuffer(refresh === !0 ? refresh : refresh.start, refresh.end, result.buffer),
|
|
resetMaskSet(!0), result.caret && (getMaskSet().p = result.caret);
|
|
}
|
|
}
|
|
}), writeOut && writeBuffer(input, getBuffer(), document.activeElement === input ? seekNext(getLastValidPosition(0)) : void 0, new $.Event("checkval"));
|
|
}
|
|
function unmaskedvalue(input) {
|
|
if (input && void 0 === input.inputmask) return input.value;
|
|
var umValue = [], vps = getMaskSet().validPositions;
|
|
for (var pndx in vps) vps[pndx].match && null != vps[pndx].match.fn && umValue.push(vps[pndx].input);
|
|
var unmaskedValue = 0 === umValue.length ? null : (isRTL ? umValue.reverse() : umValue).join("");
|
|
if (null !== unmaskedValue) {
|
|
var bufferValue = (isRTL ? getBuffer().slice().reverse() : getBuffer()).join("");
|
|
$.isFunction(opts.onUnMask) && (unmaskedValue = opts.onUnMask(bufferValue, unmaskedValue, opts) || unmaskedValue);
|
|
}
|
|
return unmaskedValue;
|
|
}
|
|
function caret(input, begin, end, notranslate) {
|
|
function translatePosition(pos) {
|
|
if (notranslate !== !0 && isRTL && "number" == typeof pos && (!opts.greedy || "" !== opts.placeholder)) {
|
|
var bffrLght = getBuffer().join("").length;
|
|
pos = bffrLght - pos;
|
|
}
|
|
return pos;
|
|
}
|
|
var range;
|
|
if ("number" != typeof begin) return input.setSelectionRange ? (begin = input.selectionStart,
|
|
end = input.selectionEnd) : window.getSelection ? (range = window.getSelection().getRangeAt(0),
|
|
(range.commonAncestorContainer.parentNode === input || range.commonAncestorContainer === input) && (begin = range.startOffset,
|
|
end = range.endOffset)) : document.selection && document.selection.createRange && (range = document.selection.createRange(),
|
|
begin = 0 - range.duplicate().moveStart("character", -input.inputmask._valueGet().length),
|
|
end = begin + range.text.length), {
|
|
begin: translatePosition(begin),
|
|
end: translatePosition(end)
|
|
};
|
|
begin = translatePosition(begin), end = translatePosition(end), end = "number" == typeof end ? end : begin;
|
|
var scrollCalc = parseInt(((input.ownerDocument.defaultView || window).getComputedStyle ? (input.ownerDocument.defaultView || window).getComputedStyle(input, null) : input.currentStyle).fontSize) * end;
|
|
if (input.scrollLeft = scrollCalc > input.scrollWidth ? scrollCalc : 0, mobile || opts.insertMode !== !1 || begin !== end || end++,
|
|
input.setSelectionRange) input.selectionStart = begin, input.selectionEnd = end; else if (window.getSelection) {
|
|
if (range = document.createRange(), void 0 === input.firstChild || null === input.firstChild) {
|
|
var textNode = document.createTextNode("");
|
|
input.appendChild(textNode);
|
|
}
|
|
range.setStart(input.firstChild, begin < input.inputmask._valueGet().length ? begin : input.inputmask._valueGet().length),
|
|
range.setEnd(input.firstChild, end < input.inputmask._valueGet().length ? end : input.inputmask._valueGet().length),
|
|
range.collapse(!0);
|
|
var sel = window.getSelection();
|
|
sel.removeAllRanges(), sel.addRange(range);
|
|
} else input.createTextRange && (range = input.createTextRange(), range.collapse(!0),
|
|
range.moveEnd("character", end), range.moveStart("character", begin), range.select());
|
|
}
|
|
function determineLastRequiredPosition(returnDefinition) {
|
|
var pos, testPos, buffer = getBuffer(), bl = buffer.length, lvp = getLastValidPosition(), positions = {}, lvTest = getMaskSet().validPositions[lvp], ndxIntlzr = void 0 !== lvTest ? lvTest.locator.slice() : void 0;
|
|
for (pos = lvp + 1; pos < buffer.length; pos++) testPos = getTestTemplate(pos, ndxIntlzr, pos - 1),
|
|
ndxIntlzr = testPos.locator.slice(), positions[pos] = $.extend(!0, {}, testPos);
|
|
var lvTestAlt = lvTest && void 0 !== lvTest.alternation ? lvTest.locator[lvTest.alternation] : void 0;
|
|
for (pos = bl - 1; pos > lvp && (testPos = positions[pos], (testPos.match.optionality || testPos.match.optionalQuantifier || lvTestAlt && (lvTestAlt !== positions[pos].locator[lvTest.alternation] && null != testPos.match.fn || null === testPos.match.fn && testPos.locator[lvTest.alternation] && checkAlternationMatch(testPos.locator[lvTest.alternation].toString().split(","), lvTestAlt.toString().split(",")) && "" !== getTests(pos)[0].def)) && buffer[pos] === getPlaceholder(pos, testPos.match)); pos--) bl--;
|
|
return returnDefinition ? {
|
|
l: bl,
|
|
def: positions[bl] ? positions[bl].match : void 0
|
|
} : bl;
|
|
}
|
|
function clearOptionalTail(buffer) {
|
|
for (var rl = determineLastRequiredPosition(), lmib = buffer.length - 1; lmib > rl && !isMask(lmib); lmib--) ;
|
|
return buffer.splice(rl, lmib + 1 - rl), buffer;
|
|
}
|
|
function isComplete(buffer) {
|
|
if ($.isFunction(opts.isComplete)) return opts.isComplete(buffer, opts);
|
|
if ("*" === opts.repeat) return void 0;
|
|
var complete = !1, lrp = determineLastRequiredPosition(!0), aml = seekPrevious(lrp.l);
|
|
if (void 0 === lrp.def || lrp.def.newBlockMarker || lrp.def.optionality || lrp.def.optionalQuantifier) {
|
|
complete = !0;
|
|
for (var i = 0; aml >= i; i++) {
|
|
var test = getTestTemplate(i).match;
|
|
if (null !== test.fn && void 0 === getMaskSet().validPositions[i] && test.optionality !== !0 && test.optionalQuantifier !== !0 || null === test.fn && buffer[i] !== getPlaceholder(i, test)) {
|
|
complete = !1;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return complete;
|
|
}
|
|
function patchValueProperty(npt) {
|
|
function patchValhook(type) {
|
|
if ($.valHooks && (void 0 === $.valHooks[type] || $.valHooks[type].inputmaskpatch !== !0)) {
|
|
var valhookGet = $.valHooks[type] && $.valHooks[type].get ? $.valHooks[type].get : function(elem) {
|
|
return elem.value;
|
|
}, valhookSet = $.valHooks[type] && $.valHooks[type].set ? $.valHooks[type].set : function(elem, value) {
|
|
return elem.value = value, elem;
|
|
};
|
|
$.valHooks[type] = {
|
|
get: function(elem) {
|
|
if (elem.inputmask) {
|
|
if (elem.inputmask.opts.autoUnmask) return elem.inputmask.unmaskedvalue();
|
|
var result = valhookGet(elem);
|
|
return -1 !== getLastValidPosition(void 0, void 0, elem.inputmask.maskset.validPositions) || opts.nullable !== !0 ? result : "";
|
|
}
|
|
return valhookGet(elem);
|
|
},
|
|
set: function(elem, value) {
|
|
var result, $elem = $(elem);
|
|
return result = valhookSet(elem, value), elem.inputmask && $elem.trigger("setvalue"),
|
|
result;
|
|
},
|
|
inputmaskpatch: !0
|
|
};
|
|
}
|
|
}
|
|
function getter() {
|
|
return this.inputmask ? this.inputmask.opts.autoUnmask ? this.inputmask.unmaskedvalue() : -1 !== getLastValidPosition() || opts.nullable !== !0 ? document.activeElement === this && opts.clearMaskOnLostFocus ? (isRTL ? clearOptionalTail(getBuffer().slice()).reverse() : clearOptionalTail(getBuffer().slice())).join("") : valueGet.call(this) : "" : valueGet.call(this);
|
|
}
|
|
function setter(value) {
|
|
valueSet.call(this, value), this.inputmask && $(this).trigger("setvalue");
|
|
}
|
|
function installNativeValueSetFallback(npt) {
|
|
EventRuler.on(npt, "mouseenter", function(event) {
|
|
var $input = $(this), input = this, value = input.inputmask._valueGet();
|
|
value !== getBuffer().join("") && $input.trigger("setvalue");
|
|
});
|
|
}
|
|
var valueGet, valueSet;
|
|
if (!npt.inputmask.__valueGet) {
|
|
if (Object.getOwnPropertyDescriptor) {
|
|
"function" != typeof Object.getPrototypeOf && (Object.getPrototypeOf = "object" == typeof "test".__proto__ ? function(object) {
|
|
return object.__proto__;
|
|
} : function(object) {
|
|
return object.constructor.prototype;
|
|
});
|
|
var valueProperty = Object.getPrototypeOf ? Object.getOwnPropertyDescriptor(Object.getPrototypeOf(npt), "value") : void 0;
|
|
valueProperty && valueProperty.get && valueProperty.set ? (valueGet = valueProperty.get,
|
|
valueSet = valueProperty.set, Object.defineProperty(npt, "value", {
|
|
get: getter,
|
|
set: setter,
|
|
configurable: !0
|
|
})) : "INPUT" !== npt.tagName && (valueGet = function() {
|
|
return this.textContent;
|
|
}, valueSet = function(value) {
|
|
this.textContent = value;
|
|
}, Object.defineProperty(npt, "value", {
|
|
get: getter,
|
|
set: setter,
|
|
configurable: !0
|
|
}));
|
|
} else document.__lookupGetter__ && npt.__lookupGetter__("value") && (valueGet = npt.__lookupGetter__("value"),
|
|
valueSet = npt.__lookupSetter__("value"), npt.__defineGetter__("value", getter),
|
|
npt.__defineSetter__("value", setter));
|
|
npt.inputmask.__valueGet = valueGet, npt.inputmask._valueGet = function(overruleRTL) {
|
|
return isRTL && overruleRTL !== !0 ? valueGet.call(this.el).split("").reverse().join("") : valueGet.call(this.el);
|
|
}, npt.inputmask.__valueSet = valueSet, npt.inputmask._valueSet = function(value, overruleRTL) {
|
|
valueSet.call(this.el, null === value || void 0 === value ? "" : overruleRTL !== !0 && isRTL ? value.split("").reverse().join("") : value);
|
|
}, void 0 === valueGet && (valueGet = function() {
|
|
return this.value;
|
|
}, valueSet = function(value) {
|
|
this.value = value;
|
|
}, patchValhook(npt.type), installNativeValueSetFallback(npt));
|
|
}
|
|
}
|
|
function handleRemove(input, k, pos, strict) {
|
|
function generalize() {
|
|
if (opts.keepStatic) {
|
|
resetMaskSet(!0);
|
|
var lastAlt, validInputs = [], positionsClone = $.extend(!0, {}, getMaskSet().validPositions);
|
|
for (lastAlt = getLastValidPosition(); lastAlt >= 0; lastAlt--) {
|
|
var validPos = getMaskSet().validPositions[lastAlt];
|
|
if (validPos && (null != validPos.match.fn && validInputs.push(validPos.input),
|
|
delete getMaskSet().validPositions[lastAlt], void 0 !== validPos.alternation && validPos.locator[validPos.alternation] === getTestTemplate(lastAlt).locator[validPos.alternation])) break;
|
|
}
|
|
if (lastAlt > -1) for (;validInputs.length > 0; ) {
|
|
getMaskSet().p = seekNext(getLastValidPosition());
|
|
var keypress = new $.Event("keypress");
|
|
keypress.which = validInputs.pop().charCodeAt(0), keypressEvent.call(input, keypress, !0, !1, !1, getMaskSet().p);
|
|
} else getMaskSet().validPositions = $.extend(!0, {}, positionsClone);
|
|
}
|
|
}
|
|
if ((opts.numericInput || isRTL) && (k === Inputmask.keyCode.BACKSPACE ? k = Inputmask.keyCode.DELETE : k === Inputmask.keyCode.DELETE && (k = Inputmask.keyCode.BACKSPACE),
|
|
isRTL)) {
|
|
var pend = pos.end;
|
|
pos.end = pos.begin, pos.begin = pend;
|
|
}
|
|
k === Inputmask.keyCode.BACKSPACE && (pos.end - pos.begin < 1 || opts.insertMode === !1) ? (pos.begin = seekPrevious(pos.begin),
|
|
void 0 === getMaskSet().validPositions[pos.begin] || getMaskSet().validPositions[pos.begin].input !== opts.groupSeparator && getMaskSet().validPositions[pos.begin].input !== opts.radixPoint || pos.begin--) : k === Inputmask.keyCode.DELETE && pos.begin === pos.end && (pos.end = isMask(pos.end) ? pos.end + 1 : seekNext(pos.end) + 1,
|
|
void 0 === getMaskSet().validPositions[pos.begin] || getMaskSet().validPositions[pos.begin].input !== opts.groupSeparator && getMaskSet().validPositions[pos.begin].input !== opts.radixPoint || pos.end++),
|
|
stripValidPositions(pos.begin, pos.end, !1, strict), strict !== !0 && generalize();
|
|
var lvp = getLastValidPosition(pos.begin);
|
|
lvp < pos.begin ? (-1 === lvp && resetMaskSet(), getMaskSet().p = seekNext(lvp)) : strict !== !0 && (getMaskSet().p = pos.begin);
|
|
}
|
|
function keydownEvent(e) {
|
|
var input = this, $input = $(input), k = e.keyCode, pos = caret(input);
|
|
if (k === Inputmask.keyCode.BACKSPACE || k === Inputmask.keyCode.DELETE || iphone && k === Inputmask.keyCode.BACKSPACE_SAFARI || e.ctrlKey && k === Inputmask.keyCode.X && !isInputEventSupported("cut")) e.preventDefault(),
|
|
handleRemove(input, k, pos), writeBuffer(input, getBuffer(), getMaskSet().p, e, undoValue !== getBuffer().join("")),
|
|
input.inputmask._valueGet() === getBufferTemplate().join("") ? $input.trigger("cleared") : isComplete(getBuffer()) === !0 && $input.trigger("complete"),
|
|
opts.showTooltip && (input.title = opts.tooltip || getMaskSet().mask); else if (k === Inputmask.keyCode.END || k === Inputmask.keyCode.PAGE_DOWN) {
|
|
e.preventDefault();
|
|
var caretPos = seekNext(getLastValidPosition());
|
|
opts.insertMode || caretPos !== getMaskLength() || e.shiftKey || caretPos--, caret(input, e.shiftKey ? pos.begin : caretPos, caretPos, !0);
|
|
} else k === Inputmask.keyCode.HOME && !e.shiftKey || k === Inputmask.keyCode.PAGE_UP ? (e.preventDefault(),
|
|
caret(input, 0, e.shiftKey ? pos.begin : 0, !0)) : (opts.undoOnEscape && k === Inputmask.keyCode.ESCAPE || 90 === k && e.ctrlKey) && e.altKey !== !0 ? (checkVal(input, !0, !1, undoValue.split("")),
|
|
$input.trigger("click")) : k !== Inputmask.keyCode.INSERT || e.shiftKey || e.ctrlKey ? opts.tabThrough === !0 && k === Inputmask.keyCode.TAB ? (e.shiftKey === !0 ? (null === getTest(pos.begin).fn && (pos.begin = seekNext(pos.begin)),
|
|
pos.end = seekPrevious(pos.begin, !0), pos.begin = seekPrevious(pos.end, !0)) : (pos.begin = seekNext(pos.begin, !0),
|
|
pos.end = seekNext(pos.begin, !0), pos.end < getMaskLength() && pos.end--), pos.begin < getMaskLength() && (e.preventDefault(),
|
|
caret(input, pos.begin, pos.end))) : opts.insertMode !== !1 || e.shiftKey || (k === Inputmask.keyCode.RIGHT ? setTimeout(function() {
|
|
var caretPos = caret(input);
|
|
caret(input, caretPos.begin);
|
|
}, 0) : k === Inputmask.keyCode.LEFT && setTimeout(function() {
|
|
var caretPos = caret(input);
|
|
caret(input, isRTL ? caretPos.begin + 1 : caretPos.begin - 1);
|
|
}, 0)) : (opts.insertMode = !opts.insertMode, caret(input, opts.insertMode || pos.begin !== getMaskLength() ? pos.begin : pos.begin - 1));
|
|
opts.onKeyDown.call(this, e, getBuffer(), caret(input).begin, opts), ignorable = -1 !== $.inArray(k, opts.ignorables);
|
|
}
|
|
function keypressEvent(e, checkval, writeOut, strict, ndx) {
|
|
var input = this, $input = $(input), k = e.which || e.charCode || e.keyCode;
|
|
if (!(checkval === !0 || e.ctrlKey && e.altKey) && (e.ctrlKey || e.metaKey || ignorable)) return k === Inputmask.keyCode.ENTER && undoValue !== getBuffer().join("") && (undoValue = getBuffer().join(""),
|
|
setTimeout(function() {
|
|
$input.trigger("change");
|
|
}, 0)), !0;
|
|
if (k) {
|
|
46 === k && e.shiftKey === !1 && "," === opts.radixPoint && (k = 44);
|
|
var forwardPosition, pos = checkval ? {
|
|
begin: ndx,
|
|
end: ndx
|
|
} : caret(input), c = String.fromCharCode(k);
|
|
getMaskSet().writeOutBuffer = !0;
|
|
var valResult = isValid(pos, c, strict);
|
|
if (valResult !== !1) {
|
|
var p = valResult.pos;
|
|
if (resetMaskSet(!0), void 0 !== valResult.caret) forwardPosition = valResult.caret; else {
|
|
var vps = getMaskSet().validPositions;
|
|
forwardPosition = !opts.keepStatic && (void 0 !== vps[p + 1] && getTests(p + 1, vps[p].locator.slice(), p).length > 1 || void 0 !== vps[p].alternation) ? p + 1 : seekNext(p);
|
|
}
|
|
getMaskSet().p = forwardPosition;
|
|
}
|
|
if (writeOut !== !1) {
|
|
var self = this;
|
|
if (setTimeout(function() {
|
|
opts.onKeyValidation.call(self, k, valResult, opts);
|
|
}, 0), getMaskSet().writeOutBuffer && valResult !== !1) {
|
|
var buffer = getBuffer();
|
|
writeBuffer(input, buffer, opts.numericInput && void 0 === valResult.caret ? seekPrevious(forwardPosition) : forwardPosition, e, checkval !== !0),
|
|
checkval !== !0 && setTimeout(function() {
|
|
isComplete(buffer) === !0 && $input.trigger("complete");
|
|
}, 0);
|
|
}
|
|
}
|
|
if (opts.showTooltip && (input.title = opts.tooltip || getMaskSet().mask), e.preventDefault(),
|
|
checkval) return valResult.forwardPosition = forwardPosition, valResult;
|
|
}
|
|
}
|
|
function pasteEvent(e) {
|
|
var tempValue, input = this, ev = e.originalEvent || e, $input = $(input), inputValue = input.inputmask._valueGet(!0), caretPos = caret(input);
|
|
isRTL && (tempValue = caretPos.end, caretPos.end = caretPos.begin, caretPos.begin = tempValue);
|
|
var valueBeforeCaret = inputValue.substr(0, caretPos.begin), valueAfterCaret = inputValue.substr(caretPos.end, inputValue.length);
|
|
valueBeforeCaret === (isRTL ? getBufferTemplate().reverse() : getBufferTemplate()).slice(0, caretPos.begin).join("") && (valueBeforeCaret = ""),
|
|
valueAfterCaret === (isRTL ? getBufferTemplate().reverse() : getBufferTemplate()).slice(caretPos.end).join("") && (valueAfterCaret = ""),
|
|
isRTL && (tempValue = valueBeforeCaret, valueBeforeCaret = valueAfterCaret, valueAfterCaret = tempValue),
|
|
window.clipboardData && window.clipboardData.getData ? inputValue = valueBeforeCaret + window.clipboardData.getData("Text") + valueAfterCaret : ev.clipboardData && ev.clipboardData.getData && (inputValue = valueBeforeCaret + ev.clipboardData.getData("text/plain") + valueAfterCaret);
|
|
var pasteValue = inputValue;
|
|
if ($.isFunction(opts.onBeforePaste)) {
|
|
if (pasteValue = opts.onBeforePaste(inputValue, opts), pasteValue === !1) return e.preventDefault();
|
|
pasteValue || (pasteValue = inputValue);
|
|
}
|
|
return checkVal(input, !1, !1, isRTL ? pasteValue.split("").reverse() : pasteValue.toString().split("")),
|
|
writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()), e, !0), isComplete(getBuffer()) === !0 && $input.trigger("complete"),
|
|
e.preventDefault();
|
|
}
|
|
function inputFallBackEvent(e) {
|
|
var input = this, inputValue = input.inputmask._valueGet();
|
|
if (getBuffer().join("") !== inputValue) {
|
|
var caretPos = caret(input);
|
|
if (inputValue = inputValue.replace(new RegExp("(" + Inputmask.escapeRegex(getBufferTemplate().join("")) + ")*"), ""),
|
|
iemobile) {
|
|
var inputChar = inputValue.replace(getBuffer().join(""), "");
|
|
if (1 === inputChar.length) {
|
|
var keypress = new $.Event("keypress");
|
|
return keypress.which = inputChar.charCodeAt(0), keypressEvent.call(input, keypress, !0, !0, !1, getMaskSet().validPositions[caretPos.begin - 1] ? caretPos.begin : caretPos.begin - 1),
|
|
!1;
|
|
}
|
|
}
|
|
if (caretPos.begin > inputValue.length && (caret(input, inputValue.length), caretPos = caret(input)),
|
|
getBuffer().length - inputValue.length !== 1 || inputValue.charAt(caretPos.begin) === getBuffer()[caretPos.begin] || inputValue.charAt(caretPos.begin + 1) === getBuffer()[caretPos.begin] || isMask(caretPos.begin)) {
|
|
for (var lvp = getLastValidPosition() + 1, bufferTemplate = getBuffer().slice(lvp).join(""); null === inputValue.match(Inputmask.escapeRegex(bufferTemplate) + "$"); ) bufferTemplate = bufferTemplate.slice(1);
|
|
inputValue = inputValue.replace(bufferTemplate, ""), inputValue = inputValue.split(""),
|
|
checkVal(input, !0, !1, inputValue), isComplete(getBuffer()) === !0 && $(input).trigger("complete");
|
|
} else e.keyCode = Inputmask.keyCode.BACKSPACE, keydownEvent.call(input, e);
|
|
e.preventDefault();
|
|
}
|
|
}
|
|
function setValueEvent(e) {
|
|
var input = this, value = input.inputmask._valueGet();
|
|
checkVal(input, !0, !1, ($.isFunction(opts.onBeforeMask) ? opts.onBeforeMask(value, opts) || value : value).split("")),
|
|
undoValue = getBuffer().join(""), (opts.clearMaskOnLostFocus || opts.clearIncomplete) && input.inputmask._valueGet() === getBufferTemplate().join("") && input.inputmask._valueSet("");
|
|
}
|
|
function focusEvent(e) {
|
|
var input = this, nptValue = input.inputmask._valueGet();
|
|
opts.showMaskOnFocus && (!opts.showMaskOnHover || opts.showMaskOnHover && "" === nptValue) ? input.inputmask._valueGet() !== getBuffer().join("") && writeBuffer(input, getBuffer(), seekNext(getLastValidPosition())) : mouseEnter === !1 && caret(input, seekNext(getLastValidPosition())),
|
|
opts.positionCaretOnTab === !0 && setTimeout(function() {
|
|
caret(input, seekNext(getLastValidPosition()));
|
|
}, 0), undoValue = getBuffer().join("");
|
|
}
|
|
function mouseleaveEvent(e) {
|
|
var input = this;
|
|
if (mouseEnter = !1, opts.clearMaskOnLostFocus && document.activeElement !== input) {
|
|
var buffer = getBuffer().slice(), nptValue = input.inputmask._valueGet();
|
|
nptValue !== input.getAttribute("placeholder") && "" !== nptValue && (-1 === getLastValidPosition() && nptValue === getBufferTemplate().join("") ? buffer = [] : clearOptionalTail(buffer),
|
|
writeBuffer(input, buffer));
|
|
}
|
|
}
|
|
function clickEvent(e) {
|
|
function doRadixFocus(clickPos) {
|
|
if (opts.radixFocus && "" !== opts.radixPoint) {
|
|
var vps = getMaskSet().validPositions;
|
|
if (void 0 === vps[clickPos] || vps[clickPos].input === getPlaceholder(clickPos)) {
|
|
if (clickPos < seekNext(-1)) return !0;
|
|
var radixPos = $.inArray(opts.radixPoint, getBuffer());
|
|
if (-1 !== radixPos) {
|
|
for (var vp in vps) if (vp > radixPos && vps[vp].input !== getPlaceholder(vp)) return !1;
|
|
return !0;
|
|
}
|
|
}
|
|
}
|
|
return !1;
|
|
}
|
|
var input = this;
|
|
setTimeout(function() {
|
|
if (document.activeElement === input) {
|
|
var selectedCaret = caret(input);
|
|
if (selectedCaret.begin === selectedCaret.end) if (doRadixFocus(selectedCaret.begin)) caret(input, opts.numericInput ? seekNext($.inArray(opts.radixPoint, getBuffer())) : $.inArray(opts.radixPoint, getBuffer())); else {
|
|
var clickPosition = selectedCaret.begin, lvclickPosition = getLastValidPosition(clickPosition, !0), lastPosition = seekNext(lvclickPosition);
|
|
if (lastPosition > clickPosition) caret(input, isMask(clickPosition) || isMask(clickPosition - 1) ? clickPosition : seekNext(clickPosition)); else {
|
|
var placeholder = getPlaceholder(lastPosition);
|
|
("" !== placeholder && getBuffer()[lastPosition] !== placeholder || !isMask(lastPosition, !0) && getTest(lastPosition).def === placeholder) && (lastPosition = seekNext(lastPosition)),
|
|
caret(input, lastPosition);
|
|
}
|
|
}
|
|
}
|
|
}, 0);
|
|
}
|
|
function dblclickEvent(e) {
|
|
var input = this;
|
|
setTimeout(function() {
|
|
caret(input, 0, seekNext(getLastValidPosition()));
|
|
}, 0);
|
|
}
|
|
function cutEvent(e) {
|
|
var input = this, $input = $(input), pos = caret(input), ev = e.originalEvent || e, clipboardData = window.clipboardData || ev.clipboardData, clipData = isRTL ? getBuffer().slice(pos.end, pos.begin) : getBuffer().slice(pos.begin, pos.end);
|
|
clipboardData.setData("text", isRTL ? clipData.reverse().join("") : clipData.join("")),
|
|
document.execCommand && document.execCommand("copy"), handleRemove(input, Inputmask.keyCode.DELETE, pos),
|
|
writeBuffer(input, getBuffer(), getMaskSet().p, e, undoValue !== getBuffer().join("")),
|
|
input.inputmask._valueGet() === getBufferTemplate().join("") && $input.trigger("cleared"),
|
|
opts.showTooltip && (input.title = opts.tooltip || getMaskSet().mask);
|
|
}
|
|
function blurEvent(e) {
|
|
var $input = $(this), input = this;
|
|
if (input.inputmask) {
|
|
var nptValue = input.inputmask._valueGet(), buffer = getBuffer().slice();
|
|
undoValue !== buffer.join("") && setTimeout(function() {
|
|
$input.trigger("change"), undoValue = buffer.join("");
|
|
}, 0), "" !== nptValue && (opts.clearMaskOnLostFocus && (-1 === getLastValidPosition() && nptValue === getBufferTemplate().join("") ? buffer = [] : clearOptionalTail(buffer)),
|
|
isComplete(buffer) === !1 && (setTimeout(function() {
|
|
$input.trigger("incomplete");
|
|
}, 0), opts.clearIncomplete && (resetMaskSet(), buffer = opts.clearMaskOnLostFocus ? [] : getBufferTemplate().slice())),
|
|
writeBuffer(input, buffer, void 0, e));
|
|
}
|
|
}
|
|
function mouseenterEvent(e) {
|
|
var input = this;
|
|
mouseEnter = !0, document.activeElement !== input && opts.showMaskOnHover && input.inputmask._valueGet() !== getBuffer().join("") && writeBuffer(input, getBuffer());
|
|
}
|
|
function submitEvent(e) {
|
|
undoValue !== getBuffer().join("") && $el.trigger("change"), opts.clearMaskOnLostFocus && -1 === getLastValidPosition() && el.inputmask._valueGet && el.inputmask._valueGet() === getBufferTemplate().join("") && el.inputmask._valueSet(""),
|
|
opts.removeMaskOnSubmit && (el.inputmask._valueSet(el.inputmask.unmaskedvalue(), !0),
|
|
setTimeout(function() {
|
|
writeBuffer(el, getBuffer());
|
|
}, 0));
|
|
}
|
|
function resetEvent(e) {
|
|
setTimeout(function() {
|
|
$el.trigger("setvalue");
|
|
}, 0);
|
|
}
|
|
function mask(elem) {
|
|
if (el = elem, $el = $(el), opts.showTooltip && (el.title = opts.tooltip || getMaskSet().mask),
|
|
("rtl" === el.dir || opts.rightAlign) && (el.style.textAlign = "right"), ("rtl" === el.dir || opts.numericInput) && (el.dir = "ltr",
|
|
el.removeAttribute("dir"), el.inputmask.isRTL = !0, isRTL = !0), EventRuler.off(el),
|
|
patchValueProperty(el), isElementTypeSupported(el, opts) && (EventRuler.on(el, "submit", submitEvent),
|
|
EventRuler.on(el, "reset", resetEvent), EventRuler.on(el, "mouseenter", mouseenterEvent),
|
|
EventRuler.on(el, "blur", blurEvent), EventRuler.on(el, "focus", focusEvent), EventRuler.on(el, "mouseleave", mouseleaveEvent),
|
|
EventRuler.on(el, "click", clickEvent), EventRuler.on(el, "dblclick", dblclickEvent),
|
|
EventRuler.on(el, "paste", pasteEvent), EventRuler.on(el, "dragdrop", pasteEvent),
|
|
EventRuler.on(el, "drop", pasteEvent), EventRuler.on(el, "cut", cutEvent), EventRuler.on(el, "complete", opts.oncomplete),
|
|
EventRuler.on(el, "incomplete", opts.onincomplete), EventRuler.on(el, "cleared", opts.oncleared),
|
|
EventRuler.on(el, "keydown", keydownEvent), EventRuler.on(el, "keypress", keypressEvent),
|
|
EventRuler.on(el, "input", inputFallBackEvent)), EventRuler.on(el, "setvalue", setValueEvent),
|
|
"" !== el.inputmask._valueGet() || opts.clearMaskOnLostFocus === !1 || document.activeElement === el) {
|
|
var initialValue = $.isFunction(opts.onBeforeMask) ? opts.onBeforeMask(el.inputmask._valueGet(), opts) || el.inputmask._valueGet() : el.inputmask._valueGet();
|
|
checkVal(el, !0, !1, initialValue.split(""));
|
|
var buffer = getBuffer().slice();
|
|
undoValue = buffer.join(""), isComplete(buffer) === !1 && opts.clearIncomplete && resetMaskSet(),
|
|
opts.clearMaskOnLostFocus && document.activeElement !== el && (-1 === getLastValidPosition() ? buffer = [] : clearOptionalTail(buffer)),
|
|
writeBuffer(el, buffer), document.activeElement === el && caret(el, seekNext(getLastValidPosition()));
|
|
}
|
|
}
|
|
var undoValue, el, $el, maxLength, valueBuffer, isRTL = !1, skipKeyPressEvent = !1, skipInputEvent = !1, ignorable = !1, mouseEnter = !0, EventRuler = {
|
|
on: function(input, eventName, eventHandler) {
|
|
var ev = function(e) {
|
|
if (void 0 === this.inputmask && "FORM" !== this.nodeName) {
|
|
var imOpts = $.data(this, "_inputmask_opts");
|
|
imOpts ? new Inputmask(imOpts).mask(this) : EventRuler.off(this);
|
|
} else {
|
|
if ("setvalue" === e.type || !(this.disabled || this.readOnly && !("keydown" === e.type && e.ctrlKey && 67 === e.keyCode || opts.tabThrough === !1 && e.keyCode === Inputmask.keyCode.TAB))) {
|
|
switch (e.type) {
|
|
case "input":
|
|
if (skipInputEvent === !0) return skipInputEvent = !1, e.preventDefault();
|
|
break;
|
|
|
|
case "keydown":
|
|
skipKeyPressEvent = !1, skipInputEvent = !1;
|
|
break;
|
|
|
|
case "keypress":
|
|
if (skipKeyPressEvent === !0) return e.preventDefault();
|
|
skipKeyPressEvent = !0;
|
|
break;
|
|
|
|
case "click":
|
|
if (iemobile) {
|
|
var that = this;
|
|
return setTimeout(function() {
|
|
eventHandler.apply(that, arguments);
|
|
}, 0), !1;
|
|
}
|
|
}
|
|
var returnVal = eventHandler.apply(this, arguments);
|
|
return returnVal === !1 && (e.preventDefault(), e.stopPropagation()), returnVal;
|
|
}
|
|
e.preventDefault();
|
|
}
|
|
};
|
|
input.inputmask.events[eventName] = input.inputmask.events[eventName] || [], input.inputmask.events[eventName].push(ev),
|
|
-1 !== $.inArray(eventName, [ "submit", "reset" ]) ? null != input.form && $(input.form).on(eventName, ev) : $(input).on(eventName, ev);
|
|
},
|
|
off: function(input, event) {
|
|
if (input.inputmask && input.inputmask.events) {
|
|
var events;
|
|
event ? (events = [], events[event] = input.inputmask.events[event]) : events = input.inputmask.events,
|
|
$.each(events, function(eventName, evArr) {
|
|
for (;evArr.length > 0; ) {
|
|
var ev = evArr.pop();
|
|
-1 !== $.inArray(eventName, [ "submit", "reset" ]) ? null != input.form && $(input.form).off(eventName, ev) : $(input).off(eventName, ev);
|
|
}
|
|
delete input.inputmask.events[eventName];
|
|
});
|
|
}
|
|
}
|
|
};
|
|
if (void 0 !== actionObj) switch (actionObj.action) {
|
|
case "isComplete":
|
|
return el = actionObj.el, isComplete(getBuffer());
|
|
|
|
case "unmaskedvalue":
|
|
return el = actionObj.el, void 0 !== el && void 0 !== el.inputmask ? (maskset = el.inputmask.maskset,
|
|
opts = el.inputmask.opts, isRTL = el.inputmask.isRTL) : (valueBuffer = actionObj.value,
|
|
opts.numericInput && (isRTL = !0), valueBuffer = ($.isFunction(opts.onBeforeMask) ? opts.onBeforeMask(valueBuffer, opts) || valueBuffer : valueBuffer).split(""),
|
|
checkVal(void 0, !1, !1, isRTL ? valueBuffer.reverse() : valueBuffer), $.isFunction(opts.onBeforeWrite) && opts.onBeforeWrite(void 0, getBuffer(), 0, opts)),
|
|
unmaskedvalue(el);
|
|
|
|
case "mask":
|
|
el = actionObj.el, maskset = el.inputmask.maskset, opts = el.inputmask.opts, isRTL = el.inputmask.isRTL,
|
|
undoValue = getBuffer().join(""), mask(el);
|
|
break;
|
|
|
|
case "format":
|
|
return opts.numericInput && (isRTL = !0), valueBuffer = ($.isFunction(opts.onBeforeMask) ? opts.onBeforeMask(actionObj.value, opts) || actionObj.value : actionObj.value).split(""),
|
|
checkVal(void 0, !1, !1, isRTL ? valueBuffer.reverse() : valueBuffer), $.isFunction(opts.onBeforeWrite) && opts.onBeforeWrite(void 0, getBuffer(), 0, opts),
|
|
actionObj.metadata ? {
|
|
value: isRTL ? getBuffer().slice().reverse().join("") : getBuffer().join(""),
|
|
metadata: maskScope({
|
|
action: "getmetadata"
|
|
}, maskset, opts)
|
|
} : isRTL ? getBuffer().slice().reverse().join("") : getBuffer().join("");
|
|
|
|
case "isValid":
|
|
opts.numericInput && (isRTL = !0), actionObj.value ? (valueBuffer = actionObj.value.split(""),
|
|
checkVal(void 0, !1, !0, isRTL ? valueBuffer.reverse() : valueBuffer)) : actionObj.value = getBuffer().join("");
|
|
for (var buffer = getBuffer(), rl = determineLastRequiredPosition(), lmib = buffer.length - 1; lmib > rl && !isMask(lmib); lmib--) ;
|
|
return buffer.splice(rl, lmib + 1 - rl), isComplete(buffer) && actionObj.value === getBuffer().join("");
|
|
|
|
case "getemptymask":
|
|
return getBufferTemplate().join("");
|
|
|
|
case "remove":
|
|
el = actionObj.el, $el = $(el), maskset = el.inputmask.maskset, opts = el.inputmask.opts,
|
|
el.inputmask._valueSet(unmaskedvalue(el)), EventRuler.off(el);
|
|
var valueProperty;
|
|
Object.getOwnPropertyDescriptor && Object.getPrototypeOf ? (valueProperty = Object.getOwnPropertyDescriptor(Object.getPrototypeOf(el), "value"),
|
|
valueProperty && el.inputmask.__valueGet && Object.defineProperty(el, "value", {
|
|
get: el.inputmask.__valueGet,
|
|
set: el.inputmask.__valueSet,
|
|
configurable: !0
|
|
})) : document.__lookupGetter__ && el.__lookupGetter__("value") && el.inputmask.__valueGet && (el.__defineGetter__("value", el.inputmask.__valueGet),
|
|
el.__defineSetter__("value", el.inputmask.__valueSet)), el.inputmask = void 0;
|
|
break;
|
|
|
|
case "getmetadata":
|
|
if ($.isArray(maskset.metadata)) {
|
|
for (var alternation, lvp = getLastValidPosition(void 0, !0), firstAlt = lvp; firstAlt >= 0; firstAlt--) if (getMaskSet().validPositions[firstAlt] && void 0 !== getMaskSet().validPositions[firstAlt].alternation) {
|
|
alternation = getMaskSet().validPositions[firstAlt].alternation;
|
|
break;
|
|
}
|
|
return void 0 !== alternation ? maskset.metadata[getMaskSet().validPositions[firstAlt].locator[alternation]] : [];
|
|
}
|
|
return maskset.metadata;
|
|
}
|
|
}
|
|
Inputmask.prototype = {
|
|
defaults: {
|
|
placeholder: "_",
|
|
optionalmarker: {
|
|
start: "[",
|
|
end: "]"
|
|
},
|
|
quantifiermarker: {
|
|
start: "{",
|
|
end: "}"
|
|
},
|
|
groupmarker: {
|
|
start: "(",
|
|
end: ")"
|
|
},
|
|
alternatormarker: "|",
|
|
escapeChar: "\\",
|
|
mask: null,
|
|
oncomplete: $.noop,
|
|
onincomplete: $.noop,
|
|
oncleared: $.noop,
|
|
repeat: 0,
|
|
greedy: !0,
|
|
autoUnmask: !1,
|
|
removeMaskOnSubmit: !1,
|
|
clearMaskOnLostFocus: !0,
|
|
insertMode: !0,
|
|
clearIncomplete: !1,
|
|
aliases: {},
|
|
alias: null,
|
|
onKeyDown: $.noop,
|
|
onBeforeMask: null,
|
|
onBeforePaste: function(pastedValue, opts) {
|
|
return $.isFunction(opts.onBeforeMask) ? opts.onBeforeMask(pastedValue, opts) : pastedValue;
|
|
},
|
|
onBeforeWrite: null,
|
|
onUnMask: null,
|
|
showMaskOnFocus: !0,
|
|
showMaskOnHover: !0,
|
|
onKeyValidation: $.noop,
|
|
skipOptionalPartCharacter: " ",
|
|
showTooltip: !1,
|
|
tooltip: void 0,
|
|
numericInput: !1,
|
|
rightAlign: !1,
|
|
undoOnEscape: !0,
|
|
radixPoint: "",
|
|
radixPointDefinitionSymbol: void 0,
|
|
groupSeparator: "",
|
|
radixFocus: !1,
|
|
nojumps: !1,
|
|
nojumpsThreshold: 0,
|
|
keepStatic: null,
|
|
positionCaretOnTab: !1,
|
|
tabThrough: !1,
|
|
supportsInputType: [ "text", "tel", "password" ],
|
|
definitions: {
|
|
"9": {
|
|
validator: "[0-9]",
|
|
cardinality: 1,
|
|
definitionSymbol: "*"
|
|
},
|
|
a: {
|
|
validator: "[A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]",
|
|
cardinality: 1,
|
|
definitionSymbol: "*"
|
|
},
|
|
"*": {
|
|
validator: "[0-9A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]",
|
|
cardinality: 1
|
|
}
|
|
},
|
|
ignorables: [ 8, 9, 13, 19, 27, 33, 34, 35, 36, 37, 38, 39, 40, 45, 46, 93, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123 ],
|
|
isComplete: null,
|
|
canClearPosition: $.noop,
|
|
postValidation: null,
|
|
staticDefinitionSymbol: void 0,
|
|
jitMasking: !1,
|
|
nullable: !0
|
|
},
|
|
masksCache: {},
|
|
mask: function(elems) {
|
|
var that = this;
|
|
return "string" == typeof elems && (elems = document.getElementById(elems) || document.querySelectorAll(elems)),
|
|
elems = elems.nodeName ? [ elems ] : elems, $.each(elems, function(ndx, el) {
|
|
var scopedOpts = $.extend(!0, {}, that.opts);
|
|
importAttributeOptions(el, scopedOpts, $.extend(!0, {}, that.userOptions));
|
|
var maskset = generateMaskSet(scopedOpts, that.noMasksCache);
|
|
void 0 !== maskset && (void 0 !== el.inputmask && el.inputmask.remove(), el.inputmask = new Inputmask(),
|
|
el.inputmask.opts = scopedOpts, el.inputmask.noMasksCache = that.noMasksCache, el.inputmask.userOptions = $.extend(!0, {}, that.userOptions),
|
|
el.inputmask.el = el, el.inputmask.maskset = maskset, el.inputmask.isRTL = !1, $.data(el, "_inputmask_opts", scopedOpts),
|
|
maskScope({
|
|
action: "mask",
|
|
el: el
|
|
}));
|
|
}), elems && elems[0] ? elems[0].inputmask || this : this;
|
|
},
|
|
option: function(options, noremask) {
|
|
return "string" == typeof options ? this.opts[options] : "object" == typeof options ? ($.extend(this.userOptions, options),
|
|
this.el && noremask !== !0 && this.mask(this.el), this) : void 0;
|
|
},
|
|
unmaskedvalue: function(value) {
|
|
return maskScope({
|
|
action: "unmaskedvalue",
|
|
el: this.el,
|
|
value: value
|
|
}, this.el && this.el.inputmask ? this.el.inputmask.maskset : generateMaskSet(this.opts, this.noMasksCache), this.opts);
|
|
},
|
|
remove: function() {
|
|
return this.el ? (maskScope({
|
|
action: "remove",
|
|
el: this.el
|
|
}), this.el.inputmask = void 0, this.el) : void 0;
|
|
},
|
|
getemptymask: function() {
|
|
return maskScope({
|
|
action: "getemptymask"
|
|
}, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
|
|
},
|
|
hasMaskedValue: function() {
|
|
return !this.opts.autoUnmask;
|
|
},
|
|
isComplete: function() {
|
|
return maskScope({
|
|
action: "isComplete",
|
|
el: this.el
|
|
}, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
|
|
},
|
|
getmetadata: function() {
|
|
return maskScope({
|
|
action: "getmetadata"
|
|
}, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
|
|
},
|
|
isValid: function(value) {
|
|
return maskScope({
|
|
action: "isValid",
|
|
value: value
|
|
}, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
|
|
},
|
|
format: function(value, metadata) {
|
|
return maskScope({
|
|
action: "format",
|
|
value: value,
|
|
metadata: metadata
|
|
}, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
|
|
}
|
|
}, Inputmask.extendDefaults = function(options) {
|
|
$.extend(!0, Inputmask.prototype.defaults, options);
|
|
}, Inputmask.extendDefinitions = function(definition) {
|
|
$.extend(!0, Inputmask.prototype.defaults.definitions, definition);
|
|
}, Inputmask.extendAliases = function(alias) {
|
|
$.extend(!0, Inputmask.prototype.defaults.aliases, alias);
|
|
}, Inputmask.format = function(value, options, metadata) {
|
|
return Inputmask(options).format(value, metadata);
|
|
}, Inputmask.unmask = function(value, options) {
|
|
return Inputmask(options).unmaskedvalue(value);
|
|
}, Inputmask.isValid = function(value, options) {
|
|
return Inputmask(options).isValid(value);
|
|
}, Inputmask.remove = function(elems) {
|
|
$.each(elems, function(ndx, el) {
|
|
el.inputmask && el.inputmask.remove();
|
|
});
|
|
}, Inputmask.escapeRegex = function(str) {
|
|
var specials = [ "/", ".", "*", "+", "?", "|", "(", ")", "[", "]", "{", "}", "\\", "$", "^" ];
|
|
return str.replace(new RegExp("(\\" + specials.join("|\\") + ")", "gim"), "\\$1");
|
|
}, Inputmask.keyCode = {
|
|
ALT: 18,
|
|
BACKSPACE: 8,
|
|
BACKSPACE_SAFARI: 127,
|
|
CAPS_LOCK: 20,
|
|
COMMA: 188,
|
|
COMMAND: 91,
|
|
COMMAND_LEFT: 91,
|
|
COMMAND_RIGHT: 93,
|
|
CONTROL: 17,
|
|
DELETE: 46,
|
|
DOWN: 40,
|
|
END: 35,
|
|
ENTER: 13,
|
|
ESCAPE: 27,
|
|
HOME: 36,
|
|
INSERT: 45,
|
|
LEFT: 37,
|
|
MENU: 93,
|
|
NUMPAD_ADD: 107,
|
|
NUMPAD_DECIMAL: 110,
|
|
NUMPAD_DIVIDE: 111,
|
|
NUMPAD_ENTER: 108,
|
|
NUMPAD_MULTIPLY: 106,
|
|
NUMPAD_SUBTRACT: 109,
|
|
PAGE_DOWN: 34,
|
|
PAGE_UP: 33,
|
|
PERIOD: 190,
|
|
RIGHT: 39,
|
|
SHIFT: 16,
|
|
SPACE: 32,
|
|
TAB: 9,
|
|
UP: 38,
|
|
WINDOWS: 91,
|
|
X: 88
|
|
};
|
|
var ua = navigator.userAgent, mobile = /mobile/i.test(ua), iemobile = /iemobile/i.test(ua), iphone = /iphone/i.test(ua) && !iemobile;
|
|
/android.*safari.*/i.test(ua) && !iemobile;
|
|
return window.Inputmask = Inputmask, Inputmask;
|
|
});
|