jquery.inputmask.js 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884
  1. /**
  2. * @license Input Mask plugin for jquery
  3. * http://github.com/RobinHerbots/jquery.inputmask
  4. * Copyright (c) 2010 - 2014 Robin Herbots
  5. * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  6. * Version: 0.0.0
  7. */
  8. (function (factory) {
  9. if (typeof define === 'function' && define.amd) {
  10. define(['jquery'], factory);
  11. } else {
  12. factory(jQuery);
  13. }
  14. }(function ($) {
  15. if ($.fn.inputmask === undefined) {
  16. //helper functions
  17. function isInputEventSupported(eventName) {
  18. var el = document.createElement('input'),
  19. eventName = 'on' + eventName,
  20. isSupported = (eventName in el);
  21. if (!isSupported) {
  22. el.setAttribute(eventName, 'return;');
  23. isSupported = typeof el[eventName] == 'function';
  24. }
  25. el = null;
  26. return isSupported;
  27. }
  28. function resolveAlias(aliasStr, options, opts) {
  29. var aliasDefinition = opts.aliases[aliasStr];
  30. if (aliasDefinition) {
  31. if (aliasDefinition.alias) resolveAlias(aliasDefinition.alias, undefined, opts); //alias is another alias
  32. $.extend(true, opts, aliasDefinition); //merge alias definition in the options
  33. $.extend(true, opts, options); //reapply extra given options
  34. return true;
  35. }
  36. return false;
  37. }
  38. function generateMaskSet(opts, multi) {
  39. var ms = [];
  40. function analyseMask(mask) {
  41. var tokenizer = /(?:[?*+]|\{[0-9\+\*]+(?:,[0-9\+\*]*)?\})\??|[^.?*+^${[]()|\\]+|./g,
  42. escaped = false;
  43. function maskToken(isGroup, isOptional, isQuantifier, isAlternator) {
  44. this.matches = [];
  45. this.isGroup = isGroup || false;
  46. this.isOptional = isOptional || false;
  47. this.isQuantifier = isQuantifier || false;
  48. this.isAlternator = isAlternator || false;
  49. this.quantifier = { min: 1, max: 1 };
  50. };
  51. //test definition => {fn: RegExp/function, cardinality: int, optionality: bool, newBlockMarker: bool, casing: null/upper/lower, def: definitionSymbol, placeholder: placeholder, mask: real maskDefinition}
  52. function insertTestDefinition(mtoken, element, position) {
  53. var maskdef = opts.definitions[element];
  54. var newBlockMarker = mtoken.matches.length == 0;
  55. position = position != undefined ? position : mtoken.matches.length;
  56. if (maskdef && !escaped) {
  57. var prevalidators = maskdef["prevalidator"], prevalidatorsL = prevalidators ? prevalidators.length : 0;
  58. for (var i = 1; i < maskdef.cardinality; i++) {
  59. var prevalidator = prevalidatorsL >= i ? prevalidators[i - 1] : [], validator = prevalidator["validator"], cardinality = prevalidator["cardinality"];
  60. mtoken.matches.splice(position++, 0, { fn: validator ? typeof validator == 'string' ? new RegExp(validator) : new function () { this.test = validator; } : new RegExp("."), cardinality: cardinality ? cardinality : 1, optionality: mtoken.isOptional, newBlockMarker: newBlockMarker, casing: maskdef["casing"], def: maskdef["definitionSymbol"] || element, placeholder: maskdef["placeholder"], mask: element });
  61. }
  62. mtoken.matches.splice(position++, 0, { fn: maskdef.validator ? typeof maskdef.validator == 'string' ? new RegExp(maskdef.validator) : new function () { this.test = maskdef.validator; } : new RegExp("."), cardinality: maskdef.cardinality, optionality: mtoken.isOptional, newBlockMarker: newBlockMarker, casing: maskdef["casing"], def: maskdef["definitionSymbol"] || element, placeholder: maskdef["placeholder"], mask: element });
  63. } else {
  64. mtoken.matches.splice(position++, 0, { fn: null, cardinality: 0, optionality: mtoken.isOptional, newBlockMarker: newBlockMarker, casing: null, def: element, placeholder: undefined, mask: element });
  65. escaped = false;
  66. }
  67. }
  68. var currentToken = new maskToken(),
  69. match,
  70. m,
  71. openenings = [],
  72. maskTokens = [],
  73. openingToken,
  74. currentOpeningToken,
  75. alternator,
  76. lastMatch;
  77. while (match = tokenizer.exec(mask)) {
  78. m = match[0];
  79. switch (m.charAt(0)) {
  80. case opts.optionalmarker.end:
  81. // optional closing
  82. case opts.groupmarker.end:
  83. // Group closing
  84. openingToken = openenings.pop();
  85. if (openenings.length > 0) {
  86. currentOpeningToken = openenings[openenings.length - 1];
  87. currentOpeningToken["matches"].push(openingToken);
  88. if (currentOpeningToken.isAlternator) { //handle alternator (a) | (b) case
  89. alternator = openenings.pop();
  90. for (var mndx = 0; mndx < alternator.matches.length; mndx++) {
  91. alternator.matches[mndx].isGroup = false; //don't mark alternate groups as group
  92. }
  93. if (openenings.length > 0) {
  94. currentOpeningToken = openenings[openenings.length - 1];
  95. currentOpeningToken["matches"].push(alternator);
  96. } else {
  97. currentToken.matches.push(alternator);
  98. }
  99. }
  100. } else {
  101. currentToken.matches.push(openingToken);
  102. }
  103. break;
  104. case opts.optionalmarker.start:
  105. // optional opening
  106. openenings.push(new maskToken(false, true));
  107. break;
  108. case opts.groupmarker.start:
  109. // Group opening
  110. openenings.push(new maskToken(true));
  111. break;
  112. case opts.quantifiermarker.start:
  113. //Quantifier
  114. var quantifier = new maskToken(false, false, true);
  115. m = m.replace(/[{}]/g, "");
  116. var mq = m.split(","),
  117. mq0 = isNaN(mq[0]) ? mq[0] : parseInt(mq[0]),
  118. mq1 = mq.length == 1 ? mq0 : (isNaN(mq[1]) ? mq[1] : parseInt(mq[1]));
  119. if (mq1 == "*" || mq1 == "+") {
  120. mq0 = mq1 == "*" ? 0 : 1;
  121. }
  122. quantifier.quantifier = { min: mq0, max: mq1 };
  123. if (openenings.length > 0) {
  124. var matches = openenings[openenings.length - 1]["matches"];
  125. match = matches.pop();
  126. if (!match["isGroup"]) {
  127. var groupToken = new maskToken(true);
  128. groupToken.matches.push(match);
  129. match = groupToken;
  130. }
  131. matches.push(match);
  132. matches.push(quantifier);
  133. } else {
  134. match = currentToken.matches.pop();
  135. if (!match["isGroup"]) {
  136. var groupToken = new maskToken(true);
  137. groupToken.matches.push(match);
  138. match = groupToken;
  139. }
  140. currentToken.matches.push(match);
  141. currentToken.matches.push(quantifier);
  142. }
  143. break;
  144. case opts.escapeChar:
  145. escaped = true;
  146. break;
  147. case opts.alternatormarker:
  148. if (openenings.length > 0) {
  149. currentOpeningToken = openenings[openenings.length - 1];
  150. lastMatch = currentOpeningToken.matches.pop();
  151. } else {
  152. lastMatch = currentToken.matches.pop();
  153. }
  154. if (lastMatch.isAlternator) {
  155. openenings.push(lastMatch);
  156. } else {
  157. alternator = new maskToken(false, false, false, true);
  158. alternator.matches.push(lastMatch);
  159. openenings.push(alternator);
  160. }
  161. break;
  162. default:
  163. if (openenings.length > 0) {
  164. currentOpeningToken = openenings[openenings.length - 1];
  165. if (currentOpeningToken.matches.length > 0) {
  166. lastMatch = currentOpeningToken.matches[currentOpeningToken.matches.length - 1];
  167. if (lastMatch["isGroup"]) { //this is not a group but a normal mask => convert
  168. lastMatch.isGroup = false;
  169. insertTestDefinition(lastMatch, opts.groupmarker.start, 0);
  170. insertTestDefinition(lastMatch, opts.groupmarker.end);
  171. }
  172. }
  173. insertTestDefinition(currentOpeningToken, m);
  174. if (currentOpeningToken.isAlternator) { //handle alternator a | b case
  175. alternator = openenings.pop();
  176. for (var mndx = 0; mndx < alternator.matches.length; mndx++) {
  177. alternator.matches[mndx].isGroup = false; //don't mark alternate groups as group
  178. }
  179. if (openenings.length > 0) {
  180. currentOpeningToken = openenings[openenings.length - 1];
  181. currentOpeningToken["matches"].push(alternator);
  182. } else {
  183. currentToken.matches.push(alternator);
  184. }
  185. }
  186. } else {
  187. if (currentToken.matches.length > 0) {
  188. lastMatch = currentToken.matches[currentToken.matches.length - 1];
  189. if (lastMatch["isGroup"]) { //this is not a group but a normal mask => convert
  190. lastMatch.isGroup = false;
  191. insertTestDefinition(lastMatch, opts.groupmarker.start, 0);
  192. insertTestDefinition(lastMatch, opts.groupmarker.end);
  193. }
  194. }
  195. insertTestDefinition(currentToken, m);
  196. }
  197. }
  198. }
  199. if (currentToken.matches.length > 0) {
  200. lastMatch = currentToken.matches[currentToken.matches.length - 1];
  201. if (lastMatch["isGroup"]) { //this is not a group but a normal mask => convert
  202. lastMatch.isGroup = false;
  203. insertTestDefinition(lastMatch, opts.groupmarker.start, 0);
  204. insertTestDefinition(lastMatch, opts.groupmarker.end);
  205. }
  206. maskTokens.push(currentToken);
  207. }
  208. //console.log(JSON.stringify(maskTokens));
  209. return maskTokens;
  210. }
  211. function generateMask(mask, metadata) {
  212. if (opts.numericInput && opts.multi !== true) { //TODO FIX FOR DYNAMIC MASKS WITH QUANTIFIERS
  213. mask = mask.split('').reverse();
  214. for (var ndx = 0; ndx < mask.length; ndx++) {
  215. if (mask[ndx] == opts.optionalmarker.start)
  216. mask[ndx] = opts.optionalmarker.end;
  217. else if (mask[ndx] == opts.optionalmarker.end)
  218. mask[ndx] = opts.optionalmarker.start;
  219. else if (mask[ndx] == opts.groupmarker.start)
  220. mask[ndx] = opts.groupmarker.end;
  221. else if (mask[ndx] == opts.groupmarker.end)
  222. mask[ndx] = opts.groupmarker.start;
  223. }
  224. mask = mask.join('');
  225. }
  226. if (mask == undefined || mask == "")
  227. return undefined;
  228. else {
  229. if (opts.repeat > 0 || opts.repeat == "*" || opts.repeat == "+") {
  230. var repeatStart = opts.repeat == "*" ? 0 : (opts.repeat == "+" ? 1 : opts.repeat);
  231. mask = opts.groupmarker.start + mask + opts.groupmarker.end + opts.quantifiermarker.start + repeatStart + "," + opts.repeat + opts.quantifiermarker.end;
  232. }
  233. if ($.inputmask.masksCache[mask] == undefined) {
  234. $.inputmask.masksCache[mask] = {
  235. "mask": mask,
  236. "maskToken": analyseMask(mask),
  237. "validPositions": {},
  238. "_buffer": undefined,
  239. "buffer": undefined,
  240. "tests": {},
  241. "metadata": metadata
  242. };
  243. }
  244. return $.extend(true, {}, $.inputmask.masksCache[mask]);
  245. }
  246. }
  247. if ($.isFunction(opts.mask)) { //allow mask to be a preprocessing fn - should return a valid mask
  248. opts.mask = opts.mask.call(this, opts);
  249. }
  250. if ($.isArray(opts.mask)) {
  251. if (multi) {
  252. $.each(opts.mask, function (ndx, msk) {
  253. if (msk["mask"] != undefined) {
  254. ms.push(generateMask(msk["mask"].toString(), msk));
  255. } else {
  256. ms.push(generateMask(msk.toString()));
  257. }
  258. });
  259. } else {
  260. var hasMetaData = false;
  261. var altMask = "(";
  262. $.each(opts.mask, function (ndx, msk) {
  263. if (altMask.length > 1)
  264. altMask += ")|(";
  265. if (msk["mask"] != undefined) {
  266. hasMetaData = true;
  267. altMask += msk["mask"].toString();
  268. } else {
  269. altMask += msk.toString();
  270. }
  271. });
  272. altMask += ")";
  273. ms = generateMask(altMask, hasMetaData ? opts.mask : undefined);
  274. }
  275. } else {
  276. if (opts.mask.length == 1 && opts.greedy == false && opts.repeat != 0) {
  277. opts.placeholder = "";
  278. } //hide placeholder with single non-greedy mask
  279. if (opts.mask["mask"] != undefined) {
  280. ms = generateMask(opts.mask["mask"].toString(), opts.mask);
  281. } else {
  282. ms = generateMask(opts.mask.toString());
  283. }
  284. }
  285. return ms;
  286. }
  287. var msie1x = typeof ScriptEngineMajorVersion === "function"
  288. ? ScriptEngineMajorVersion() //IE11 detection
  289. : new Function("/*@cc_on return @_jscript_version; @*/")() >= 10, //conditional compilation from mickeysoft trick
  290. ua = navigator.userAgent,
  291. iphone = ua.match(new RegExp("iphone", "i")) !== null,
  292. android = ua.match(new RegExp("android.*safari.*", "i")) !== null,
  293. androidchrome = ua.match(new RegExp("android.*chrome.*", "i")) !== null,
  294. androidfirefox = ua.match(new RegExp("android.*firefox.*", "i")) !== null,
  295. kindle = /Kindle/i.test(ua) || /Silk/i.test(ua) || /KFTT/i.test(ua) || /KFOT/i.test(ua) || /KFJWA/i.test(ua) || /KFJWI/i.test(ua) || /KFSOWI/i.test(ua) || /KFTHWA/i.test(ua) || /KFTHWI/i.test(ua) || /KFAPWA/i.test(ua) || /KFAPWI/i.test(ua),
  296. PasteEventType = isInputEventSupported('paste') ? 'paste' : isInputEventSupported('input') ? 'input' : "propertychange";
  297. //if (androidchrome) {
  298. // var browser = navigator.userAgent.match(new RegExp("chrome.*", "i")),
  299. // version = parseInt(new RegExp(/[0-9]+/).exec(browser));
  300. // androidchrome32 = (version == 32);
  301. //}
  302. //masking scope
  303. //actionObj definition see below
  304. function maskScope(actionObj, maskset, opts) {
  305. var isRTL = false,
  306. valueOnFocus,
  307. $el,
  308. skipKeyPressEvent = false, //Safari 5.1.x - modal dialog fires keypress twice workaround
  309. skipInputEvent = false, //skip when triggered from within inputmask
  310. ignorable = false,
  311. maxLength;
  312. //maskset helperfunctions
  313. function getMaskTemplate(baseOnInput, minimalPos, includeInput) {
  314. minimalPos = minimalPos || 0;
  315. var maskTemplate = [], ndxIntlzr, pos = 0, test, testPos;
  316. do {
  317. if (baseOnInput === true && getMaskSet()['validPositions'][pos]) {
  318. var validPos = getMaskSet()['validPositions'][pos];
  319. test = validPos["match"];
  320. ndxIntlzr = validPos["locator"].slice();
  321. maskTemplate.push(test["fn"] == null ? test["def"] : (includeInput === true ? validPos["input"] : test["placeholder"] || opts.placeholder.charAt(pos % opts.placeholder.length)));
  322. } else {
  323. if (minimalPos > pos) {
  324. var testPositions = getTests(pos, ndxIntlzr, pos - 1);
  325. testPos = testPositions[0];
  326. } else {
  327. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  328. }
  329. test = testPos["match"];
  330. ndxIntlzr = testPos["locator"].slice();
  331. maskTemplate.push(test["fn"] == null ? test["def"] : (test["placeholder"] != undefined ? test["placeholder"] : opts.placeholder.charAt(pos % opts.placeholder.length)));
  332. }
  333. pos++;
  334. } while ((maxLength == undefined || pos - 1 < maxLength) && test["fn"] != null || (test["fn"] == null && test["def"] != "") || minimalPos >= pos);
  335. maskTemplate.pop(); //drop the last one which is empty
  336. return maskTemplate;
  337. }
  338. function getMaskSet() {
  339. return maskset;
  340. }
  341. function resetMaskSet(soft) {
  342. var maskset = getMaskSet();
  343. maskset["buffer"] = undefined;
  344. maskset["tests"] = {};
  345. if (soft !== true) {
  346. maskset["_buffer"] = undefined;
  347. maskset["validPositions"] = {};
  348. maskset["p"] = -1;
  349. }
  350. }
  351. function getLastValidPosition(closestTo) {
  352. var maskset = getMaskSet(), lastValidPosition = -1, valids = maskset["validPositions"];
  353. if (closestTo == undefined) closestTo = -1;
  354. var before = lastValidPosition, after = lastValidPosition;
  355. for (var posNdx in valids) {
  356. var psNdx = parseInt(posNdx);
  357. if (closestTo == -1 || valids[psNdx]["match"].fn != null) {
  358. if (psNdx < closestTo) before = psNdx;
  359. if (psNdx >= closestTo) after = psNdx;
  360. }
  361. }
  362. lastValidPosition = (closestTo - before) > 1 || after < closestTo ? before : after;
  363. return lastValidPosition;
  364. }
  365. function setValidPosition(pos, validTest, fromSetValid) {
  366. if (opts.insertMode && getMaskSet()["validPositions"][pos] != undefined && fromSetValid == undefined) {
  367. //reposition & revalidate others
  368. var positionsClone = $.extend(true, {}, getMaskSet()["validPositions"]), lvp = getLastValidPosition(), i;
  369. for (i = pos; i <= lvp; i++) { //clear selection
  370. delete getMaskSet()["validPositions"][i];
  371. }
  372. getMaskSet()["validPositions"][pos] = validTest;
  373. var valid = true;
  374. for (i = pos; i <= lvp ; i++) {
  375. var t = positionsClone[i];
  376. if (t != undefined) {
  377. var j = t["match"].fn == null ? i + 1 : seekNext(i);
  378. if (positionCanMatchDefinition(j, t["match"].def)) {
  379. valid = valid && isValid(j, t["input"], true, true) !== false;
  380. } else valid = false;
  381. }
  382. if (!valid) break;
  383. }
  384. if (!valid) {
  385. getMaskSet()["validPositions"] = $.extend(true, {}, positionsClone);
  386. return false;
  387. }
  388. } else
  389. getMaskSet()["validPositions"][pos] = validTest;
  390. return true;
  391. }
  392. function stripValidPositions(start, end) {
  393. var i, startPos = start, lvp;
  394. for (i = start; i < end; i++) { //clear selection
  395. //TODO FIXME BETTER CHECK
  396. delete getMaskSet()["validPositions"][i];
  397. }
  398. for (i = end ; i <= getLastValidPosition() ;) {
  399. var t = getMaskSet()["validPositions"][i];
  400. var s = getMaskSet()["validPositions"][startPos];
  401. if (t != undefined && s == undefined) {
  402. if (positionCanMatchDefinition(startPos, t.match.def) && isValid(startPos, t["input"], true) !== false) {
  403. delete getMaskSet()["validPositions"][i];
  404. i++;
  405. }
  406. startPos++;
  407. } else i++;
  408. }
  409. lvp = getLastValidPosition();
  410. //catchup
  411. while (lvp > 0 && (getMaskSet()["validPositions"][lvp] == undefined || getMaskSet()["validPositions"][lvp].match.fn == null)) {
  412. delete getMaskSet()["validPositions"][lvp];
  413. lvp--;
  414. }
  415. resetMaskSet(true);
  416. }
  417. function getTestTemplate(pos, ndxIntlzr, tstPs) {
  418. var testPositions = getTests(pos, ndxIntlzr, tstPs),
  419. testPos,
  420. lvp = getLastValidPosition(),
  421. lvTest = getMaskSet()["validPositions"][lvp] || getTests(0)[0],
  422. lvTestAltArr = (lvTest.alternation != undefined) ? lvTest["locator"][lvTest.alternation].split(",") : [];
  423. for (var ndx = 0; ndx < testPositions.length; ndx++) {
  424. testPos = testPositions[ndx];
  425. if (opts.greedy ||
  426. ((testPos["match"] && (testPos["match"].optionality === false || testPos["match"].newBlockMarker === false) && testPos["match"].optionalQuantifier !== true) &&
  427. (lvTest.alternation == undefined || (testPos["locator"][lvTest.alternation] != undefined && $.inArray(testPos["locator"][lvTest.alternation].toString(), lvTestAltArr) == -1)))) {
  428. break;
  429. }
  430. }
  431. return testPos;
  432. }
  433. function getTest(pos) {
  434. if (getMaskSet()['validPositions'][pos]) {
  435. return getMaskSet()['validPositions'][pos]["match"];
  436. }
  437. return getTests(pos)[0]["match"];
  438. }
  439. function positionCanMatchDefinition(pos, def) {
  440. var valid = false, tests = getTests(pos);
  441. for (var tndx = 0; tndx < tests.length; tndx++) {
  442. if (tests[tndx]["match"] && tests[tndx]["match"].def == def) {
  443. valid = true;
  444. break;
  445. }
  446. }
  447. return valid;
  448. };
  449. function getTests(pos, ndxIntlzr, tstPs) {
  450. var maskTokens = getMaskSet()["maskToken"], testPos = ndxIntlzr ? tstPs : 0, ndxInitializer = ndxIntlzr || [0], matches = [], insertStop = false;
  451. function ResolveTestFromToken(maskToken, ndxInitializer, loopNdx, quantifierRecurse) { //ndxInitilizer contains a set of indexes to speedup searches in the mtokens
  452. function handleMatch(match, loopNdx, quantifierRecurse) {
  453. if (testPos > 10000) {
  454. alert("jquery.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"]);
  455. return true;
  456. }
  457. if (testPos == pos && match.matches == undefined) {
  458. matches.push({ "match": match, "locator": loopNdx.reverse() });
  459. return true;
  460. } else if (match.matches != undefined) {
  461. if (match.isGroup && quantifierRecurse !== true) { //when a group pass along to the quantifier
  462. match = handleMatch(maskToken.matches[tndx + 1], loopNdx);
  463. if (match) return true;
  464. } else if (match.isOptional) {
  465. var optionalToken = match;
  466. match = ResolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
  467. if (match) {
  468. var latestMatch = matches[matches.length - 1]["match"];
  469. var isFirstMatch = $.inArray(latestMatch, optionalToken.matches) == 0;
  470. if (isFirstMatch) {
  471. insertStop = true; //insert a stop for non greedy
  472. }
  473. testPos = pos; //match the position after the group
  474. }
  475. } else if (match.isAlternator) {
  476. var alternateToken = match, malternateMatches = [], maltMatches,
  477. currentMatches = matches.slice(), loopNdxCnt = loopNdx.length;
  478. var altIndex = ndxInitializer.length > 0 ? ndxInitializer.shift() : -1;
  479. if (altIndex == -1 || typeof altIndex == "string") {
  480. var currentPos = testPos, ndxInitializerClone = ndxInitializer.slice(), altIndexArr;
  481. if (typeof altIndex == "string") altIndexArr = altIndex.split(",");
  482. for (var amndx = 0; amndx < alternateToken.matches.length; amndx++) {
  483. matches = [];
  484. match = handleMatch(alternateToken.matches[amndx], [amndx].concat(loopNdx), quantifierRecurse) || match;
  485. maltMatches = matches.slice();
  486. testPos = currentPos;
  487. matches = [];
  488. //cloneback
  489. for (var i = 0; i < ndxInitializerClone.length; i++) {
  490. ndxInitializer[i] = ndxInitializerClone[i];
  491. }
  492. //fuzzy merge matches
  493. for (var ndx1 = 0; ndx1 < maltMatches.length; ndx1++) {
  494. var altMatch = maltMatches[ndx1];
  495. for (var ndx2 = 0; ndx2 < malternateMatches.length; ndx2++) {
  496. var altMatch2 = malternateMatches[ndx2];
  497. //verify equality
  498. if (altMatch.match.mask == altMatch2.match.mask && (typeof altIndex != "string" || $.inArray(altMatch.locator[loopNdxCnt].toString(), altIndexArr) != -1)) {
  499. malternateMatches.splice(ndx2, 1);
  500. altMatch.locator[loopNdxCnt] = altMatch2.locator[loopNdxCnt] + "," + altMatch.locator[loopNdxCnt];
  501. altMatch.alternation = loopNdxCnt; //we pass the alternation index => used in determineLastRequiredPosition
  502. break;
  503. }
  504. }
  505. }
  506. malternateMatches = malternateMatches.concat(maltMatches);
  507. }
  508. if (typeof altIndex == "string") { //filter matches
  509. malternateMatches = $.map(malternateMatches, function (lmnt, ndx) {
  510. if (isFinite(ndx)) {
  511. var altLocArr = lmnt.locator[loopNdxCnt].toString().split(",");
  512. var mamatch;
  513. lmnt.locator[loopNdxCnt] = "";
  514. for (var alndx = 0; alndx < altLocArr.length; alndx++) {
  515. mamatch = $.inArray(altLocArr[alndx], altIndexArr) != -1;
  516. if (mamatch) {
  517. if (lmnt.locator[loopNdxCnt] != "")
  518. lmnt.locator[loopNdxCnt] += ",";
  519. lmnt.locator[loopNdxCnt] += altLocArr[alndx]; //rebuild the locator with valid entries
  520. }
  521. }
  522. if (lmnt.locator[loopNdxCnt] != "") return lmnt;
  523. }
  524. });
  525. }
  526. matches = currentMatches.concat(malternateMatches);
  527. //console.log("alternates " + pos + " -> " + JSON.stringify(matches));
  528. insertStop = true; //insert a stopelemnt when there is an alternate
  529. } else {
  530. match = handleMatch(alternateToken.matches[altIndex], [altIndex].concat(loopNdx), quantifierRecurse);
  531. }
  532. if (match) return true;
  533. } else if (match.isQuantifier && quantifierRecurse !== true) {
  534. var qt = match;
  535. opts.greedy = opts.greedy && isFinite(qt.quantifier.max); //greedy must be off when * or + is used (always!!)
  536. for (var qndx = (ndxInitializer.length > 0 && quantifierRecurse !== true) ? ndxInitializer.shift() : 0; (qndx < (isNaN(qt.quantifier.max) ? qndx + 1 : qt.quantifier.max)) && testPos <= pos; qndx++) {
  537. var tokenGroup = maskToken.matches[$.inArray(qt, maskToken.matches) - 1];
  538. match = handleMatch(tokenGroup, [qndx].concat(loopNdx), true);
  539. if (match) {
  540. //get latest match
  541. var latestMatch = matches[matches.length - 1]["match"];
  542. latestMatch.optionalQuantifier = qndx > (qt.quantifier.min - 1);
  543. var isFirstMatch = $.inArray(latestMatch, tokenGroup.matches) == 0;
  544. if (isFirstMatch) { //search for next possible match
  545. if (qndx > (qt.quantifier.min - 1)) {
  546. insertStop = true;
  547. testPos = pos; //match the position after the group
  548. break; //stop quantifierloop
  549. } else return true;
  550. } else {
  551. return true;
  552. }
  553. }
  554. }
  555. } else {
  556. match = ResolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
  557. if (match)
  558. return true;
  559. }
  560. } else testPos++;
  561. }
  562. for (var tndx = (ndxInitializer.length > 0 ? ndxInitializer.shift() : 0) ; tndx < maskToken.matches.length; tndx++) {
  563. if (maskToken.matches[tndx]["isQuantifier"] !== true) {
  564. var match = handleMatch(maskToken.matches[tndx], [tndx].concat(loopNdx), quantifierRecurse);
  565. if (match && testPos == pos) {
  566. return match;
  567. } else if (testPos > pos) {
  568. break;
  569. }
  570. }
  571. }
  572. }
  573. //if (disableCache !== true && getMaskSet()['tests'][pos] && !getMaskSet()['validPositions'][pos]) {
  574. // return getMaskSet()['tests'][pos];
  575. //}
  576. if (ndxIntlzr == undefined) {
  577. var previousPos = pos - 1, test;
  578. while ((test = getMaskSet()['validPositions'][previousPos]) == undefined && previousPos > -1) {
  579. previousPos--;
  580. }
  581. if (test != undefined && previousPos > -1) {
  582. testPos = previousPos;
  583. ndxInitializer = test["locator"].slice();
  584. } else {
  585. previousPos = pos - 1;
  586. while ((test = getMaskSet()['tests'][previousPos]) == undefined && previousPos > -1) {
  587. previousPos--;
  588. }
  589. if (test != undefined && previousPos > -1) {
  590. testPos = previousPos;
  591. ndxInitializer = test[0]["locator"].slice();
  592. }
  593. }
  594. }
  595. for (var mtndx = ndxInitializer.shift() ; mtndx < maskTokens.length; mtndx++) {
  596. var match = ResolveTestFromToken(maskTokens[mtndx], ndxInitializer, [mtndx]);
  597. if ((match && testPos == pos) || testPos > pos) {
  598. break;
  599. }
  600. }
  601. if (matches.length == 0 || insertStop)
  602. matches.push({ "match": { fn: null, cardinality: 0, optionality: true, casing: null, def: "" }, "locator": [] });
  603. getMaskSet()['tests'][pos] = $.extend(true, [], matches); //set a clone to prevent overwriting some props
  604. //console.log(pos + " - " + JSON.stringify(matches));
  605. return getMaskSet()['tests'][pos];
  606. }
  607. function getBufferTemplate() {
  608. if (getMaskSet()['_buffer'] == undefined) {
  609. //generate template
  610. getMaskSet()["_buffer"] = getMaskTemplate(false, 1);
  611. }
  612. return getMaskSet()['_buffer'];
  613. }
  614. function getBuffer() {
  615. if (getMaskSet()['buffer'] == undefined) {
  616. getMaskSet()['buffer'] = getMaskTemplate(true, getLastValidPosition(), true);
  617. }
  618. return getMaskSet()['buffer'];
  619. }
  620. function refreshFromBuffer(start, end) {
  621. var buffer = getBuffer().slice(); //work on clone
  622. if (start === true) {
  623. resetMaskSet();
  624. start = 0;
  625. end = buffer.length;
  626. } else {
  627. for (var i = start; i < end; i++) {
  628. delete getMaskSet()["validPositions"][i];
  629. delete getMaskSet()["tests"][i];
  630. }
  631. }
  632. for (var i = start; i < end; i++) {
  633. if (buffer[i] != opts.skipOptionalPartCharacter) {
  634. isValid(i, buffer[i], true, true);
  635. }
  636. }
  637. }
  638. function casing(elem, test) {
  639. switch (test.casing) {
  640. case "upper":
  641. elem = elem.toUpperCase();
  642. break;
  643. case "lower":
  644. elem = elem.toLowerCase();
  645. break;
  646. }
  647. return elem;
  648. }
  649. function isValid(pos, c, strict, fromSetValid) { //strict true ~ no correction or autofill
  650. strict = strict === true; //always set a value to strict to prevent possible strange behavior in the extensions
  651. function _isValid(position, c, strict, fromSetValid) {
  652. var rslt = false;
  653. $.each(getTests(position), function (ndx, tst) {
  654. var test = tst["match"];
  655. var loopend = c ? 1 : 0, chrs = '', buffer = getBuffer();
  656. for (var i = test.cardinality; i > loopend; i--) {
  657. chrs += getBufferElement(position - (i - 1));
  658. }
  659. if (c) {
  660. chrs += c;
  661. }
  662. //return is false or a json object => { pos: ??, c: ??} or true
  663. rslt = test.fn != null ?
  664. test.fn.test(chrs, getMaskSet(), position, strict, opts)
  665. : (c == test["def"] || c == opts.skipOptionalPartCharacter) && test["def"] != "" ? //non mask
  666. { c: test["def"], pos: position }
  667. : false;
  668. if (rslt !== false) {
  669. var elem = rslt.c != undefined ? rslt.c : c;
  670. elem = (elem == opts.skipOptionalPartCharacter && test["fn"] === null) ? test["def"] : elem;
  671. var validatedPos = position;
  672. if (rslt["remove"] != undefined) { //remove position
  673. stripValidPositions(rslt["remove"], rslt["remove"] + 1);
  674. }
  675. if (rslt["refreshFromBuffer"]) {
  676. var refresh = rslt["refreshFromBuffer"];
  677. strict = true;
  678. refreshFromBuffer(refresh === true ? refresh : refresh["start"], refresh["end"]);
  679. if (rslt.pos == undefined && rslt.c == undefined) {
  680. rslt.pos = getLastValidPosition();
  681. return false;//breakout if refreshFromBuffer && nothing to insert
  682. }
  683. validatedPos = rslt.pos != undefined ? rslt.pos : position;
  684. if (validatedPos != position) {
  685. rslt = $.extend(rslt, isValid(validatedPos, elem, true)); //revalidate new position strict
  686. return false;
  687. }
  688. } else if (rslt !== true && rslt.pos != undefined && rslt["pos"] != position) { //their is a position offset
  689. validatedPos = rslt["pos"];
  690. refreshFromBuffer(position, validatedPos);
  691. if (validatedPos != position) {
  692. rslt = $.extend(rslt, isValid(validatedPos, elem, true)); //revalidate new position strict
  693. return false;
  694. }
  695. }
  696. if (rslt != true && rslt.pos == undefined && rslt.c == undefined) {
  697. return false; //breakout if nothing to insert
  698. }
  699. if (ndx > 0) {
  700. resetMaskSet(true);
  701. }
  702. if (!setValidPosition(validatedPos, $.extend({}, tst, { "input": casing(elem, test) }), fromSetValid))
  703. rslt = false;
  704. return false; //break from $.each
  705. }
  706. });
  707. return rslt;
  708. }
  709. //Check for a nonmask before the pos
  710. var buffer = getBuffer();
  711. for (var pndx = pos - 1; pndx > -1; pndx--) {
  712. if (getMaskSet()["validPositions"][pndx] && getMaskSet()["validPositions"][pndx].fn == null)
  713. break;
  714. else if ((!isMask(pndx) || buffer[pndx] != getPlaceholder(pndx)) && getTests(pndx).length > 1) {
  715. _isValid(pndx, buffer[pndx], true);
  716. break;
  717. }
  718. }
  719. var maskPos = pos;
  720. if (maskPos >= getMaskLength()) {
  721. console.log("try alternate match");
  722. return false;
  723. }
  724. var result = _isValid(maskPos, c, strict, fromSetValid);
  725. if (!strict && result === false) {
  726. var currentPosValid = getMaskSet()["validPositions"][maskPos];
  727. if (currentPosValid && currentPosValid["match"].fn == null && (currentPosValid["match"].def == c || c == opts.skipOptionalPartCharacter)) {
  728. result = { "caret": seekNext(maskPos) };
  729. } else if ((opts.insertMode || getMaskSet()["validPositions"][seekNext(maskPos)] == undefined) && !isMask(maskPos)) { //does the input match on a further position?
  730. for (var nPos = maskPos + 1, snPos = seekNext(maskPos) ; nPos <= snPos; nPos++) {
  731. result = _isValid(nPos, c, strict, fromSetValid);
  732. if (result !== false) {
  733. maskPos = nPos;
  734. break;
  735. }
  736. }
  737. }
  738. }
  739. if (result === true) result = { "pos": maskPos };
  740. return result;
  741. }
  742. function isMask(pos) {
  743. var test = getTest(pos);
  744. return test.fn != null ? test.fn : false;
  745. }
  746. function getMaskLength() {
  747. var maskLength;
  748. maxLength = $el.prop('maxLength');
  749. if (maxLength == -1) maxLength = undefined; /* FF sets no defined max length to -1 */
  750. if (opts.greedy == false) {
  751. var pos, lvp = getLastValidPosition(), testPos = getMaskSet()["validPositions"][lvp],
  752. ndxIntlzr = testPos != undefined ? testPos["locator"].slice() : undefined;
  753. for (pos = lvp + 1; testPos == undefined || (testPos["match"]["fn"] != null || (testPos["match"]["fn"] == null && testPos["match"]["def"] != "")) ; pos++) {
  754. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  755. ndxIntlzr = testPos["locator"].slice();
  756. }
  757. maskLength = pos;
  758. } else
  759. maskLength = getBuffer().length;
  760. return (maxLength == undefined || maskLength < maxLength) ? maskLength : maxLength;
  761. }
  762. function seekNext(pos) {
  763. var maskL = getMaskLength();
  764. if (pos >= maskL) return maskL;
  765. var position = pos;
  766. while (++position < maskL && !isMask(position) && (opts.nojumps !== true || opts.nojumpsThreshold > position)) {
  767. }
  768. return position;
  769. }
  770. function seekPrevious(pos) {
  771. var position = pos;
  772. if (position <= 0) return 0;
  773. while (--position > 0 && !isMask(position)) {
  774. };
  775. return position;
  776. }
  777. function getBufferElement(position) {
  778. return getMaskSet()["validPositions"][position] == undefined ? getPlaceholder(position) : getMaskSet()["validPositions"][position]["input"];
  779. }
  780. function writeBuffer(input, buffer, caretPos) {
  781. input._valueSet(buffer.join(''));
  782. if (caretPos != undefined) {
  783. caret(input, caretPos);
  784. }
  785. }
  786. function getPlaceholder(pos, test) {
  787. test = test || getTest(pos);
  788. return test["placeholder"] || (test["fn"] == null ? test["def"] : opts.placeholder.charAt(pos % opts.placeholder.length));
  789. }
  790. function checkVal(input, writeOut, strict, nptvl, intelliCheck) {
  791. var inputValue = nptvl != undefined ? nptvl.slice() : truncateInput(input._valueGet()).split('');
  792. resetMaskSet();
  793. if (writeOut) input._valueSet(""); //initial clear
  794. $.each(inputValue, function (ndx, charCode) {
  795. if (intelliCheck === true) {
  796. var p = getMaskSet()["p"],
  797. lvp = p == -1 ? p : seekPrevious(p),
  798. pos = lvp == -1 ? ndx : seekNext(lvp);
  799. if ($.inArray(charCode, getBufferTemplate().slice(lvp + 1, pos)) == -1) {
  800. keypressEvent.call(input, undefined, true, charCode.charCodeAt(0), false, strict, ndx);
  801. }
  802. } else {
  803. keypressEvent.call(input, undefined, true, charCode.charCodeAt(0), false, strict, ndx);
  804. strict = strict || (ndx > 0 && ndx > getMaskSet()["p"]);
  805. }
  806. });
  807. if (writeOut) {
  808. var keypressResult = opts.onKeyPress.call(this, undefined, getBuffer(), 0, opts);
  809. handleOnKeyResult(input, keypressResult);
  810. writeBuffer(input, getBuffer(), $(input).is(":focus") ? seekNext(getLastValidPosition(0)) : undefined);
  811. }
  812. }
  813. function escapeRegex(str) {
  814. return $.inputmask.escapeRegex.call(this, str);
  815. }
  816. function truncateInput(inputValue) {
  817. return inputValue.replace(new RegExp("(" + escapeRegex(getBufferTemplate().join('')) + ")*$"), "");
  818. }
  819. function unmaskedvalue($input) {
  820. if ($input.data('_inputmask') && !$input.hasClass('hasDatepicker')) {
  821. var umValue = [], vps = getMaskSet()["validPositions"];
  822. for (var pndx in vps) {
  823. if (vps[pndx]["match"] && vps[pndx]["match"].fn != null) {
  824. umValue.push(vps[pndx]["input"]);
  825. }
  826. }
  827. var unmaskedValue = (isRTL ? umValue.reverse() : umValue).join('');
  828. var bufferValue = (isRTL ? getBuffer().reverse() : getBuffer()).join('');
  829. if ($.isFunction(opts.onUnMask)) {
  830. unmaskedValue = opts.onUnMask.call($input, bufferValue, unmaskedValue, opts);
  831. }
  832. return unmaskedValue;
  833. } else {
  834. return $input[0]._valueGet();
  835. }
  836. }
  837. function TranslatePosition(pos) {
  838. if (isRTL && typeof pos == 'number' && (!opts.greedy || opts.placeholder != "")) {
  839. var bffrLght = getBuffer().length;
  840. pos = bffrLght - pos;
  841. }
  842. return pos;
  843. }
  844. function caret(input, begin, end) {
  845. var npt = input.jquery && input.length > 0 ? input[0] : input, range;
  846. if (typeof begin == 'number') {
  847. begin = TranslatePosition(begin);
  848. end = TranslatePosition(end);
  849. end = (typeof end == 'number') ? end : begin;
  850. //store caret for multi scope
  851. var data = $(npt).data('_inputmask') || {};
  852. data["caret"] = { "begin": begin, "end": end };
  853. $(npt).data('_inputmask', data);
  854. if (!$(npt).is(":visible")) {
  855. return;
  856. }
  857. npt.scrollLeft = npt.scrollWidth;
  858. if (opts.insertMode == false && begin == end) end++; //set visualization for insert/overwrite mode
  859. if (npt.setSelectionRange) {
  860. npt.selectionStart = begin;
  861. npt.selectionEnd = end;
  862. } else if (npt.createTextRange) {
  863. range = npt.createTextRange();
  864. range.collapse(true);
  865. range.moveEnd('character', end);
  866. range.moveStart('character', begin);
  867. range.select();
  868. }
  869. } else {
  870. var data = $(npt).data('_inputmask');
  871. if (!$(npt).is(":visible") && data && data["caret"] != undefined) {
  872. begin = data["caret"]["begin"];
  873. end = data["caret"]["end"];
  874. } else if (npt.setSelectionRange) {
  875. begin = npt.selectionStart;
  876. end = npt.selectionEnd;
  877. } else if (document.selection && document.selection.createRange) {
  878. range = document.selection.createRange();
  879. begin = 0 - range.duplicate().moveStart('character', -100000);
  880. end = begin + range.text.length;
  881. }
  882. begin = TranslatePosition(begin);
  883. end = TranslatePosition(end);
  884. return { "begin": begin, "end": end };
  885. }
  886. }
  887. function determineLastRequiredPosition(returnDefinition) {
  888. var buffer = getBuffer(), bl = buffer.length,
  889. pos, lvp = getLastValidPosition(), positions = {}, lvTest = getMaskSet()["validPositions"][lvp],
  890. ndxIntlzr = lvTest != undefined ? lvTest["locator"].slice() : undefined, testPos;
  891. for (pos = lvp + 1; pos < buffer.length; pos++) {
  892. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  893. ndxIntlzr = testPos["locator"].slice();
  894. positions[pos] = $.extend(true, {}, testPos);
  895. }
  896. var lvTestAltArr = lvTest && lvTest.alternation != undefined ? lvTest["locator"][lvTest.alternation].split(",") : [];
  897. for (pos = bl - 1; pos > lvp; pos--) {
  898. testPos = positions[pos]["match"];
  899. if ((testPos.optionality ||
  900. testPos.optionalQuantifier ||
  901. (lvTest && lvTest.alternation != undefined && positions[pos]["locator"][lvTest.alternation] != undefined && $.inArray(positions[pos]["locator"][lvTest.alternation].toString(), lvTestAltArr) != -1))
  902. && buffer[pos] == getPlaceholder(pos, testPos)) {
  903. bl--;
  904. } else break;
  905. }
  906. return returnDefinition ? { "l": bl, "def": positions[bl] ? positions[bl]["match"] : undefined } : bl;
  907. }
  908. function clearOptionalTail(input) {
  909. var buffer = getBuffer(), tmpBuffer = buffer.slice();
  910. var rl = determineLastRequiredPosition();
  911. tmpBuffer.length = rl;
  912. writeBuffer(input, tmpBuffer);
  913. }
  914. function isComplete(buffer) { //return true / false / undefined (repeat *)
  915. if ($.isFunction(opts.isComplete)) return opts.isComplete.call($el, buffer, opts);
  916. if (opts.repeat == "*") return undefined;
  917. var complete = false, lrp = determineLastRequiredPosition(true), aml = seekPrevious(lrp["l"]), lvp = getLastValidPosition();
  918. if (lvp == aml) {
  919. if (lrp["def"] == undefined || lrp["def"].newBlockMarker || lrp["def"].optionalQuantifier) {
  920. complete = true;
  921. for (var i = 0; i <= aml; i++) {
  922. var mask = isMask(i);
  923. if ((mask && (buffer[i] == undefined || buffer[i] == getPlaceholder(i))) || (!mask && buffer[i] != getPlaceholder(i))) {
  924. complete = false;
  925. break;
  926. }
  927. }
  928. }
  929. }
  930. return complete;
  931. }
  932. function isSelection(begin, end) {
  933. return isRTL ? (begin - end) > 1 || ((begin - end) == 1 && opts.insertMode) :
  934. (end - begin) > 1 || ((end - begin) == 1 && opts.insertMode);
  935. }
  936. function installEventRuler(npt) {
  937. var events = $._data(npt).events;
  938. $.each(events, function (eventType, eventHandlers) {
  939. $.each(eventHandlers, function (ndx, eventHandler) {
  940. if (eventHandler.namespace == "inputmask") {
  941. if (eventHandler.type != "setvalue") {
  942. var handler = eventHandler.handler;
  943. eventHandler.handler = function (e) {
  944. if (this.readOnly || this.disabled)
  945. e.preventDefault;
  946. else
  947. return handler.apply(this, arguments);
  948. };
  949. }
  950. }
  951. });
  952. });
  953. }
  954. function patchValueProperty(npt) {
  955. var valueGet;
  956. var valueSet;
  957. function PatchValhook(type) {
  958. if ($.valHooks[type] == undefined || $.valHooks[type].inputmaskpatch != true) {
  959. var valueGet = $.valHooks[type] && $.valHooks[type].get ? $.valHooks[type].get : function (elem) { return elem.value; };
  960. var valueSet = $.valHooks[type] && $.valHooks[type].set ? $.valHooks[type].set : function (elem, value) {
  961. elem.value = value;
  962. return elem;
  963. };
  964. $.valHooks[type] = {
  965. get: function (elem) {
  966. var $elem = $(elem);
  967. if ($elem.data('_inputmask')) {
  968. if ($elem.data('_inputmask')['opts'].autoUnmask)
  969. return $elem.inputmask('unmaskedvalue');
  970. else {
  971. var result = valueGet(elem),
  972. inputData = $elem.data('_inputmask'),
  973. maskset = inputData['maskset'],
  974. bufferTemplate = maskset['_buffer'];
  975. bufferTemplate = bufferTemplate ? bufferTemplate.join('') : '';
  976. return result != bufferTemplate ? result : '';
  977. }
  978. } else return valueGet(elem);
  979. },
  980. set: function (elem, value) {
  981. var $elem = $(elem), inputData = $elem.data('_inputmask'), result;
  982. if (inputData) {
  983. result = valueSet(elem, $.isFunction(inputData['opts'].onBeforeMask) ? inputData['opts'].onBeforeMask.call(el, value, inputData['opts']) : value);
  984. $elem.triggerHandler('setvalue.inputmask');
  985. } else {
  986. result = valueSet(elem, value);
  987. }
  988. return result;
  989. },
  990. inputmaskpatch: true
  991. };
  992. }
  993. }
  994. function getter() {
  995. var $self = $(this), inputData = $(this).data('_inputmask');
  996. if (inputData) {
  997. return inputData['opts'].autoUnmask ? $self.inputmask('unmaskedvalue') : (valueGet.call(this) != getBufferTemplate().join('') ? valueGet.call(this) : '');
  998. } else return valueGet.call(this);
  999. }
  1000. function setter(value) {
  1001. var inputData = $(this).data('_inputmask');
  1002. if (inputData) {
  1003. valueSet.call(this, $.isFunction(inputData['opts'].onBeforeMask) ? inputData['opts'].onBeforeMask.call(el, value, inputData['opts']) : value);
  1004. $(this).triggerHandler('setvalue.inputmask');
  1005. } else {
  1006. valueSet.call(this, value);
  1007. }
  1008. }
  1009. function InstallNativeValueSetFallback(npt) {
  1010. $(npt).bind("mouseenter.inputmask", function (event) {
  1011. var $input = $(this), input = this, value = input._valueGet();
  1012. if (value != "" && value != getBuffer().join('')) {
  1013. $input.trigger("setvalue");
  1014. }
  1015. });
  1016. //!! the bound handlers are executed in the order they where bound
  1017. //reorder the events
  1018. var events = $._data(npt).events;
  1019. var handlers = events["mouseover"];
  1020. if (handlers) {
  1021. var ourHandler = handlers[handlers.length - 1];
  1022. for (var i = handlers.length - 1; i > 0; i--) {
  1023. handlers[i] = handlers[i - 1];
  1024. }
  1025. handlers[0] = ourHandler;
  1026. }
  1027. }
  1028. if (!npt._valueGet) {
  1029. //var valueProperty;
  1030. if (Object.getOwnPropertyDescriptor)
  1031. var valueProperty = Object.getOwnPropertyDescriptor(npt, "value");
  1032. if (valueProperty && valueProperty.configurable && false) { //experimental for chrome
  1033. npt._value = valueProperty.value;
  1034. valueGet = function () {
  1035. return this._value || "";
  1036. }
  1037. valueSet = function (value) {
  1038. this._value = value;
  1039. this.select();
  1040. this.setRangeText(value);
  1041. this.selectionStart = this.selectionEnd;
  1042. }
  1043. Object.defineProperty(npt, "value", {
  1044. get: getter,
  1045. set: setter
  1046. });
  1047. } else if (document.__lookupGetter__ && npt.__lookupGetter__("value")) {
  1048. valueGet = npt.__lookupGetter__("value");
  1049. valueSet = npt.__lookupSetter__("value");
  1050. npt.__defineGetter__("value", getter);
  1051. npt.__defineSetter__("value", setter);
  1052. } else { //jquery.val
  1053. valueGet = function () { return npt.value; }
  1054. valueSet = function (value) { npt.value = value; }
  1055. PatchValhook(npt.type);
  1056. InstallNativeValueSetFallback(npt);
  1057. }
  1058. npt._valueGet = function () {
  1059. return isRTL ? valueGet.call(this).split('').reverse().join('') : valueGet.call(this);
  1060. };
  1061. npt._valueSet = function (value) {
  1062. valueSet.call(this, isRTL ? value.split('').reverse().join('') : value);
  1063. };
  1064. }
  1065. }
  1066. function handleRemove(input, k, pos) {
  1067. if (opts.numericInput || isRTL) {
  1068. if (k == opts.keyCode.BACKSPACE)
  1069. k = opts.keyCode.DELETE;
  1070. else if (k == opts.keyCode.DELETE)
  1071. k = opts.keyCode.BACKSPACE;
  1072. if (isRTL) {
  1073. var pend = pos.end;
  1074. pos.end = pos.begin;
  1075. pos.begin = pend;
  1076. }
  1077. }
  1078. if (k == opts.keyCode.BACKSPACE && pos.end - pos.begin <= 1)
  1079. pos.begin = seekPrevious(pos.begin);
  1080. else if (k == opts.keyCode.DELETE && pos.begin == pos.end)
  1081. pos.end++;
  1082. stripValidPositions(pos.begin, pos.end);
  1083. var firstMaskedPos = getLastValidPosition(pos.begin);
  1084. if (firstMaskedPos < pos.begin) {
  1085. getMaskSet()["p"] = seekNext(firstMaskedPos);
  1086. } else {
  1087. getMaskSet()["p"] = pos.begin;
  1088. }
  1089. }
  1090. function handleOnKeyResult(input, keyResult, caretPos) {
  1091. if (keyResult && keyResult["refreshFromBuffer"]) {
  1092. var refresh = keyResult["refreshFromBuffer"];
  1093. refreshFromBuffer(refresh === true ? refresh : refresh["start"], refresh["end"]);
  1094. resetMaskSet(true);
  1095. if (caretPos != undefined) {
  1096. writeBuffer(input, getBuffer());
  1097. caret(input, keyResult.caret || caretPos.begin, keyResult.caret || caretPos.end);
  1098. }
  1099. }
  1100. }
  1101. function keydownEvent(e) {
  1102. //Safari 5.1.x - modal dialog fires keypress twice workaround
  1103. skipKeyPressEvent = false;
  1104. var input = this, $input = $(input), k = e.keyCode, pos = caret(input);
  1105. //backspace, delete, and escape get special treatment
  1106. if (k == opts.keyCode.BACKSPACE || k == opts.keyCode.DELETE || (iphone && k == 127) || e.ctrlKey && k == 88) { //backspace/delete
  1107. e.preventDefault(); //stop default action but allow propagation
  1108. if (k == 88) valueOnFocus = getBuffer().join('');
  1109. handleRemove(input, k, pos);
  1110. writeBuffer(input, getBuffer(), getMaskSet()["p"]);
  1111. if (input._valueGet() == getBufferTemplate().join(''))
  1112. $input.trigger('cleared');
  1113. if (opts.showTooltip) { //update tooltip
  1114. $input.prop("title", getMaskSet()["mask"]);
  1115. }
  1116. } else if (k == opts.keyCode.END || k == opts.keyCode.PAGE_DOWN) { //when END or PAGE_DOWN pressed set position at lastmatch
  1117. setTimeout(function () {
  1118. var caretPos = seekNext(getLastValidPosition());
  1119. if (!opts.insertMode && caretPos == getMaskLength() && !e.shiftKey) caretPos--;
  1120. caret(input, e.shiftKey ? pos.begin : caretPos, caretPos);
  1121. }, 0);
  1122. } else if ((k == opts.keyCode.HOME && !e.shiftKey) || k == opts.keyCode.PAGE_UP) { //Home or page_up
  1123. caret(input, 0, e.shiftKey ? pos.begin : 0);
  1124. } else if (k == opts.keyCode.ESCAPE || (k == 90 && e.ctrlKey)) { //escape && undo
  1125. checkVal(input, true, false, valueOnFocus.split(''));
  1126. $input.click();
  1127. } else if (k == opts.keyCode.INSERT && !(e.shiftKey || e.ctrlKey)) { //insert
  1128. opts.insertMode = !opts.insertMode;
  1129. caret(input, !opts.insertMode && pos.begin == getMaskLength() ? pos.begin - 1 : pos.begin);
  1130. } else if (opts.insertMode == false && !e.shiftKey) {
  1131. if (k == opts.keyCode.RIGHT) {
  1132. setTimeout(function () {
  1133. var caretPos = caret(input);
  1134. caret(input, caretPos.begin);
  1135. }, 0);
  1136. } else if (k == opts.keyCode.LEFT) {
  1137. setTimeout(function () {
  1138. var caretPos = caret(input);
  1139. caret(input, isRTL ? caretPos.begin + 1 : caretPos.begin - 1);
  1140. }, 0);
  1141. }
  1142. }
  1143. var currentCaretPos = caret(input);
  1144. var keydownResult = opts.onKeyDown.call(this, e, getBuffer(), currentCaretPos.begin, opts);
  1145. handleOnKeyResult(input, keydownResult, currentCaretPos);
  1146. ignorable = $.inArray(k, opts.ignorables) != -1;
  1147. }
  1148. function keypressEvent(e, checkval, k, writeOut, strict, ndx) {
  1149. //Safari 5.1.x - modal dialog fires keypress twice workaround
  1150. if (k == undefined && skipKeyPressEvent) return false;
  1151. skipKeyPressEvent = true;
  1152. var input = this, $input = $(input);
  1153. e = e || window.event;
  1154. var k = checkval ? k : (e.which || e.charCode || e.keyCode);
  1155. if (checkval !== true && (!(e.ctrlKey && e.altKey) && (e.ctrlKey || e.metaKey || ignorable))) {
  1156. return true;
  1157. } else {
  1158. if (k) {
  1159. //special treat the decimal separator
  1160. if (checkval !== true && k == 46 && e.shiftKey == false && opts.radixPoint == ",") k = 44;
  1161. var pos, forwardPosition, c = String.fromCharCode(k);
  1162. if (checkval) {
  1163. var pcaret = strict ? ndx : getLastValidPosition() + 1;
  1164. pos = { begin: pcaret, end: pcaret };
  1165. } else {
  1166. pos = caret(input);
  1167. }
  1168. //should we clear a possible selection??
  1169. var isSlctn = isSelection(pos.begin, pos.end);
  1170. if (isSlctn) {
  1171. getMaskSet()["undoPositions"] = $.extend(true, {}, getMaskSet()["validPositions"]); //init undobuffer for recovery when not valid
  1172. handleRemove(input, opts.keyCode.DELETE, pos);
  1173. if (!opts.insertMode) { //preserve some space
  1174. opts.insertMode = !opts.insertMode;
  1175. setValidPosition(pos.begin, strict);
  1176. opts.insertMode = !opts.insertMode;
  1177. }
  1178. isSlctn = !opts.multi;
  1179. }
  1180. getMaskSet()["writeOutBuffer"] = true;
  1181. var p = isRTL && !isSlctn ? pos.end : pos.begin;
  1182. var valResult = isValid(p, c, strict);
  1183. if (valResult !== false) {
  1184. if (valResult !== true) {
  1185. p = valResult.pos != undefined ? valResult.pos : p; //set new position from isValid
  1186. c = valResult.c != undefined ? valResult.c : c; //set new char from isValid
  1187. }
  1188. resetMaskSet(true);
  1189. if (valResult.caret != undefined)
  1190. forwardPosition = valResult.caret;
  1191. else {
  1192. var vps = getMaskSet()["validPositions"];
  1193. if (!opts.keepStatic && (vps[p + 1] != undefined && getTests(p + 1, vps[p].locator.slice(), p).length > 1 || vps[p].alternation != undefined))
  1194. forwardPosition = p + 1;
  1195. else
  1196. forwardPosition = seekNext(p);
  1197. }
  1198. getMaskSet()["p"] = forwardPosition; //needed for checkval
  1199. }
  1200. if (writeOut !== false) {
  1201. var self = this;
  1202. setTimeout(function () { opts.onKeyValidation.call(self, valResult, opts); }, 0);
  1203. if (getMaskSet()["writeOutBuffer"] && valResult !== false) {
  1204. var buffer = getBuffer();
  1205. writeBuffer(input, buffer, checkval ? undefined : opts.numericInput ? seekPrevious(forwardPosition) : forwardPosition);
  1206. if (checkval !== true) {
  1207. setTimeout(function () { //timeout needed for IE
  1208. if (isComplete(buffer) === true)
  1209. $input.trigger("complete");
  1210. skipInputEvent = true;
  1211. $input.trigger("input");
  1212. }, 0);
  1213. }
  1214. } else if (isSlctn) {
  1215. getMaskSet()["buffer"] = undefined;
  1216. getMaskSet()["validPositions"] = getMaskSet()["undoPositions"];
  1217. }
  1218. } else if (isSlctn) {
  1219. getMaskSet()["buffer"] = undefined;
  1220. getMaskSet()["validPositions"] = getMaskSet()["undoPositions"];
  1221. }
  1222. if (opts.showTooltip) { //update tooltip
  1223. $input.prop("title", getMaskSet()["mask"]);
  1224. }
  1225. //needed for IE8 and below
  1226. if (e && checkval != true) {
  1227. e.preventDefault ? e.preventDefault() : e.returnValue = false;
  1228. var currentCaretPos = caret(input);
  1229. var keypressResult = opts.onKeyPress.call(this, e, getBuffer(), currentCaretPos.begin, opts);
  1230. handleOnKeyResult(input, keypressResult, currentCaretPos);
  1231. }
  1232. }
  1233. }
  1234. }
  1235. function keyupEvent(e) {
  1236. var $input = $(this), input = this, k = e.keyCode, buffer = getBuffer();
  1237. var currentCaretPos = caret(input);
  1238. var keyupResult = opts.onKeyUp.call(this, e, buffer, currentCaretPos.begin, opts);
  1239. handleOnKeyResult(input, keyupResult, currentCaretPos);
  1240. if (k == opts.keyCode.TAB && opts.showMaskOnFocus) {
  1241. if ($input.hasClass('focus-inputmask') && input._valueGet().length == 0) {
  1242. resetMaskSet();
  1243. buffer = getBuffer();
  1244. writeBuffer(input, buffer);
  1245. caret(input, 0);
  1246. valueOnFocus = getBuffer().join('');
  1247. } else {
  1248. writeBuffer(input, buffer);
  1249. caret(input, TranslatePosition(0), TranslatePosition(getMaskLength()));
  1250. }
  1251. }
  1252. }
  1253. function pasteEvent(e) {
  1254. if (skipInputEvent === true && e.type == "input") {
  1255. skipInputEvent = false;
  1256. return true;
  1257. }
  1258. var input = this, $input = $(input), inputValue = input._valueGet();
  1259. //paste event for IE8 and lower I guess ;-)
  1260. if (e.type == "propertychange" && input._valueGet().length <= getMaskLength()) {
  1261. return true;
  1262. } else if (e.type == "paste") {
  1263. if (window.clipboardData && window.clipboardData.getData) { // IE
  1264. inputValue = window.clipboardData.getData('Text');
  1265. } else if (e.originalEvent && e.originalEvent.clipboardData && e.originalEvent.clipboardData.getData) {
  1266. inputValue = e.originalEvent.clipboardData.getData('text/plain');
  1267. }
  1268. }
  1269. var pasteValue = $.isFunction(opts.onBeforePaste) ? opts.onBeforePaste.call(input, inputValue, opts) : inputValue;
  1270. checkVal(input, true, false, pasteValue.split(''), true);
  1271. $input.click();
  1272. if (isComplete(getBuffer()) === true)
  1273. $input.trigger("complete");
  1274. return false;
  1275. }
  1276. function mobileInputEvent(e) {
  1277. if (skipInputEvent === true && e.type == "input") {
  1278. skipInputEvent = false;
  1279. return true;
  1280. }
  1281. var input = this;
  1282. //backspace in chrome32 only fires input event - detect & treat
  1283. var caretPos = caret(input),
  1284. currentValue = input._valueGet();
  1285. currentValue = currentValue.replace(new RegExp("(" + escapeRegex(getBufferTemplate().join('')) + ")*"), "");
  1286. //correct caretposition for chrome
  1287. if (caretPos.begin > currentValue.length) {
  1288. caret(input, currentValue.length);
  1289. caretPos = caret(input);
  1290. }
  1291. if ((getBuffer().length - currentValue.length) == 1 && currentValue.charAt(caretPos.begin) != getBuffer()[caretPos.begin]
  1292. && currentValue.charAt(caretPos.begin + 1) != getBuffer()[caretPos.begin]
  1293. && !isMask(caretPos.begin)) {
  1294. e.keyCode = opts.keyCode.BACKSPACE;
  1295. keydownEvent.call(input, e);
  1296. }
  1297. e.preventDefault();
  1298. }
  1299. function inputFallBackEvent(e) { //fallback when keypress & compositionevents fail
  1300. if (skipInputEvent === true && e.type == "input") {
  1301. skipInputEvent = false;
  1302. return true;
  1303. }
  1304. var input = this;
  1305. var caretPos = caret(input),
  1306. currentValue = input._valueGet();
  1307. caret(input, caretPos.begin - 1);
  1308. var keypress = $.Event("keypress");
  1309. keypress.which = currentValue.charCodeAt(caretPos.begin - 1);
  1310. skipKeyPressEvent = false;
  1311. ignorable = false;
  1312. keypressEvent.call(input, keypress, undefined, undefined, false);
  1313. var forwardPosition = getMaskSet()["p"];
  1314. writeBuffer(input, getBuffer(), opts.numericInput ? seekPrevious(forwardPosition) : forwardPosition);
  1315. e.preventDefault();
  1316. }
  1317. function compositionupdateEvent(e) { //fix for special latin-charset FF/Linux
  1318. skipInputEvent = true; //stop inutFallback
  1319. var input = this;
  1320. setTimeout(function () {
  1321. caret(input, caret(input).begin - 1);
  1322. var keypress = $.Event("keypress");
  1323. keypress.which = e.originalEvent.data.charCodeAt(0);
  1324. skipKeyPressEvent = false;
  1325. ignorable = false;
  1326. keypressEvent.call(input, keypress, undefined, undefined, false);
  1327. var forwardPosition = getMaskSet()["p"];
  1328. writeBuffer(input, getBuffer(), opts.numericInput ? seekPrevious(forwardPosition) : forwardPosition);
  1329. }, 0);
  1330. skipInputEvent === true
  1331. return false;
  1332. }
  1333. function mask(el) {
  1334. $el = $(el);
  1335. if ($el.is(":input") && $el.attr("type") != "number") {
  1336. //store tests & original buffer in the input element - used to get the unmasked value
  1337. $el.data('_inputmask', {
  1338. 'maskset': maskset,
  1339. 'opts': opts,
  1340. 'isRTL': false
  1341. });
  1342. //show tooltip
  1343. if (opts.showTooltip) {
  1344. $el.prop("title", getMaskSet()["mask"]);
  1345. }
  1346. if (el.dir == "rtl" || opts.rightAlign)
  1347. $el.css("text-align", "right");
  1348. if (el.dir == "rtl" || opts.numericInput) {
  1349. el.dir = "ltr";
  1350. $el.removeAttr("dir");
  1351. var inputData = $el.data('_inputmask');
  1352. inputData['isRTL'] = true;
  1353. $el.data('_inputmask', inputData);
  1354. isRTL = true;
  1355. }
  1356. //unbind all events - to make sure that no other mask will interfere when re-masking
  1357. $el.unbind(".inputmask");
  1358. $el.removeClass('focus-inputmask');
  1359. //bind events
  1360. $el.closest('form').bind("submit", function () { //trigger change on submit if any
  1361. if (valueOnFocus != getBuffer().join('')) {
  1362. $el.change();
  1363. }
  1364. if (opts.autoUnmask && opts.removeMaskOnSubmit) {
  1365. $el.inputmask("remove");
  1366. }
  1367. }).bind('reset', function () {
  1368. setTimeout(function () {
  1369. $el.trigger("setvalue");
  1370. }, 0);
  1371. });
  1372. $el.bind("mouseenter.inputmask", function () {
  1373. var $input = $(this), input = this;
  1374. if (!$input.hasClass('focus-inputmask') && opts.showMaskOnHover) {
  1375. if (input._valueGet() != getBuffer().join('')) {
  1376. writeBuffer(input, getBuffer());
  1377. }
  1378. }
  1379. }).bind("blur.inputmask", function () {
  1380. var $input = $(this), input = this;
  1381. if ($input.data('_inputmask')) {
  1382. var nptValue = input._valueGet(), buffer = getBuffer();
  1383. $input.removeClass('focus-inputmask');
  1384. if (valueOnFocus != getBuffer().join('')) {
  1385. $input.change();
  1386. }
  1387. if (opts.clearMaskOnLostFocus && nptValue != '') {
  1388. if (nptValue == getBufferTemplate().join(''))
  1389. input._valueSet('');
  1390. else { //clearout optional tail of the mask
  1391. clearOptionalTail(input);
  1392. }
  1393. }
  1394. if (isComplete(buffer) === false) {
  1395. $input.trigger("incomplete");
  1396. if (opts.clearIncomplete) {
  1397. resetMaskSet();
  1398. if (opts.clearMaskOnLostFocus)
  1399. input._valueSet('');
  1400. else {
  1401. buffer = getBufferTemplate().slice();
  1402. writeBuffer(input, buffer);
  1403. }
  1404. }
  1405. }
  1406. }
  1407. }).bind("focus.inputmask", function () {
  1408. var $input = $(this), input = this, nptValue = input._valueGet();
  1409. if (opts.showMaskOnFocus && !$input.hasClass('focus-inputmask') && (!opts.showMaskOnHover || (opts.showMaskOnHover && nptValue == ''))) {
  1410. if (input._valueGet() != getBuffer().join('')) {
  1411. writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()));
  1412. }
  1413. }
  1414. $input.addClass('focus-inputmask');
  1415. valueOnFocus = getBuffer().join('');
  1416. }).bind("mouseleave.inputmask", function () {
  1417. var $input = $(this), input = this;
  1418. if (opts.clearMaskOnLostFocus) {
  1419. if (!$input.hasClass('focus-inputmask') && input._valueGet() != $input.attr("placeholder")) {
  1420. if (input._valueGet() == getBufferTemplate().join('') || input._valueGet() == '')
  1421. input._valueSet('');
  1422. else { //clearout optional tail of the mask
  1423. clearOptionalTail(input);
  1424. }
  1425. }
  1426. }
  1427. }).bind("click.inputmask", function () {
  1428. var input = this;
  1429. if ($(input).is(":focus")) {
  1430. setTimeout(function () {
  1431. var selectedCaret = caret(input);
  1432. if (selectedCaret.begin == selectedCaret.end) {
  1433. var clickPosition = isRTL ? TranslatePosition(selectedCaret.begin) : selectedCaret.begin,
  1434. lvp = getLastValidPosition(clickPosition),
  1435. lastPosition = seekNext(lvp);
  1436. if (clickPosition < lastPosition) {
  1437. if (isMask(clickPosition))
  1438. caret(input, clickPosition);
  1439. else caret(input, seekNext(clickPosition));
  1440. } else
  1441. caret(input, lastPosition);
  1442. }
  1443. }, 0);
  1444. }
  1445. }).bind('dblclick.inputmask', function () {
  1446. var input = this;
  1447. setTimeout(function () {
  1448. caret(input, 0, seekNext(getLastValidPosition()));
  1449. }, 0);
  1450. }).bind(PasteEventType + ".inputmask dragdrop.inputmask drop.inputmask", pasteEvent
  1451. ).bind('setvalue.inputmask', function () {
  1452. var input = this;
  1453. checkVal(input, true);
  1454. valueOnFocus = getBuffer().join('');
  1455. }).bind('complete.inputmask', opts.oncomplete
  1456. ).bind('incomplete.inputmask', opts.onincomplete
  1457. ).bind('cleared.inputmask', opts.oncleared);
  1458. $el.bind("keydown.inputmask", keydownEvent
  1459. ).bind("keypress.inputmask", keypressEvent
  1460. ).bind("keyup.inputmask", keyupEvent
  1461. ).bind("compositionupdate.inputmask", compositionupdateEvent);
  1462. if (PasteEventType === "paste") {
  1463. $el.bind("input.inputmask", inputFallBackEvent);
  1464. }
  1465. if (android || androidfirefox || androidchrome || kindle) {
  1466. if (PasteEventType == "input") {
  1467. $el.unbind(PasteEventType + ".inputmask");
  1468. }
  1469. $el.bind("input.inputmask", mobileInputEvent);
  1470. }
  1471. if (msie1x)
  1472. $el.bind("input.inputmask", pasteEvent);
  1473. patchValueProperty(el);
  1474. //apply mask
  1475. var initialValue = $.isFunction(opts.onBeforeMask) ? opts.onBeforeMask.call(el, el._valueGet(), opts) : el._valueGet();
  1476. checkVal(el, true, false, initialValue.split(''), true);
  1477. valueOnFocus = getBuffer().join('');
  1478. // Wrap document.activeElement in a try/catch block since IE9 throw "Unspecified error" if document.activeElement is undefined when we are in an IFrame.
  1479. var activeElement;
  1480. try {
  1481. activeElement = document.activeElement;
  1482. } catch (e) {
  1483. }
  1484. if (isComplete(getBuffer()) === false) {
  1485. if (opts.clearIncomplete)
  1486. resetMaskSet();
  1487. }
  1488. if (opts.clearMaskOnLostFocus) {
  1489. if (getBuffer().join('') == getBufferTemplate().join('')) {
  1490. el._valueSet('');
  1491. } else {
  1492. clearOptionalTail(el);
  1493. }
  1494. } else {
  1495. writeBuffer(el, getBuffer());
  1496. }
  1497. if (activeElement === el) { //position the caret when in focus
  1498. $el.addClass('focus-inputmask');
  1499. caret(el, seekNext(getLastValidPosition()));
  1500. }
  1501. installEventRuler(el);
  1502. }
  1503. }
  1504. //action object
  1505. if (actionObj != undefined) {
  1506. switch (actionObj["action"]) {
  1507. case "isComplete":
  1508. $el = $(actionObj["el"]);
  1509. maskset = $el.data('_inputmask')['maskset'];
  1510. opts = $el.data('_inputmask')['opts'];
  1511. return isComplete(actionObj["buffer"]);
  1512. case "unmaskedvalue":
  1513. $el = actionObj["$input"];
  1514. maskset = $el.data('_inputmask')['maskset'];
  1515. opts = $el.data('_inputmask')['opts'];
  1516. isRTL = actionObj["$input"].data('_inputmask')['isRTL'];
  1517. return unmaskedvalue(actionObj["$input"]);
  1518. case "mask":
  1519. valueOnFocus = getBuffer().join('');
  1520. mask(actionObj["el"]);
  1521. break;
  1522. case "format":
  1523. $el = $({});
  1524. $el.data('_inputmask', {
  1525. 'maskset': maskset,
  1526. 'opts': opts,
  1527. 'isRTL': opts.numericInput
  1528. });
  1529. if (opts.numericInput) {
  1530. isRTL = true;
  1531. }
  1532. var valueBuffer = actionObj["value"].split('');
  1533. checkVal($el, false, false, isRTL ? valueBuffer.reverse() : valueBuffer, true);
  1534. opts.onKeyPress.call(this, undefined, getBuffer(), 0, opts);
  1535. return isRTL ? getBuffer().reverse().join('') : getBuffer().join('');
  1536. case "isValid":
  1537. $el = $({});
  1538. $el.data('_inputmask', {
  1539. 'maskset': maskset,
  1540. 'opts': opts,
  1541. 'isRTL': opts.numericInput
  1542. });
  1543. if (opts.numericInput) {
  1544. isRTL = true;
  1545. }
  1546. var valueBuffer = actionObj["value"].split('');
  1547. checkVal($el, false, true, isRTL ? valueBuffer.reverse() : valueBuffer);
  1548. var buffer = getBuffer();
  1549. var rl = determineLastRequiredPosition();
  1550. buffer.length = rl;
  1551. return isComplete(buffer) && actionObj["value"] == buffer.join('');
  1552. case "getemptymask":
  1553. $el = $(actionObj["el"]);
  1554. maskset = $el.data('_inputmask')['maskset'];
  1555. opts = $el.data('_inputmask')['opts'];
  1556. return getBufferTemplate();
  1557. case "remove":
  1558. var el = actionObj["el"];
  1559. $el = $(el);
  1560. maskset = $el.data('_inputmask')['maskset'];
  1561. opts = $el.data('_inputmask')['opts'];
  1562. //writeout the unmaskedvalue
  1563. el._valueSet(unmaskedvalue($el));
  1564. //unbind all events
  1565. $el.unbind(".inputmask");
  1566. $el.removeClass('focus-inputmask');
  1567. //clear data
  1568. $el.removeData('_inputmask');
  1569. //restore the value property
  1570. var valueProperty;
  1571. if (Object.getOwnPropertyDescriptor)
  1572. valueProperty = Object.getOwnPropertyDescriptor(el, "value");
  1573. if (valueProperty && valueProperty.get) {
  1574. if (el._valueGet) {
  1575. Object.defineProperty(el, "value", {
  1576. get: el._valueGet,
  1577. set: el._valueSet
  1578. });
  1579. }
  1580. } else if (document.__lookupGetter__ && el.__lookupGetter__("value")) {
  1581. if (el._valueGet) {
  1582. el.__defineGetter__("value", el._valueGet);
  1583. el.__defineSetter__("value", el._valueSet);
  1584. }
  1585. }
  1586. try { //try catch needed for IE7 as it does not supports deleting fns
  1587. delete el._valueGet;
  1588. delete el._valueSet;
  1589. } catch (e) {
  1590. el._valueGet = undefined;
  1591. el._valueSet = undefined;
  1592. }
  1593. break;
  1594. }
  1595. }
  1596. };
  1597. $.inputmask = {
  1598. //options default
  1599. defaults: {
  1600. placeholder: "_",
  1601. optionalmarker: { start: "[", end: "]" },
  1602. quantifiermarker: { start: "{", end: "}" },
  1603. groupmarker: { start: "(", end: ")" },
  1604. alternatormarker: "|",
  1605. escapeChar: "\\",
  1606. mask: null,
  1607. oncomplete: $.noop, //executes when the mask is complete
  1608. onincomplete: $.noop, //executes when the mask is incomplete and focus is lost
  1609. oncleared: $.noop, //executes when the mask is cleared
  1610. repeat: 0, //repetitions of the mask: * ~ forever, otherwise specify an integer
  1611. greedy: true, //true: allocated buffer for the mask and repetitions - false: allocate only if needed
  1612. autoUnmask: false, //automatically unmask when retrieving the value with $.fn.val or value if the browser supports __lookupGetter__ or getOwnPropertyDescriptor
  1613. removeMaskOnSubmit: true, //remove the mask before submitting the form. Use in combination with autoUnmask: true
  1614. clearMaskOnLostFocus: true,
  1615. insertMode: true, //insert the input or overwrite the input
  1616. clearIncomplete: false, //clear the incomplete input on blur
  1617. aliases: {}, //aliases definitions => see jquery.inputmask.extensions.js
  1618. alias: null,
  1619. onKeyUp: $.noop, //callback to implement autocomplete on certain keys for example
  1620. onKeyPress: $.noop, //callback to implement autocomplete on certain keys for example
  1621. onKeyDown: $.noop, //callback to implement autocomplete on certain keys for example
  1622. onBeforeMask: undefined, //executes before masking the initial value to allow preprocessing of the initial value. args => initialValue, opts => return processedValue
  1623. onBeforePaste: undefined, //executes before masking the pasted value to allow preprocessing of the pasted value. args => pastedValue, opts => return processedValue
  1624. onUnMask: undefined, //executes after unmasking to allow postprocessing of the unmaskedvalue. args => maskedValue, unmaskedValue, opts
  1625. showMaskOnFocus: true, //show the mask-placeholder when the input has focus
  1626. showMaskOnHover: true, //show the mask-placeholder when hovering the empty input
  1627. onKeyValidation: $.noop, //executes on every key-press with the result of isValid. Params: result, opts
  1628. skipOptionalPartCharacter: " ", //a character which can be used to skip an optional part of a mask
  1629. showTooltip: false, //show the activemask as tooltip
  1630. numericInput: false, //numericInput input direction style (input shifts to the left while holding the caret position)
  1631. rightAlign: false, //align to the right
  1632. //numeric basic properties
  1633. radixPoint: "", //".", // | ","
  1634. //numeric basic properties
  1635. nojumps: false, //do not jump over fixed parts in the mask
  1636. nojumpsThreshold: 0, //start nojumps as of
  1637. keepStatic: false, //try to keep the mask static while typing. Decisions to alter the mask will be posponed if possible
  1638. definitions: {
  1639. '9': {
  1640. validator: "[0-9]",
  1641. cardinality: 1,
  1642. definitionSymbol: "*"
  1643. },
  1644. 'a': {
  1645. validator: "[A-Za-z\u0410-\u044F\u0401\u0451\u00C0-\u00FF\u00B5]",
  1646. cardinality: 1,
  1647. definitionSymbol: "*"
  1648. },
  1649. '*': {
  1650. validator: "[0-9A-Za-z\u0410-\u044F\u0401\u0451\u00C0-\u00FF\u00B5]",
  1651. cardinality: 1
  1652. }
  1653. },
  1654. keyCode: {
  1655. ALT: 18, BACKSPACE: 8, 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,
  1656. 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
  1657. },
  1658. //specify keycodes which should not be considered in the keypress event, otherwise the preventDefault will stop their default behavior especially in FF
  1659. 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],
  1660. isComplete: undefined //override for isComplete - args => buffer, opts - return true || false
  1661. },
  1662. masksCache: {},
  1663. escapeRegex: function (str) {
  1664. var specials = ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\'];
  1665. return str.replace(new RegExp('(\\' + specials.join('|\\') + ')', 'gim'), '\\$1');
  1666. },
  1667. format: function (value, options) {
  1668. var opts = $.extend(true, {}, $.inputmask.defaults, options);
  1669. resolveAlias(opts.alias, options, opts);
  1670. return maskScope({ "action": "format", "value": value }, generateMaskSet(opts), opts);
  1671. },
  1672. isValid: function (value, options) {
  1673. var opts = $.extend(true, {}, $.inputmask.defaults, options);
  1674. resolveAlias(opts.alias, options, opts);
  1675. return maskScope({ "action": "isValid", "value": value }, generateMaskSet(opts), opts);
  1676. }
  1677. };
  1678. $.fn.inputmask = function (fn, options, targetScope, targetData, msk) {
  1679. targetScope = targetScope || maskScope;
  1680. targetData = targetData || "_inputmask";
  1681. function importAttributeOptions(npt, opts) {
  1682. var $npt = $(npt);
  1683. for (var option in opts) {
  1684. var optionData = $npt.data("inputmask-" + option.toLowerCase());
  1685. if (optionData != undefined)
  1686. opts[option] = optionData;
  1687. }
  1688. return opts;
  1689. }
  1690. var opts = $.extend(true, {}, $.inputmask.defaults, options),
  1691. maskset;
  1692. if (typeof fn === "string") {
  1693. switch (fn) {
  1694. case "mask":
  1695. //resolve possible aliases given by options
  1696. resolveAlias(opts.alias, options, opts);
  1697. maskset = generateMaskSet(opts, targetScope !== maskScope);
  1698. if (maskset.length == 0) { return this; }
  1699. return this.each(function () {
  1700. targetScope({ "action": "mask", "el": this }, $.extend(true, {}, maskset), importAttributeOptions(this, opts));
  1701. });
  1702. case "unmaskedvalue":
  1703. var $input = $(this);
  1704. if ($input.data(targetData)) {
  1705. return targetScope({ "action": "unmaskedvalue", "$input": $input });
  1706. } else return $input.val();
  1707. case "remove":
  1708. return this.each(function () {
  1709. var $input = $(this);
  1710. if ($input.data(targetData)) {
  1711. targetScope({ "action": "remove", "el": this });
  1712. }
  1713. });
  1714. case "getemptymask": //return the default (empty) mask value, usefull for setting the default value in validation
  1715. if (this.data(targetData)) {
  1716. return targetScope({ "action": "getemptymask", "el": this });
  1717. }
  1718. else return "";
  1719. case "hasMaskedValue": //check wheter the returned value is masked or not; currently only works reliable when using jquery.val fn to retrieve the value
  1720. return this.data(targetData) ? !this.data(targetData)['opts'].autoUnmask : false;
  1721. case "isComplete":
  1722. if (this.data(targetData)) {
  1723. return targetScope({ "action": "isComplete", "buffer": this[0]._valueGet().split(''), "el": this });
  1724. } else return true;
  1725. case "getmetadata": //return mask metadata if exists
  1726. if (this.data(targetData)) {
  1727. maskset = this.data(targetData)['maskset'];
  1728. return maskset['metadata'];
  1729. }
  1730. else return undefined;
  1731. case "_detectScope":
  1732. resolveAlias(opts.alias, options, opts);
  1733. if (msk != undefined && !resolveAlias(msk, options, opts) && $.inArray(msk, ["mask", "unmaskedvalue", "remove", "getemptymask", "hasMaskedValue", "isComplete", "getmetadata", "_detectScope"]) == -1) {
  1734. opts.mask = msk;
  1735. }
  1736. if ($.isFunction(opts.mask)) {
  1737. opts.mask = opts.mask.call(this, opts);
  1738. }
  1739. return $.isArray(opts.mask);
  1740. default:
  1741. resolveAlias(opts.alias, options, opts);
  1742. //check if the fn is an alias
  1743. if (!resolveAlias(fn, options, opts)) {
  1744. //maybe fn is a mask so we try
  1745. //set mask
  1746. opts.mask = fn;
  1747. }
  1748. maskset = generateMaskSet(opts, targetScope !== maskScope);
  1749. if (maskset == undefined) { return this; }
  1750. return this.each(function () {
  1751. targetScope({ "action": "mask", "el": this }, $.extend(true, {}, maskset), importAttributeOptions(this, opts));
  1752. });
  1753. }
  1754. } else if (typeof fn == "object") {
  1755. opts = $.extend(true, {}, $.inputmask.defaults, fn);
  1756. resolveAlias(opts.alias, fn, opts); //resolve aliases
  1757. maskset = generateMaskSet(opts, targetScope !== maskScope);
  1758. if (maskset == undefined) { return this; }
  1759. return this.each(function () {
  1760. targetScope({ "action": "mask", "el": this }, $.extend(true, {}, maskset), importAttributeOptions(this, opts));
  1761. });
  1762. } else if (fn == undefined) {
  1763. //look for data-inputmask atribute - the attribute should only contain optipns
  1764. return this.each(function () {
  1765. var attrOptions = $(this).attr("data-inputmask");
  1766. if (attrOptions && attrOptions != "") {
  1767. try {
  1768. attrOptions = attrOptions.replace(new RegExp("'", "g"), '"');
  1769. var dataoptions = $.parseJSON("{" + attrOptions + "}");
  1770. $.extend(true, dataoptions, options);
  1771. opts = $.extend(true, {}, $.inputmask.defaults, dataoptions);
  1772. resolveAlias(opts.alias, dataoptions, opts);
  1773. opts.alias = undefined;
  1774. $(this).inputmask("mask", opts, targetScope);
  1775. } catch (ex) { } //need a more relax parseJSON
  1776. }
  1777. });
  1778. }
  1779. };
  1780. }
  1781. }));