inputmask.js 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880
  1. /*
  2. * Input Mask Core
  3. * http://github.com/RobinHerbots/jquery.inputmask
  4. * Copyright (c) 2010 - Robin Herbots
  5. * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  6. * Version: 0.0.0-dev
  7. */
  8. (function (factory) {
  9. if (typeof define === "function" && define.amd) {
  10. define(["inputmask.dependencyLib"], factory);
  11. } else if (typeof exports === "object") {
  12. module.exports = factory(require("./inputmask.dependencyLib.jquery"));
  13. } else {
  14. factory(window.dependencyLib || jQuery);
  15. }
  16. }
  17. (function ($) {
  18. function Inputmask(alias, options) {
  19. //allow instanciating without new
  20. if (!(this instanceof Inputmask)) {
  21. return new Inputmask(alias, options);
  22. }
  23. if ($.isPlainObject(alias)) {
  24. options = alias;
  25. } else {
  26. options = options || {};
  27. options.alias = alias;
  28. }
  29. this.el = undefined;
  30. //init options
  31. this.opts = $.extend(true, {}, this.defaults, options);
  32. this.noMasksCache = options && options.definitions !== undefined;
  33. this.userOptions = options || {}; //user passed options
  34. this.events = {};
  35. resolveAlias(this.opts.alias, options, this.opts);
  36. }
  37. Inputmask.prototype = {
  38. //options default
  39. defaults: {
  40. placeholder: "_",
  41. optionalmarker: {
  42. start: "[",
  43. end: "]"
  44. },
  45. quantifiermarker: {
  46. start: "{",
  47. end: "}"
  48. },
  49. groupmarker: {
  50. start: "(",
  51. end: ")"
  52. },
  53. alternatormarker: "|",
  54. escapeChar: "\\",
  55. mask: null, //needs tobe null instead of undefined as the extend method does not consider props with the undefined value
  56. oncomplete: $.noop, //executes when the mask is complete
  57. onincomplete: $.noop, //executes when the mask is incomplete and focus is lost
  58. oncleared: $.noop, //executes when the mask is cleared
  59. repeat: 0, //repetitions of the mask: * ~ forever, otherwise specify an integer
  60. greedy: true, //true: allocated buffer for the mask and repetitions - false: allocate only if needed
  61. autoUnmask: false, //automatically unmask when retrieving the value with $.fn.val or value if the browser supports __lookupGetter__ or getOwnPropertyDescriptor
  62. removeMaskOnSubmit: false, //remove the mask before submitting the form.
  63. clearMaskOnLostFocus: true,
  64. insertMode: true, //insert the input or overwrite the input
  65. clearIncomplete: false, //clear the incomplete input on blur
  66. aliases: {}, //aliases definitions => see jquery.inputmask.extensions.js
  67. alias: null,
  68. onKeyDown: $.noop, //callback to implement autocomplete on certain keys for example. args => event, buffer, caretPos, opts
  69. onBeforeMask: null, //executes before masking the initial value to allow preprocessing of the initial value. args => initialValue, opts => return processedValue
  70. onBeforePaste: function (pastedValue, opts) {
  71. return $.isFunction(opts.onBeforeMask) ? opts.onBeforeMask(pastedValue, opts) : pastedValue;
  72. }, //executes before masking the pasted value to allow preprocessing of the pasted value. args => pastedValue, opts => return processedValue
  73. onBeforeWrite: null, //executes before writing to the masked element. args => event, opts
  74. onUnMask: null, //executes after unmasking to allow postprocessing of the unmaskedvalue. args => maskedValue, unmaskedValue, opts
  75. showMaskOnFocus: true, //show the mask-placeholder when the input has focus
  76. showMaskOnHover: true, //show the mask-placeholder when hovering the empty input
  77. onKeyValidation: $.noop, //executes on every key-press with the result of isValid. Params: key, result, opts
  78. skipOptionalPartCharacter: " ", //a character which can be used to skip an optional part of a mask
  79. showTooltip: false, //show the activemask as tooltip
  80. tooltip: undefined, //tooltip to show
  81. numericInput: false, //numericInput input direction style (input shifts to the left while holding the caret position)
  82. rightAlign: false, //align to the right
  83. undoOnEscape: true, //pressing escape reverts the value to the value before focus
  84. //numeric basic properties
  85. radixPoint: "", //".", // | ","
  86. radixPointDefinitionSymbol: undefined, //set the radixPoint definitionSymbol ~ used for awareness of the radixpoint
  87. groupSeparator: "", //",", // | "."
  88. //numeric basic properties
  89. keepStatic: null, //try to keep the mask static while typing. Decisions to alter the mask will be posponed if possible - null see auto selection for multi masks
  90. positionCaretOnTab: true, //when enabled the caret position is set after the latest valid position on TAB
  91. tabThrough: false, //allows for tabbing through the different parts of the masked field
  92. supportsInputType: ["text", "tel", "password"], //list with the supported input types
  93. definitions: {
  94. "9": {
  95. validator: "[0-9]",
  96. cardinality: 1,
  97. definitionSymbol: "*"
  98. },
  99. "a": {
  100. validator: "[A-Za-z\u0410-\u044F\u0401\u0451\u00C0-\u00FF\u00B5]",
  101. cardinality: 1,
  102. definitionSymbol: "*"
  103. },
  104. "*": {
  105. validator: "[0-9A-Za-z\u0410-\u044F\u0401\u0451\u00C0-\u00FF\u00B5]",
  106. cardinality: 1
  107. }
  108. },
  109. //specify keyCodes which should not be considered in the keypress event, otherwise the preventDefault will stop their default behavior especially in FF
  110. 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],
  111. isComplete: null, //override for isComplete - args => buffer, opts - return true || false
  112. canClearPosition: $.noop, //hook to alter the clear behavior in the stripValidPositions args => maskset, position, lastValidPosition, opts => return true|false
  113. postValidation: null, //hook to postValidate the result from isValid. Usefull for validating the entry as a whole. args => buffer, currentResult, opts => return true/false
  114. staticDefinitionSymbol: undefined, //specify a definitionSymbol for static content, used to make matches for alternators
  115. jitMasking: false, //just in time masking ~ only mask while typing, can n (number), true or false
  116. nullable: true, //return nothing instead of the buffertemplate when the user hasn't entered anything.
  117. inputEventOnly: false, //testing inputfallback behavior
  118. positionCaretOnClick: "lvp" //none, lvp (based on the last valid position (default), radixFocus (position caret to radixpoint on initial click)
  119. },
  120. masksCache: {},
  121. mask: function (elems) {
  122. var that = this;
  123. if (typeof elems === "string") {
  124. elems = document.getElementById(elems) || document.querySelectorAll(elems);
  125. }
  126. elems = elems.nodeName ? [elems] : elems;
  127. $.each(elems, function (ndx, el) {
  128. var scopedOpts = $.extend(true, {}, that.opts);
  129. importAttributeOptions(el, scopedOpts, $.extend(true, {}, that.userOptions));
  130. var maskset = generateMaskSet(scopedOpts, that.noMasksCache);
  131. if (maskset !== undefined) {
  132. if (el.inputmask !== undefined) {
  133. el.inputmask.remove();
  134. }
  135. //store inputmask instance on the input with element reference
  136. el.inputmask = new Inputmask();
  137. el.inputmask.opts = scopedOpts;
  138. el.inputmask.noMasksCache = that.noMasksCache;
  139. el.inputmask.userOptions = $.extend(true, {}, that.userOptions);
  140. el.inputmask.el = el;
  141. el.inputmask.maskset = maskset;
  142. el.inputmask.isRTL = false;
  143. $.data(el, "_inputmask_opts", scopedOpts);
  144. maskScope({
  145. "action": "mask",
  146. "el": el
  147. });
  148. }
  149. });
  150. return elems && elems[0] ? (elems[0].inputmask || this) : this;
  151. },
  152. option: function (options, noremask) { //set extra options || retrieve value of a current option
  153. if (typeof options === "string") {
  154. return this.opts[options];
  155. } else if (typeof options === "object") {
  156. $.extend(this.userOptions, options); //user passed options
  157. //remask
  158. if (this.el && noremask !== true) {
  159. this.mask(this.el);
  160. }
  161. return this;
  162. }
  163. },
  164. unmaskedvalue: function (value) {
  165. return maskScope({
  166. "action": "unmaskedvalue",
  167. "el": this.el,
  168. "value": value
  169. }, this.el && this.el.inputmask ? this.el.inputmask.maskset : generateMaskSet(this.opts, this.noMasksCache), this.opts);
  170. },
  171. remove: function () {
  172. if (this.el) {
  173. maskScope({
  174. "action": "remove",
  175. "el": this.el
  176. });
  177. this.el.inputmask = undefined; //delete ~ undefined
  178. return this.el;
  179. }
  180. },
  181. getemptymask: function () { //return the default (empty) mask value, usefull for setting the default value in validation
  182. return maskScope({
  183. "action": "getemptymask"
  184. }, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
  185. },
  186. hasMaskedValue: function () { //check wheter the returned value is masked or not; currently only works reliable when using jquery.val fn to retrieve the value
  187. return !this.opts.autoUnmask;
  188. },
  189. isComplete: function () {
  190. return maskScope({
  191. "action": "isComplete",
  192. "el": this.el //optional
  193. }, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
  194. },
  195. getmetadata: function () { //return mask metadata if exists
  196. return maskScope({
  197. "action": "getmetadata"
  198. }, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
  199. },
  200. isValid: function (value) {
  201. return maskScope({
  202. "action": "isValid",
  203. "value": value
  204. }, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
  205. },
  206. format: function (value, metadata) {
  207. return maskScope({
  208. "action": "format",
  209. "value": value,
  210. "metadata": metadata //true/false getmetadata
  211. }, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
  212. }
  213. };
  214. //apply defaults, definitions, aliases
  215. Inputmask.extendDefaults = function (options) {
  216. $.extend(true, Inputmask.prototype.defaults, options);
  217. };
  218. Inputmask.extendDefinitions = function (definition) {
  219. $.extend(true, Inputmask.prototype.defaults.definitions, definition);
  220. };
  221. Inputmask.extendAliases = function (alias) {
  222. $.extend(true, Inputmask.prototype.defaults.aliases, alias);
  223. };
  224. //static fn on inputmask
  225. Inputmask.format = function (value, options, metadata) {
  226. return Inputmask(options).format(value, metadata);
  227. };
  228. Inputmask.unmask = function (value, options) {
  229. return Inputmask(options).unmaskedvalue(value);
  230. };
  231. Inputmask.isValid = function (value, options) {
  232. return Inputmask(options).isValid(value);
  233. };
  234. Inputmask.remove = function (elems) {
  235. $.each(elems, function (ndx, el) {
  236. if (el.inputmask) el.inputmask.remove();
  237. });
  238. };
  239. Inputmask.escapeRegex = function (str) {
  240. var specials = ["/", ".", "*", "+", "?", "|", "(", ")", "[", "]", "{", "}", "\\", "$", "^"];
  241. return str.replace(new RegExp("(\\" + specials.join("|\\") + ")", "gim"), "\\$1");
  242. };
  243. Inputmask.keyCode = {
  244. ALT: 18,
  245. BACKSPACE: 8,
  246. BACKSPACE_SAFARI: 127,
  247. CAPS_LOCK: 20,
  248. COMMA: 188,
  249. COMMAND: 91,
  250. COMMAND_LEFT: 91,
  251. COMMAND_RIGHT: 93,
  252. CONTROL: 17,
  253. DELETE: 46,
  254. DOWN: 40,
  255. END: 35,
  256. ENTER: 13,
  257. ESCAPE: 27,
  258. HOME: 36,
  259. INSERT: 45,
  260. LEFT: 37,
  261. MENU: 93,
  262. NUMPAD_ADD: 107,
  263. NUMPAD_DECIMAL: 110,
  264. NUMPAD_DIVIDE: 111,
  265. NUMPAD_ENTER: 108,
  266. NUMPAD_MULTIPLY: 106,
  267. NUMPAD_SUBTRACT: 109,
  268. PAGE_DOWN: 34,
  269. PAGE_UP: 33,
  270. PERIOD: 190,
  271. RIGHT: 39,
  272. SHIFT: 16,
  273. SPACE: 32,
  274. TAB: 9,
  275. UP: 38,
  276. WINDOWS: 91,
  277. X: 88
  278. };
  279. //helper functions
  280. function isInputEventSupported(eventName) {
  281. var el = document.createElement("input"),
  282. evName = "on" + eventName,
  283. isSupported = (evName in el);
  284. if (!isSupported) {
  285. el.setAttribute(evName, "return;");
  286. isSupported = typeof el[evName] == "function";
  287. }
  288. el = null;
  289. return isSupported;
  290. }
  291. function isElementTypeSupported(input, opts) {
  292. var elementType = input.getAttribute("type");
  293. var isSupported = (input.tagName === "INPUT" && $.inArray(elementType, opts.supportsInputType) !== -1) || input.isContentEditable || input.tagName === "TEXTAREA";
  294. if (!isSupported && input.tagName === "INPUT") {
  295. var el = document.createElement("input");
  296. el.setAttribute("type", elementType);
  297. isSupported = el.type === "text"; //apply mask only if the type is not natively supported
  298. el = null;
  299. }
  300. return isSupported;
  301. }
  302. function resolveAlias(aliasStr, options, opts) {
  303. var aliasDefinition = opts.aliases[aliasStr];
  304. if (aliasDefinition) {
  305. if (aliasDefinition.alias) resolveAlias(aliasDefinition.alias, undefined, opts); //alias is another alias
  306. $.extend(true, opts, aliasDefinition); //merge alias definition in the options
  307. $.extend(true, opts, options); //reapply extra given options
  308. return true;
  309. } else //alias not found - try as mask
  310. if (opts.mask === null) {
  311. opts.mask = aliasStr;
  312. }
  313. return false;
  314. }
  315. function importAttributeOptions(npt, opts, userOptions) {
  316. var attrOptions = npt.getAttribute("data-inputmask"),
  317. option, dataoptions, optionData, p;
  318. function importOption(option, optionData) {
  319. optionData = optionData !== undefined ? optionData : npt.getAttribute("data-inputmask-" + option);
  320. if (optionData !== null) {
  321. if (typeof optionData === "string") {
  322. if (option.indexOf("on") === 0) optionData = window[optionData]; //get function definition
  323. else if (optionData === "false") optionData = false;
  324. else if (optionData === "true") optionData = true;
  325. }
  326. userOptions[option] = optionData;
  327. }
  328. }
  329. if (attrOptions && attrOptions !== "") {
  330. attrOptions = attrOptions.replace(new RegExp("'", "g"), '"');
  331. dataoptions = JSON.parse("{" + attrOptions + "}");
  332. }
  333. //resolve aliases
  334. if (dataoptions) { //pickup alias from data-inputmask
  335. optionData = undefined;
  336. for (p in dataoptions) {
  337. if (p.toLowerCase() === "alias") {
  338. optionData = dataoptions[p];
  339. break;
  340. }
  341. }
  342. }
  343. importOption("alias", optionData); //pickup alias from data-inputmask-alias
  344. if (userOptions.alias) {
  345. resolveAlias(userOptions.alias, userOptions, opts);
  346. }
  347. for (option in opts) {
  348. if (dataoptions) {
  349. optionData = undefined;
  350. for (p in dataoptions) {
  351. if (p.toLowerCase() === option.toLowerCase()) {
  352. optionData = dataoptions[p];
  353. break;
  354. }
  355. }
  356. }
  357. importOption(option, optionData);
  358. }
  359. $.extend(true, opts, userOptions);
  360. return opts;
  361. }
  362. function generateMaskSet(opts, nocache) {
  363. var ms;
  364. function analyseMask(mask) {
  365. var tokenizer = /(?:[?*+]|\{[0-9\+\*]+(?:,[0-9\+\*]*)?\})|[^.?*+^${[]()|\\]+|./g,
  366. escaped = false,
  367. currentToken = new MaskToken(),
  368. match,
  369. m,
  370. openenings = [],
  371. maskTokens = [],
  372. openingToken,
  373. currentOpeningToken,
  374. alternator,
  375. lastMatch,
  376. groupToken;
  377. function MaskToken(isGroup, isOptional, isQuantifier, isAlternator) {
  378. this.matches = [];
  379. this.isGroup = isGroup || false;
  380. this.isOptional = isOptional || false;
  381. this.isQuantifier = isQuantifier || false;
  382. this.isAlternator = isAlternator || false;
  383. this.quantifier = {
  384. min: 1,
  385. max: 1
  386. };
  387. }
  388. //test definition => {fn: RegExp/function, cardinality: int, optionality: bool, newBlockMarker: bool, casing: null/upper/lower, def: definitionSymbol, placeholder: placeholder, mask: real maskDefinition}
  389. function insertTestDefinition(mtoken, element, position) {
  390. var maskdef = opts.definitions[element];
  391. position = position !== undefined ? position : mtoken.matches.length;
  392. var prevMatch = mtoken.matches[position - 1];
  393. if (maskdef && !escaped) {
  394. maskdef.placeholder = $.isFunction(maskdef.placeholder) ? maskdef.placeholder(opts) : maskdef.placeholder;
  395. var prevalidators = maskdef.prevalidator,
  396. prevalidatorsL = prevalidators ? prevalidators.length : 0;
  397. //handle prevalidators
  398. for (var i = 1; i < maskdef.cardinality; i++) {
  399. var prevalidator = prevalidatorsL >= i ? prevalidators[i - 1] : [],
  400. validator = prevalidator.validator,
  401. cardinality = prevalidator.cardinality;
  402. mtoken.matches.splice(position++, 0, {
  403. fn: validator ? typeof validator === "string" ? new RegExp(validator) : new function () {
  404. this.test = validator;
  405. } : new RegExp("."),
  406. cardinality: cardinality ? cardinality : 1,
  407. optionality: mtoken.isOptional,
  408. newBlockMarker: prevMatch === undefined || prevMatch.def !== (maskdef.definitionSymbol || element),
  409. casing: maskdef.casing,
  410. def: maskdef.definitionSymbol || element,
  411. placeholder: maskdef.placeholder,
  412. mask: element
  413. });
  414. prevMatch = mtoken.matches[position - 1];
  415. }
  416. mtoken.matches.splice(position++, 0, {
  417. fn: maskdef.validator ? typeof maskdef.validator == "string" ? new RegExp(maskdef.validator) : new function () {
  418. this.test = maskdef.validator;
  419. } : new RegExp("."),
  420. cardinality: maskdef.cardinality,
  421. optionality: mtoken.isOptional,
  422. newBlockMarker: prevMatch === undefined || prevMatch.def !== (maskdef.definitionSymbol || element),
  423. casing: maskdef.casing,
  424. def: maskdef.definitionSymbol || element,
  425. placeholder: maskdef.placeholder,
  426. mask: element
  427. });
  428. } else {
  429. mtoken.matches.splice(position++, 0, {
  430. fn: null,
  431. cardinality: 0,
  432. optionality: mtoken.isOptional,
  433. newBlockMarker: prevMatch === undefined || prevMatch.def !== element,
  434. casing: null,
  435. def: opts.staticDefinitionSymbol || element,
  436. placeholder: opts.staticDefinitionSymbol !== undefined ? element : undefined,
  437. mask: element
  438. });
  439. escaped = false;
  440. }
  441. }
  442. function verifyGroupMarker(lastMatch, isOpenGroup) {
  443. if (lastMatch.isGroup) { //this is not a group but a normal mask => convert
  444. lastMatch.isGroup = false;
  445. insertTestDefinition(lastMatch, opts.groupmarker.start, 0);
  446. if (isOpenGroup !== true) {
  447. insertTestDefinition(lastMatch, opts.groupmarker.end);
  448. }
  449. }
  450. }
  451. function maskCurrentToken(m, currentToken, lastMatch, extraCondition) {
  452. if (currentToken.matches.length > 0 && (extraCondition === undefined || extraCondition)) {
  453. lastMatch = currentToken.matches[currentToken.matches.length - 1];
  454. verifyGroupMarker(lastMatch);
  455. }
  456. insertTestDefinition(currentToken, m);
  457. }
  458. function defaultCase() {
  459. if (openenings.length > 0) {
  460. currentOpeningToken = openenings[openenings.length - 1];
  461. maskCurrentToken(m, currentOpeningToken, lastMatch, !currentOpeningToken.isAlternator);
  462. if (currentOpeningToken.isAlternator) { //handle alternator a | b case
  463. alternator = openenings.pop();
  464. for (var mndx = 0; mndx < alternator.matches.length; mndx++) {
  465. alternator.matches[mndx].isGroup = false; //don't mark alternate groups as group
  466. }
  467. if (openenings.length > 0) {
  468. currentOpeningToken = openenings[openenings.length - 1];
  469. currentOpeningToken.matches.push(alternator);
  470. } else {
  471. currentToken.matches.push(alternator);
  472. }
  473. }
  474. } else {
  475. maskCurrentToken(m, currentToken, lastMatch);
  476. }
  477. }
  478. function reverseTokens(maskToken) {
  479. function reverseStatic(st) {
  480. if (st === opts.optionalmarker.start) st = opts.optionalmarker.end;
  481. else if (st === opts.optionalmarker.end) st = opts.optionalmarker.start;
  482. else if (st === opts.groupmarker.start) st = opts.groupmarker.end;
  483. else if (st === opts.groupmarker.end) st = opts.groupmarker.start;
  484. return st;
  485. }
  486. maskToken.matches = maskToken.matches.reverse();
  487. for (var match in maskToken.matches) {
  488. var intMatch = parseInt(match);
  489. if (maskToken.matches[match].isQuantifier && maskToken.matches[intMatch + 1] && maskToken.matches[intMatch + 1].isGroup) { //reposition quantifier
  490. var qt = maskToken.matches[match];
  491. maskToken.matches.splice(match, 1);
  492. maskToken.matches.splice(intMatch + 1, 0, qt);
  493. }
  494. if (maskToken.matches[match].matches !== undefined) {
  495. maskToken.matches[match] = reverseTokens(maskToken.matches[match]);
  496. } else {
  497. maskToken.matches[match] = reverseStatic(maskToken.matches[match]);
  498. }
  499. }
  500. return maskToken;
  501. }
  502. while (match = tokenizer.exec(mask)) {
  503. m = match[0];
  504. if (escaped) {
  505. defaultCase();
  506. continue;
  507. }
  508. switch (m.charAt(0)) {
  509. case opts.escapeChar:
  510. escaped = true;
  511. break;
  512. case opts.optionalmarker.end:
  513. // optional closing
  514. case opts.groupmarker.end:
  515. // Group closing
  516. openingToken = openenings.pop();
  517. if (openingToken !== undefined) {
  518. if (openenings.length > 0) {
  519. currentOpeningToken = openenings[openenings.length - 1];
  520. currentOpeningToken.matches.push(openingToken);
  521. if (currentOpeningToken.isAlternator) { //handle alternator (a) | (b) case
  522. alternator = openenings.pop();
  523. for (var mndx = 0; mndx < alternator.matches.length; mndx++) {
  524. alternator.matches[mndx].isGroup = false; //don't mark alternate groups as group
  525. }
  526. if (openenings.length > 0) {
  527. currentOpeningToken = openenings[openenings.length - 1];
  528. currentOpeningToken.matches.push(alternator);
  529. } else {
  530. currentToken.matches.push(alternator);
  531. }
  532. }
  533. } else {
  534. currentToken.matches.push(openingToken);
  535. }
  536. } else defaultCase();
  537. break;
  538. case opts.optionalmarker.start:
  539. // optional opening
  540. openenings.push(new MaskToken(false, true));
  541. break;
  542. case opts.groupmarker.start:
  543. // Group opening
  544. openenings.push(new MaskToken(true));
  545. break;
  546. case opts.quantifiermarker.start:
  547. //Quantifier
  548. var quantifier = new MaskToken(false, false, true);
  549. m = m.replace(/[{}]/g, "");
  550. var mq = m.split(","),
  551. mq0 = isNaN(mq[0]) ? mq[0] : parseInt(mq[0]),
  552. mq1 = mq.length === 1 ? mq0 : (isNaN(mq[1]) ? mq[1] : parseInt(mq[1]));
  553. if (mq1 === "*" || mq1 === "+") {
  554. mq0 = mq1 === "*" ? 0 : 1;
  555. }
  556. quantifier.quantifier = {
  557. min: mq0,
  558. max: mq1
  559. };
  560. if (openenings.length > 0) {
  561. var matches = openenings[openenings.length - 1].matches;
  562. match = matches.pop();
  563. if (!match.isGroup) {
  564. groupToken = new MaskToken(true);
  565. groupToken.matches.push(match);
  566. match = groupToken;
  567. }
  568. matches.push(match);
  569. matches.push(quantifier);
  570. } else {
  571. match = currentToken.matches.pop();
  572. if (!match.isGroup) {
  573. groupToken = new MaskToken(true);
  574. groupToken.matches.push(match);
  575. match = groupToken;
  576. }
  577. currentToken.matches.push(match);
  578. currentToken.matches.push(quantifier);
  579. }
  580. break;
  581. case opts.alternatormarker:
  582. if (openenings.length > 0) {
  583. currentOpeningToken = openenings[openenings.length - 1];
  584. lastMatch = currentOpeningToken.matches.pop();
  585. } else {
  586. lastMatch = currentToken.matches.pop();
  587. }
  588. if (lastMatch.isAlternator) {
  589. openenings.push(lastMatch);
  590. } else {
  591. alternator = new MaskToken(false, false, false, true);
  592. alternator.matches.push(lastMatch);
  593. openenings.push(alternator);
  594. }
  595. break;
  596. default:
  597. defaultCase();
  598. }
  599. }
  600. while (openenings.length > 0) {
  601. openingToken = openenings.pop();
  602. verifyGroupMarker(openingToken, true);
  603. currentToken.matches.push(openingToken);
  604. }
  605. if (currentToken.matches.length > 0) {
  606. lastMatch = currentToken.matches[currentToken.matches.length - 1];
  607. verifyGroupMarker(lastMatch);
  608. maskTokens.push(currentToken);
  609. }
  610. if (opts.numericInput) {
  611. reverseTokens(maskTokens[0]);
  612. }
  613. // console.log(JSON.stringify(maskTokens));
  614. return maskTokens;
  615. }
  616. function generateMask(mask, metadata) {
  617. if (mask === null || mask === "") {
  618. return undefined;
  619. } else {
  620. if (mask.length === 1 && opts.greedy === false && opts.repeat !== 0) {
  621. opts.placeholder = "";
  622. } //hide placeholder with single non-greedy mask
  623. if (opts.repeat > 0 || opts.repeat === "*" || opts.repeat === "+") {
  624. var repeatStart = opts.repeat === "*" ? 0 : (opts.repeat === "+" ? 1 : opts.repeat);
  625. mask = opts.groupmarker.start + mask + opts.groupmarker.end + opts.quantifiermarker.start + repeatStart + "," + opts.repeat + opts.quantifiermarker.end;
  626. }
  627. // console.log(mask);
  628. var masksetDefinition;
  629. if (Inputmask.prototype.masksCache[mask] === undefined || nocache === true) {
  630. masksetDefinition = {
  631. "mask": mask,
  632. "maskToken": analyseMask(mask),
  633. "validPositions": {},
  634. "_buffer": undefined,
  635. "buffer": undefined,
  636. "tests": {},
  637. "metadata": metadata,
  638. maskLength: undefined
  639. };
  640. if (nocache !== true) {
  641. Inputmask.prototype.masksCache[opts.numericInput ? mask.split("").reverse().join("") : mask] = masksetDefinition;
  642. masksetDefinition = $.extend(true, {}, Inputmask.prototype.masksCache[opts.numericInput ? mask.split("").reverse().join("") : mask]);
  643. }
  644. } else masksetDefinition = $.extend(true, {}, Inputmask.prototype.masksCache[opts.numericInput ? mask.split("").reverse().join("") : mask]);
  645. return masksetDefinition;
  646. }
  647. }
  648. function preProcessMask(mask) {
  649. mask = mask.toString();
  650. // if (opts.numericInput) {
  651. // mask = mask.split('').reverse();
  652. // mask = mask.join('');
  653. // }
  654. return mask;
  655. }
  656. if ($.isFunction(opts.mask)) { //allow mask to be a preprocessing fn - should return a valid mask
  657. opts.mask = opts.mask(opts);
  658. }
  659. if ($.isArray(opts.mask)) {
  660. if (opts.mask.length > 1) {
  661. opts.keepStatic = opts.keepStatic === null ? true : opts.keepStatic; //enable by default when passing multiple masks when the option is not explicitly specified
  662. var altMask = "(";
  663. $.each(opts.numericInput ? opts.mask.reverse() : opts.mask, function (ndx, msk) {
  664. if (altMask.length > 1) {
  665. altMask += ")|(";
  666. }
  667. if (msk.mask !== undefined && !$.isFunction(msk.mask)) {
  668. altMask += preProcessMask(msk.mask);
  669. } else {
  670. altMask += preProcessMask(msk);
  671. }
  672. });
  673. altMask += ")";
  674. return generateMask(altMask, opts.mask);
  675. } else opts.mask = opts.mask.pop();
  676. }
  677. if (opts.mask) {
  678. if (opts.mask.mask !== undefined && !$.isFunction(opts.mask.mask)) {
  679. ms = generateMask(preProcessMask(opts.mask.mask), opts.mask);
  680. } else {
  681. ms = generateMask(preProcessMask(opts.mask), opts.mask);
  682. }
  683. }
  684. return ms;
  685. }
  686. var ua = navigator.userAgent,
  687. mobile = /mobile/i.test(ua),
  688. iemobile = /iemobile/i.test(ua),
  689. iphone = /iphone/i.test(ua) && !iemobile;
  690. //android = /android.*safari.*/i.test(ua) && !iemobile;
  691. //masking scope
  692. //actionObj definition see below
  693. function maskScope(actionObj, maskset, opts) {
  694. var isRTL = false,
  695. undoValue,
  696. el, $el,
  697. skipKeyPressEvent = false, //Safari 5.1.x - modal dialog fires keypress twice workaround
  698. skipInputEvent = false, //skip when triggered from within inputmask
  699. ignorable = false,
  700. maxLength,
  701. mouseEnter = true;
  702. //maskset helperfunctions
  703. function getMaskTemplate(baseOnInput, minimalPos, includeInput) {
  704. minimalPos = minimalPos || 0;
  705. var maskTemplate = [],
  706. ndxIntlzr, pos = 0,
  707. test, testPos, lvp = getLastValidPosition();
  708. maxLength = el !== undefined ? el.maxLength : undefined;
  709. if (maxLength === -1) maxLength = undefined;
  710. do {
  711. if (baseOnInput === true && getMaskSet().validPositions[pos]) {
  712. var validPos = getMaskSet().validPositions[pos];
  713. test = validPos.match;
  714. ndxIntlzr = validPos.locator.slice();
  715. maskTemplate.push(includeInput === true ? validPos.input : getPlaceholder(pos, test));
  716. } else {
  717. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  718. test = testPos.match;
  719. ndxIntlzr = testPos.locator.slice();
  720. if (opts.jitMasking === false || pos < lvp || (isFinite(opts.jitMasking) && opts.jitMasking > pos)) {
  721. maskTemplate.push(getPlaceholder(pos, test));
  722. }
  723. }
  724. pos++;
  725. } while ((maxLength === undefined || pos < maxLength) && (test.fn !== null || test.def !== "") || minimalPos > pos);
  726. if (maskTemplate[maskTemplate.length - 1] === "") {
  727. maskTemplate.pop(); //drop the last one which is empty
  728. }
  729. getMaskSet().maskLength = pos + 1;
  730. return maskTemplate;
  731. }
  732. function getMaskSet() {
  733. return maskset;
  734. }
  735. function resetMaskSet(soft) {
  736. var maskset = getMaskSet();
  737. maskset.buffer = undefined;
  738. if (soft !== true) {
  739. maskset._buffer = undefined;
  740. maskset.validPositions = {};
  741. maskset.p = 0;
  742. }
  743. }
  744. function getLastValidPosition(closestTo, strict, validPositions) {
  745. var before = -1,
  746. after = -1,
  747. valids = validPositions || getMaskSet().validPositions; //for use in valhook ~ context switch
  748. if (closestTo === undefined) closestTo = -1;
  749. for (var posNdx in valids) {
  750. var psNdx = parseInt(posNdx);
  751. if (valids[psNdx] && (strict || valids[psNdx].match.fn !== null)) {
  752. if (psNdx <= closestTo) before = psNdx;
  753. if (psNdx >= closestTo) after = psNdx;
  754. }
  755. }
  756. return (before !== -1 && (closestTo - before) > 1) || after < closestTo ? before : after;
  757. }
  758. function setValidPosition(pos, validTest, fromSetValid, isSelection) {
  759. if (isSelection || (opts.insertMode && getMaskSet().validPositions[pos] !== undefined && fromSetValid === undefined)) {
  760. //reposition & revalidate others
  761. var positionsClone = $.extend(true, {}, getMaskSet().validPositions),
  762. lvp = getLastValidPosition(),
  763. i;
  764. for (i = pos; i <= lvp; i++) { //clear selection
  765. delete getMaskSet().validPositions[i];
  766. }
  767. getMaskSet().validPositions[pos] = $.extend(true, {}, validTest);
  768. var valid = true,
  769. j, vps = getMaskSet().validPositions, needsValidation = false;
  770. for (i = (j = pos); i <= lvp; i++) {
  771. var t = positionsClone[i];
  772. if (t !== undefined) {
  773. var posMatch = j,
  774. prevPosMatch = -1;
  775. while (posMatch < getMaskSet().maskLength && ((t.match.fn == null && vps[i] && (vps[i].match.optionalQuantifier === true || vps[i].match.optionality === true)) || t.match.fn != null)) {
  776. //determine next position
  777. //if (t.match.fn === null || (!opts.keepStatic && vps[i] && (vps[i + 1] !== undefined && getTests(i + 1, vps[i].locator.slice(), i).length > 1 || vps[i].alternation !== undefined))) {
  778. posMatch++;
  779. //} else posMatch = seekNext(j);
  780. if (needsValidation === false && positionsClone[posMatch] && positionsClone[posMatch].match.def === t.match.def) { //obvious match
  781. getMaskSet().validPositions[posMatch] = $.extend(true, {}, positionsClone[posMatch]);
  782. getMaskSet().validPositions[posMatch].input = t.input;
  783. j = posMatch;
  784. valid = true;
  785. break;
  786. } else if (positionCanMatchDefinition(posMatch, t.match.def)) { //validated match
  787. var result = isValid(posMatch, t.input, true, true);
  788. valid = result !== false;
  789. j = (result.caret || result.insert) ? getLastValidPosition() : posMatch;
  790. needsValidation = true;
  791. if (valid) break;
  792. } else {
  793. valid = t.match.fn == null;
  794. if (prevPosMatch === posMatch) break; //prevent endless loop
  795. prevPosMatch = posMatch;
  796. }
  797. }
  798. }
  799. if (!valid) break;
  800. }
  801. if (!valid) {
  802. getMaskSet().validPositions = $.extend(true, {}, positionsClone);
  803. resetMaskSet(true);
  804. return false;
  805. }
  806. }
  807. else
  808. getMaskSet().validPositions[pos] = $.extend(true, {}, validTest);
  809. ;
  810. resetMaskSet(true);
  811. return true;
  812. }
  813. function stripValidPositions(start, end, nocheck, strict) {
  814. function IsEnclosedStatic(pos) {
  815. var posMatch = getMaskSet().validPositions[pos];
  816. if (posMatch !== undefined && posMatch.match.fn === null) {
  817. var prevMatch = getMaskSet().validPositions[pos - 1],
  818. nextMatch = getMaskSet().validPositions[pos + 1];
  819. return prevMatch !== undefined && nextMatch !== undefined;
  820. }
  821. return false;
  822. }
  823. var i, startPos = start,
  824. positionsClone = $.extend(true, {}, getMaskSet().validPositions), needsValidation = false;
  825. getMaskSet().p = start; //needed for alternated position after overtype selection
  826. for (i = end - 1; i >= startPos; i--) { //clear selection
  827. if (getMaskSet().validPositions[i] !== undefined) {
  828. if (nocheck === true ||
  829. (!IsEnclosedStatic(i) && opts.canClearPosition(getMaskSet(), i, getLastValidPosition(), strict, opts) !== false)) {
  830. delete getMaskSet().validPositions[i];
  831. }
  832. }
  833. }
  834. //clear buffer
  835. resetMaskSet(true);
  836. for (i = startPos + 1; i <= getLastValidPosition();) {
  837. while (getMaskSet().validPositions[startPos] !== undefined) startPos++;
  838. var s = getMaskSet().validPositions[startPos];
  839. if (i < startPos) i = startPos + 1;
  840. // while (getMaskSet().validPositions[i] == undefined) i++;
  841. if ((getMaskSet().validPositions[i] !== undefined || !isMask(i)) && s === undefined) {
  842. var t = getTestTemplate(i);
  843. if (needsValidation === false && positionsClone[startPos] && positionsClone[startPos].match.def === t.match.def) { //obvious match
  844. getMaskSet().validPositions[startPos] = $.extend(true, {}, positionsClone[startPos]);
  845. getMaskSet().validPositions[startPos].input = t.input;
  846. delete getMaskSet().validPositions[i];
  847. i++;
  848. } else if (positionCanMatchDefinition(startPos, t.match.def)) {
  849. if (isValid(startPos, t.input || getPlaceholder(i), true) !== false) {
  850. delete getMaskSet().validPositions[i];
  851. i++;
  852. needsValidation = true;
  853. }
  854. } else if (!isMask(i)) {
  855. i++;
  856. startPos--;
  857. }
  858. startPos++;
  859. } else i++;
  860. }
  861. resetMaskSet(true);
  862. }
  863. function determineTestTemplate(tests, ignoreGreedy) {
  864. var testPos;
  865. var testPositions = tests,
  866. lvp = getLastValidPosition(),
  867. lvTest = getMaskSet().validPositions[lvp] || getTests(0)[0],
  868. lvTestAltArr = (lvTest.alternation !== undefined) ? lvTest.locator[lvTest.alternation].toString().split(",") : [];
  869. for (var ndx = 0; ndx < testPositions.length; ndx++) {
  870. testPos = testPositions[ndx];
  871. if (testPos.match &&
  872. ((((opts.greedy || ignoreGreedy) && testPos.match.optionalQuantifier !== true) || (testPos.match.optionality === false || testPos.match.newBlockMarker === false) && testPos.match.optionalQuantifier !== true) &&
  873. ((lvTest.alternation === undefined || lvTest.alternation !== testPos.alternation) ||
  874. (testPos.locator[lvTest.alternation] !== undefined && checkAlternationMatch(testPos.locator[lvTest.alternation].toString().split(","), lvTestAltArr))))) {
  875. break;
  876. }
  877. }
  878. return testPos;
  879. }
  880. function getTestTemplate(pos, ndxIntlzr, tstPs) {
  881. return getMaskSet().validPositions[pos] || determineTestTemplate(getTests(pos, ndxIntlzr ? ndxIntlzr.slice() : ndxIntlzr, tstPs));
  882. }
  883. function getTest(pos) {
  884. if (getMaskSet().validPositions[pos]) {
  885. return getMaskSet().validPositions[pos];
  886. }
  887. return getTests(pos)[0];
  888. }
  889. function positionCanMatchDefinition(pos, def) {
  890. var valid = false,
  891. tests = getTests(pos);
  892. for (var tndx = 0; tndx < tests.length; tndx++) {
  893. if (tests[tndx].match && tests[tndx].match.def === def) {
  894. valid = true;
  895. break;
  896. }
  897. }
  898. return valid;
  899. }
  900. function selectBestMatch(pos, alternateNdx) {
  901. var bestMatch, indexPos;
  902. if (getMaskSet().tests[pos] || getMaskSet().validPositions[pos]) {
  903. $.each(getMaskSet().tests[pos] || [getMaskSet().validPositions[pos]], function (ndx, lmnt) {
  904. var ndxPos = lmnt.alternation ? lmnt.locator[lmnt.alternation].toString().indexOf(alternateNdx) : -1;
  905. if ((indexPos === undefined || ndxPos < indexPos) && ndxPos !== -1) {
  906. bestMatch = lmnt;
  907. indexPos = ndxPos;
  908. }
  909. });
  910. }
  911. return bestMatch;
  912. }
  913. function getTests(pos, ndxIntlzr, tstPs) {
  914. var maskTokens = getMaskSet().maskToken,
  915. testPos = ndxIntlzr ? tstPs : 0,
  916. ndxInitializer = ndxIntlzr ? ndxIntlzr.slice() : [0],
  917. matches = [],
  918. insertStop = false,
  919. latestMatch,
  920. cacheDependency = ndxIntlzr ? ndxIntlzr.join("") : "";
  921. function resolveTestFromToken(maskToken, ndxInitializer, loopNdx, quantifierRecurse) { //ndxInitializer contains a set of indexes to speedup searches in the mtokens
  922. function handleMatch(match, loopNdx, quantifierRecurse) {
  923. function isFirstMatch(latestMatch, tokenGroup) {
  924. var firstMatch = $.inArray(latestMatch, tokenGroup.matches) === 0;
  925. if (!firstMatch) {
  926. $.each(tokenGroup.matches, function (ndx, match) {
  927. if (match.isQuantifier === true) {
  928. firstMatch = isFirstMatch(latestMatch, tokenGroup.matches[ndx - 1]);
  929. if (firstMatch) return false;
  930. }
  931. });
  932. }
  933. return firstMatch;
  934. }
  935. function resolveNdxInitializer(pos, alternateNdx) {
  936. var bestMatch = selectBestMatch(pos, alternateNdx);
  937. return bestMatch ? bestMatch.locator.slice(bestMatch.alternation + 1) : undefined;
  938. }
  939. function staticCanMatchDefinition(source, target) {
  940. if (source.match.fn === null && target.match.fn !== null) {
  941. return target.match.fn.test(source.match.def, getMaskSet(), pos, false, opts, false);
  942. }
  943. return false;
  944. }
  945. if (testPos > 10000) {
  946. 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;
  947. }
  948. if (testPos === pos && match.matches === undefined) {
  949. matches.push({
  950. "match": match,
  951. "locator": loopNdx.reverse(),
  952. "cd": cacheDependency
  953. });
  954. return true;
  955. } else if (match.matches !== undefined) {
  956. if (match.isGroup && quantifierRecurse !== match) { //when a group pass along to the quantifier
  957. match = handleMatch(maskToken.matches[$.inArray(match, maskToken.matches) + 1], loopNdx);
  958. if (match) return true;
  959. } else if (match.isOptional) {
  960. var optionalToken = match;
  961. match = resolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
  962. if (match) {
  963. latestMatch = matches[matches.length - 1].match;
  964. if (isFirstMatch(latestMatch, optionalToken)) {
  965. insertStop = true; //insert a stop
  966. testPos = pos; //match the position after the group
  967. } else return true;
  968. }
  969. } else if (match.isAlternator) {
  970. var alternateToken = match,
  971. malternateMatches = [],
  972. maltMatches,
  973. currentMatches = matches.slice(),
  974. loopNdxCnt = loopNdx.length;
  975. //console.log("before " + ndxInitializer);
  976. var altIndex = ndxInitializer.length > 0 ? ndxInitializer.shift() : -1;
  977. if (altIndex === -1 || typeof altIndex === "string") {
  978. var currentPos = testPos,
  979. ndxInitializerClone = ndxInitializer.slice(),
  980. altIndexArr = [],
  981. amndx;
  982. if (typeof altIndex == "string") {
  983. altIndexArr = altIndex.split(",");
  984. } else {
  985. for (amndx = 0; amndx < alternateToken.matches.length; amndx++) {
  986. altIndexArr.push(amndx);
  987. }
  988. }
  989. for (var ndx = 0; ndx < altIndexArr.length; ndx++) {
  990. amndx = parseInt(altIndexArr[ndx]);
  991. matches = [];
  992. //set the correct ndxInitializer
  993. ndxInitializer = resolveNdxInitializer(testPos, amndx) || ndxInitializerClone.slice();
  994. //console.log("resolved " + ndxInitializerClone + " vs " + resolveNdxInitializer(testPos, amndx));
  995. match = handleMatch(alternateToken.matches[amndx] || maskToken.matches[amndx], [amndx].concat(loopNdx), quantifierRecurse) || match;
  996. if (match !== true && match !== undefined && (altIndexArr[altIndexArr.length - 1] < alternateToken.matches.length)) { //no match in the alternations (length mismatch) => look further
  997. var ntndx = $.inArray(match, maskToken.matches) + 1;
  998. if (maskToken.matches.length > ntndx) {
  999. match = handleMatch(maskToken.matches[ntndx], [ntndx].concat(loopNdx.slice(1, loopNdx.length)), quantifierRecurse);
  1000. if (match) {
  1001. altIndexArr.push(ntndx.toString());
  1002. $.each(matches, function (ndx, lmnt) {
  1003. lmnt.alternation = loopNdx.length - 1;
  1004. });
  1005. }
  1006. }
  1007. }
  1008. maltMatches = matches.slice();
  1009. testPos = currentPos;
  1010. matches = [];
  1011. //fuzzy merge matches
  1012. for (var ndx1 = 0; ndx1 < maltMatches.length; ndx1++) {
  1013. var altMatch = maltMatches[ndx1], hasMatch = false;
  1014. altMatch.alternation = altMatch.alternation || loopNdxCnt;
  1015. for (var ndx2 = 0; ndx2 < malternateMatches.length; ndx2++) {
  1016. var altMatch2 = malternateMatches[ndx2];
  1017. //verify equality
  1018. if (typeof altIndex !== "string" || $.inArray(altMatch.locator[altMatch.alternation].toString(), altIndexArr) !== -1) {
  1019. if (altMatch.match.def === altMatch2.match.def || staticCanMatchDefinition(altMatch, altMatch2)) {
  1020. hasMatch = altMatch.match.mask === altMatch2.match.mask;
  1021. if (altMatch2.locator[altMatch.alternation].toString().indexOf(altMatch.locator[altMatch.alternation]) === -1) {
  1022. altMatch2.locator[altMatch.alternation] = altMatch2.locator[altMatch.alternation] + "," + altMatch.locator[altMatch.alternation];
  1023. altMatch2.alternation = altMatch.alternation; //we pass the alternation index => used in determineLastRequiredPosition
  1024. if (altMatch.match.fn == null) { //staticCanMatchDefinition => set no alternate on match
  1025. altMatch2.na = altMatch2.na || altMatch.locator[altMatch.alternation].toString();
  1026. if (altMatch2.na.indexOf(altMatch.locator[altMatch.alternation]) === -1)
  1027. altMatch2.na = altMatch2.na + "," + altMatch.locator[altMatch.alternation];
  1028. }
  1029. }
  1030. break;
  1031. }
  1032. }
  1033. }
  1034. if (!hasMatch) {
  1035. malternateMatches.push(altMatch);
  1036. }
  1037. }
  1038. }
  1039. if (typeof altIndex == "string") { //filter matches
  1040. malternateMatches = $.map(malternateMatches, function (lmnt, ndx) {
  1041. if (isFinite(ndx)) {
  1042. var mamatch,
  1043. alternation = lmnt.alternation,
  1044. altLocArr = lmnt.locator[alternation].toString().split(",");
  1045. lmnt.locator[alternation] = undefined;
  1046. lmnt.alternation = undefined;
  1047. for (var alndx = 0; alndx < altLocArr.length; alndx++) {
  1048. mamatch = $.inArray(altLocArr[alndx], altIndexArr) !== -1;
  1049. if (mamatch) { //rebuild the locator with valid entries
  1050. if (lmnt.locator[alternation] !== undefined) {
  1051. lmnt.locator[alternation] += ",";
  1052. lmnt.locator[alternation] += altLocArr[alndx];
  1053. } else lmnt.locator[alternation] = parseInt(altLocArr[alndx]);
  1054. lmnt.alternation = alternation;
  1055. }
  1056. }
  1057. if (lmnt.locator[alternation] !== undefined) return lmnt;
  1058. }
  1059. });
  1060. }
  1061. matches = currentMatches.concat(malternateMatches);
  1062. testPos = pos;
  1063. insertStop = matches.length > 0; //insert a stopelemnt when there is an alternate - needed for non-greedy option
  1064. //cloneback
  1065. ndxInitializer = ndxInitializerClone.slice();
  1066. } else {
  1067. // if (alternateToken.matches[altIndex]) { //if not in the initial alternation => look further
  1068. match = handleMatch(alternateToken.matches[altIndex] || maskToken.matches[altIndex], [altIndex].concat(loopNdx), quantifierRecurse);
  1069. // } else match = false;
  1070. }
  1071. if (match) return true;
  1072. } else if (match.isQuantifier && quantifierRecurse !== maskToken.matches[$.inArray(match, maskToken.matches) - 1]) {
  1073. var qt = match;
  1074. for (var qndx = (ndxInitializer.length > 0) ? ndxInitializer.shift() : 0; (qndx < (isNaN(qt.quantifier.max) ? qndx + 1 : qt.quantifier.max)) && testPos <= pos; qndx++) {
  1075. var tokenGroup = maskToken.matches[$.inArray(qt, maskToken.matches) - 1];
  1076. match = handleMatch(tokenGroup, [qndx].concat(loopNdx), tokenGroup); //set the tokenGroup as quantifierRecurse marker
  1077. if (match) {
  1078. //get latest match
  1079. latestMatch = matches[matches.length - 1].match;
  1080. latestMatch.optionalQuantifier = qndx > (qt.quantifier.min - 1);
  1081. if (isFirstMatch(latestMatch, tokenGroup)) { //search for next possible match
  1082. if (qndx > (qt.quantifier.min - 1)) {
  1083. insertStop = true;
  1084. testPos = pos; //match the position after the group
  1085. break; //stop quantifierloop
  1086. } else return true;
  1087. } else {
  1088. return true;
  1089. }
  1090. }
  1091. }
  1092. } else {
  1093. match = resolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
  1094. if (match) return true;
  1095. }
  1096. }
  1097. else
  1098. testPos++;
  1099. }
  1100. for (var tndx = (ndxInitializer.length > 0 ? ndxInitializer.shift() : 0); tndx < maskToken.matches.length; tndx++) {
  1101. if (maskToken.matches[tndx].isQuantifier !== true) {
  1102. var match = handleMatch(maskToken.matches[tndx], [tndx].concat(loopNdx), quantifierRecurse);
  1103. if (match && testPos === pos) {
  1104. return match;
  1105. } else if (testPos > pos) {
  1106. break;
  1107. }
  1108. }
  1109. }
  1110. }
  1111. function mergeLocators(tests) {
  1112. var locator = [];
  1113. if (!$.isArray(tests)) tests = [tests];
  1114. if (tests.length > 0) {
  1115. if (tests[0].alternation === undefined) {
  1116. locator = determineTestTemplate(tests.slice()).locator.slice();
  1117. if (locator.length === 0) locator = tests[0].locator.slice();
  1118. }
  1119. else {
  1120. $.each(tests, function (ndx, tst) {
  1121. if (tst.def !== "") {
  1122. if (locator.length === 0) locator = tst.locator.slice();
  1123. else {
  1124. for (var i = 0; i < locator.length; i++) {
  1125. if (tst.locator[i] && locator[i].toString().indexOf(tst.locator[i]) === -1) {
  1126. locator[i] += "," + tst.locator[i];
  1127. }
  1128. }
  1129. }
  1130. }
  1131. });
  1132. }
  1133. }
  1134. return locator;
  1135. }
  1136. function filterTests(tests) {
  1137. if (opts.keepStatic && pos > 0) {
  1138. if (tests.length > 1 + (tests[tests.length - 1].match.def === "" ? 1 : 0)) {
  1139. if (tests[0].match.optionality !== true &&
  1140. tests[0].match.optionalQuantifier !== true &&
  1141. tests[0].match.fn === null && !/[0-9a-bA-Z]/.test(tests[0].match.def)) {
  1142. return [determineTestTemplate(tests)]
  1143. }
  1144. }
  1145. }
  1146. return tests;
  1147. }
  1148. if (pos > -1) {
  1149. if (ndxIntlzr === undefined) { //determine index initializer
  1150. var previousPos = pos - 1,
  1151. test;
  1152. while ((test = getMaskSet().validPositions[previousPos] || getMaskSet().tests[previousPos]) === undefined && previousPos > -1) {
  1153. previousPos--;
  1154. }
  1155. if (test !== undefined && previousPos > -1) {
  1156. ndxInitializer = mergeLocators(test);
  1157. cacheDependency = ndxInitializer.join("");
  1158. testPos = previousPos;
  1159. }
  1160. }
  1161. if (getMaskSet().tests[pos] && getMaskSet().tests[pos][0].cd === cacheDependency) { //cacheDependency is set on all tests, just check on the first
  1162. //console.log("cache hit " + pos + " - " + ndxIntlzr);
  1163. return filterTests(getMaskSet().tests[pos]);
  1164. }
  1165. for (var mtndx = ndxInitializer.shift(); mtndx < maskTokens.length; mtndx++) {
  1166. var match = resolveTestFromToken(maskTokens[mtndx], ndxInitializer, [mtndx]);
  1167. if ((match && testPos === pos) || testPos > pos) {
  1168. break;
  1169. }
  1170. }
  1171. }
  1172. if (matches.length === 0 || insertStop) {
  1173. matches.push({
  1174. match: {
  1175. fn: null,
  1176. cardinality: 0,
  1177. optionality: true,
  1178. casing: null,
  1179. def: "",
  1180. placeholder: ""
  1181. },
  1182. locator: [],
  1183. cd: cacheDependency
  1184. });
  1185. }
  1186. if (ndxIntlzr !== undefined && getMaskSet().tests[pos]) { //prioritize full tests for caching
  1187. return filterTests($.extend(true, [], matches));
  1188. }
  1189. getMaskSet().tests[pos] = $.extend(true, [], matches); //set a clone to prevent overwriting some props
  1190. //console.log(pos + " - " + JSON.stringify(matches));
  1191. return filterTests(getMaskSet().tests[pos]);
  1192. }
  1193. function getBufferTemplate() {
  1194. if (getMaskSet()._buffer === undefined) {
  1195. //generate template
  1196. getMaskSet()._buffer = getMaskTemplate(false, 1);
  1197. if (getMaskSet().buffer === undefined) {
  1198. getMaskSet()._buffer.slice();
  1199. }
  1200. }
  1201. return getMaskSet()._buffer;
  1202. }
  1203. function getBuffer(noCache) {
  1204. if (getMaskSet().buffer === undefined || noCache === true) {
  1205. getMaskSet().buffer = getMaskTemplate(true, getLastValidPosition(), true);
  1206. }
  1207. return getMaskSet().buffer;
  1208. }
  1209. function refreshFromBuffer(start, end, buffer) {
  1210. var i;
  1211. if (start === true) {
  1212. resetMaskSet();
  1213. start = 0;
  1214. end = buffer.length;
  1215. } else {
  1216. for (i = start; i < end; i++) {
  1217. delete getMaskSet().validPositions[i];
  1218. }
  1219. }
  1220. for (i = start; i < end; i++) {
  1221. resetMaskSet(true); //prevents clobber from the buffer
  1222. if (buffer[i] !== opts.skipOptionalPartCharacter) {
  1223. isValid(i, buffer[i], true, true);
  1224. }
  1225. }
  1226. }
  1227. function casing(elem, test, pos) {
  1228. switch (test.casing) {
  1229. case "upper":
  1230. elem = elem.toUpperCase();
  1231. break;
  1232. case "lower":
  1233. elem = elem.toLowerCase();
  1234. break;
  1235. case "title":
  1236. var posBefore = getMaskSet().validPositions[pos - 1];
  1237. if (pos === 0 || posBefore && posBefore.input === String.fromCharCode(Inputmask.keyCode.SPACE)) {
  1238. elem = elem.toUpperCase();
  1239. } else {
  1240. elem = elem.toLowerCase();
  1241. }
  1242. break;
  1243. }
  1244. return elem;
  1245. }
  1246. function checkAlternationMatch(altArr1, altArr2) {
  1247. var altArrC = opts.greedy ? altArr2 : altArr2.slice(0, 1),
  1248. isMatch = false;
  1249. for (var alndx = 0; alndx < altArr1.length; alndx++) {
  1250. if ($.inArray(altArr1[alndx], altArrC) !== -1) {
  1251. isMatch = true;
  1252. break;
  1253. }
  1254. }
  1255. return isMatch;
  1256. }
  1257. function isValid(pos, c, strict, fromSetValid, fromAlternate) { //strict true ~ no correction or autofill
  1258. function isSelection(posObj) {
  1259. return isRTL ? (posObj.begin - posObj.end) > 1 || ((posObj.begin - posObj.end) === 1 && opts.insertMode) :
  1260. (posObj.end - posObj.begin) > 1 || ((posObj.end - posObj.begin) === 1 && opts.insertMode);
  1261. }
  1262. strict = strict === true; //always set a value to strict to prevent possible strange behavior in the extensions
  1263. var maskPos = pos;
  1264. if (pos.begin !== undefined) { //position was a position object - used to handle a delete by typing over a selection
  1265. maskPos = isRTL && !isSelection(pos) ? pos.end : pos.begin;
  1266. }
  1267. function _isValid(position, c, strict) {
  1268. var rslt = false;
  1269. $.each(getTests(position), function (ndx, tst) {
  1270. var test = tst.match,
  1271. loopend = c ? 1 : 0,
  1272. chrs = "";
  1273. for (var i = test.cardinality; i > loopend; i--) {
  1274. chrs += getBufferElement(position - (i - 1));
  1275. }
  1276. if (c) {
  1277. chrs += c;
  1278. }
  1279. //make sure the buffer is set and correct
  1280. getBuffer(true);
  1281. //return is false or a json object => { pos: ??, c: ??} or true
  1282. rslt = test.fn != null ?
  1283. test.fn.test(chrs, getMaskSet(), position, strict, opts, isSelection(pos)) : (c === test.def || c === opts.skipOptionalPartCharacter) && test.def !== "" ? //non mask
  1284. {
  1285. c: test.placeholder || test.def,
  1286. pos: position
  1287. } : false;
  1288. if (rslt !== false) {
  1289. var elem = rslt.c !== undefined ? rslt.c : c;
  1290. elem = (elem === opts.skipOptionalPartCharacter && test.fn === null) ? (test.placeholder || test.def) : elem;
  1291. var validatedPos = position,
  1292. possibleModifiedBuffer = getBuffer();
  1293. if (rslt.remove !== undefined) { //remove position(s)
  1294. if (!$.isArray(rslt.remove)) rslt.remove = [rslt.remove];
  1295. $.each(rslt.remove.sort(function (a, b) {
  1296. return b - a;
  1297. }), function (ndx, lmnt) {
  1298. stripValidPositions(lmnt, lmnt + 1, true);
  1299. });
  1300. }
  1301. if (rslt.insert !== undefined) { //insert position(s)
  1302. if (!$.isArray(rslt.insert)) rslt.insert = [rslt.insert];
  1303. $.each(rslt.insert.sort(function (a, b) {
  1304. return a - b;
  1305. }), function (ndx, lmnt) {
  1306. isValid(lmnt.pos, lmnt.c, false, fromSetValid);
  1307. });
  1308. }
  1309. if (rslt.refreshFromBuffer) {
  1310. var refresh = rslt.refreshFromBuffer;
  1311. strict = true;
  1312. refreshFromBuffer(refresh === true ? refresh : refresh.start, refresh.end, possibleModifiedBuffer);
  1313. if (rslt.pos === undefined && rslt.c === undefined) {
  1314. rslt.pos = getLastValidPosition();
  1315. return false; //breakout if refreshFromBuffer && nothing to insert
  1316. }
  1317. validatedPos = rslt.pos !== undefined ? rslt.pos : position;
  1318. if (validatedPos !== position) {
  1319. rslt = $.extend(rslt, isValid(validatedPos, elem, true, fromSetValid)); //revalidate new position strict
  1320. return false;
  1321. }
  1322. } else if (rslt !== true && rslt.pos !== undefined && rslt.pos !== position) { //their is a position offset
  1323. validatedPos = rslt.pos;
  1324. refreshFromBuffer(position, validatedPos, getBuffer().slice());
  1325. if (validatedPos !== position) {
  1326. rslt = $.extend(rslt, isValid(validatedPos, elem, true)); //revalidate new position strict
  1327. return false;
  1328. }
  1329. }
  1330. if (rslt !== true && rslt.pos === undefined && rslt.c === undefined) {
  1331. return false; //breakout if nothing to insert
  1332. }
  1333. if (ndx > 0) {
  1334. resetMaskSet(true);
  1335. }
  1336. if (!setValidPosition(validatedPos, $.extend({}, tst, {
  1337. "input": casing(elem, test, validatedPos)
  1338. }), fromSetValid, isSelection(pos))) {
  1339. rslt = false;
  1340. }
  1341. return false; //break from $.each
  1342. }
  1343. }
  1344. );
  1345. return rslt;
  1346. }
  1347. function alternate(pos, c, strict) {
  1348. var validPsClone = $.extend(true, {}, getMaskSet().validPositions),
  1349. lastAlt,
  1350. alternation,
  1351. isValidRslt = false,
  1352. altPos, prevAltPos, i, validPos, lAltPos = getLastValidPosition(), altNdxs, decisionPos;
  1353. //find last modified alternation
  1354. prevAltPos = getMaskSet().validPositions[lAltPos];
  1355. for (; lAltPos >= 0; lAltPos--) {
  1356. altPos = getMaskSet().validPositions[lAltPos];
  1357. if (altPos && altPos.alternation !== undefined) {
  1358. lastAlt = lAltPos;
  1359. alternation = getMaskSet().validPositions[lastAlt].alternation;
  1360. if (prevAltPos.locator[altPos.alternation] !== altPos.locator[altPos.alternation]) {
  1361. break;
  1362. }
  1363. prevAltPos = altPos;
  1364. }
  1365. }
  1366. if (alternation !== undefined) {
  1367. decisionPos = parseInt(lastAlt);
  1368. var decisionTaker = prevAltPos.locator[prevAltPos.alternation || alternation] !== undefined ? prevAltPos.locator[prevAltPos.alternation || alternation] : altNdxs[0]; //no match in the alternations (length mismatch)
  1369. if (decisionTaker.length > 0) { //no decision taken ~ take first one as decider
  1370. decisionTaker = decisionTaker.split(",")[0];
  1371. }
  1372. var possibilityPos = getMaskSet().validPositions[decisionPos], prevPos = getMaskSet().validPositions[decisionPos - 1];
  1373. $.each(getTests(decisionPos, prevPos ? prevPos.locator : undefined, decisionPos - 1), function (ndx, test) {
  1374. altNdxs = test.locator[alternation] ? test.locator[alternation].toString().split(",") : [];
  1375. for (var mndx = 0; mndx < altNdxs.length; mndx++) {
  1376. var validInputs = [],
  1377. staticInputsBeforePos = 0,
  1378. staticInputsBeforePosAlternate = 0,
  1379. verifyValidInput = false;
  1380. if (decisionTaker < altNdxs[mndx] && (test.na === undefined || $.inArray(altNdxs[mndx], test.na.split(",")) === -1)) {
  1381. getMaskSet().validPositions[decisionPos] = $.extend(true, {}, test);
  1382. var possibilities = getMaskSet().validPositions[decisionPos].locator;
  1383. getMaskSet().validPositions[decisionPos].locator[alternation] = parseInt(altNdxs[mndx]); //set forced decision
  1384. if (test.match.fn == null) {
  1385. if (possibilityPos.input !== test.match.def) {
  1386. verifyValidInput = true; //verify that the new definition matches the input
  1387. if (possibilityPos.generatedInput !== true) {
  1388. validInputs.push(possibilityPos.input);
  1389. }
  1390. }
  1391. staticInputsBeforePosAlternate++;
  1392. getMaskSet().validPositions[decisionPos].generatedInput = !/[0-9a-bA-Z]/.test(test.match.def);
  1393. getMaskSet().validPositions[decisionPos].input = test.match.def;
  1394. } else {
  1395. getMaskSet().validPositions[decisionPos].input = possibilityPos.input;
  1396. }
  1397. for (i = decisionPos + 1; i < getLastValidPosition(undefined, true) + 1; i++) {
  1398. validPos = getMaskSet().validPositions[i];
  1399. if (validPos && validPos.generatedInput !== true && /[0-9a-bA-Z]/.test(validPos.input)) {
  1400. validInputs.push(validPos.input);
  1401. } else if (i < pos) staticInputsBeforePos++;
  1402. delete getMaskSet().validPositions[i];
  1403. }
  1404. if (verifyValidInput && validInputs[0] === test.match.def) {
  1405. validInputs.shift();
  1406. }
  1407. resetMaskSet(true); //clear getbuffer
  1408. isValidRslt = true;
  1409. while (validInputs.length > 0) {
  1410. var input = validInputs.shift();
  1411. if (input !== opts.skipOptionalPartCharacter) {
  1412. if (!(isValidRslt = isValid(getLastValidPosition(undefined, true) + 1, input, false, fromSetValid, true))) {
  1413. break;
  1414. }
  1415. }
  1416. }
  1417. if (isValidRslt) {
  1418. getMaskSet().validPositions[decisionPos].locator = possibilities; //reset forceddecision ~ needed for proper delete
  1419. var targetLvp = getLastValidPosition(pos) + 1;
  1420. for (i = decisionPos + 1; i < getLastValidPosition() + 1; i++) {
  1421. validPos = getMaskSet().validPositions[i];
  1422. if ((validPos === undefined || validPos.match.fn == null) && i < (pos + (staticInputsBeforePosAlternate - staticInputsBeforePos))) {
  1423. staticInputsBeforePosAlternate++;
  1424. }
  1425. }
  1426. pos = pos + (staticInputsBeforePosAlternate - staticInputsBeforePos);
  1427. isValidRslt = isValid(pos > targetLvp ? targetLvp : pos, c, strict, fromSetValid, true);
  1428. }
  1429. if (!isValidRslt) {
  1430. resetMaskSet();
  1431. getMaskSet().validPositions = $.extend(true, {}, validPsClone);
  1432. } else return false; //exit $.each
  1433. }
  1434. }
  1435. });
  1436. }
  1437. return isValidRslt;
  1438. }
  1439. //set alternator choice on previous skipped placeholder positions
  1440. function trackbackAlternations(originalPos, newPos) {
  1441. var vp = getMaskSet().validPositions[newPos],
  1442. targetLocator = vp.locator,
  1443. tll = targetLocator.length;
  1444. for (var ps = originalPos; ps < newPos; ps++) {
  1445. if (getMaskSet().validPositions[ps] === undefined && !isMask(ps, true)) {
  1446. var tests = getTests(ps),
  1447. bestMatch = tests[0],
  1448. equality = -1;
  1449. $.each(tests, function (ndx, tst) { //find best matching
  1450. for (var i = 0; i < tll; i++) {
  1451. if (tst.locator[i] !== undefined && checkAlternationMatch(tst.locator[i].toString().split(","), targetLocator[i].toString().split(","))) {
  1452. if (equality < i) {
  1453. equality = i;
  1454. bestMatch = tst;
  1455. }
  1456. } else break;
  1457. }
  1458. });
  1459. setValidPosition(ps, $.extend({}, bestMatch, {
  1460. "input": bestMatch.match.placeholder || bestMatch.match.def
  1461. }), true);
  1462. }
  1463. }
  1464. }
  1465. var result = false,
  1466. positionsClone = $.extend(true, {}, getMaskSet().validPositions); //clone the currentPositions
  1467. //Check for a nonmask before the pos
  1468. //find previous valid
  1469. for (var pndx = maskPos - 1; pndx > -1; pndx--) {
  1470. if (getMaskSet().validPositions[pndx]) break;
  1471. }
  1472. ////fill missing nonmask and valid placeholders
  1473. var testTemplate, generatedPos;
  1474. for (pndx++; pndx < maskPos; pndx++) {
  1475. if (getMaskSet().validPositions[pndx] === undefined &&
  1476. (opts.jitMasking === false || opts.jitMasking > pndx) &&
  1477. ((testTemplate = getTestTemplate(pndx, getTestTemplate(pndx - 1).locator, pndx - 1)).match.def === opts.radixPointDefinitionSymbol || !isMask(pndx, true) ||
  1478. ($.inArray(opts.radixPoint, getBuffer()) < pndx && testTemplate.match.fn && testTemplate.match.fn.test(getPlaceholder(pndx), getMaskSet(), pndx, false, opts)))) {
  1479. result = _isValid(pndx, testTemplate.match.placeholder || (testTemplate.match.fn == null ? testTemplate.match.def : (getPlaceholder(pndx) !== "" ? getPlaceholder(pndx) : getBuffer()[pndx])), true);
  1480. if (result !== false) {
  1481. getMaskSet().validPositions[result.pos || pndx].generatedInput = true;
  1482. }
  1483. }
  1484. }
  1485. if (isSelection(pos)) {
  1486. handleRemove(undefined, Inputmask.keyCode.DELETE, pos);
  1487. maskPos = getMaskSet().p;
  1488. }
  1489. if (maskPos < getMaskSet().maskLength) {
  1490. result = _isValid(maskPos, c, strict);
  1491. if ((!strict || fromSetValid === true) && result === false) {
  1492. var currentPosValid = getMaskSet().validPositions[maskPos];
  1493. if (currentPosValid && currentPosValid.match.fn === null && (currentPosValid.match.def === c || c === opts.skipOptionalPartCharacter)) {
  1494. result = {
  1495. "caret": seekNext(maskPos)
  1496. };
  1497. } else if ((opts.insertMode || getMaskSet().validPositions[seekNext(maskPos)] === undefined) && !isMask(maskPos, true)) { //does the input match on a further position?
  1498. var testsFromPos = getTests(maskPos).slice();
  1499. if (testsFromPos[testsFromPos.length - 1].match.def === "") testsFromPos.pop();
  1500. var staticChar = determineTestTemplate(testsFromPos, true);
  1501. if (staticChar) {
  1502. staticChar = staticChar.match.placeholder || staticChar.match.def;
  1503. _isValid(maskPos, staticChar, strict);
  1504. }
  1505. for (var nPos = maskPos + 1, snPos = seekNext(maskPos); nPos <= snPos; nPos++) {
  1506. result = _isValid(nPos, c, strict);
  1507. if (result !== false) {
  1508. trackbackAlternations(maskPos, nPos);
  1509. maskPos = nPos;
  1510. break;
  1511. }
  1512. }
  1513. }
  1514. }
  1515. }
  1516. if (result === false && opts.keepStatic && !strict && fromAlternate !== true) { //try fuzzy alternator logic
  1517. result = alternate(maskPos, c, strict);
  1518. }
  1519. if (result === true) {
  1520. result = {
  1521. "pos": maskPos
  1522. };
  1523. }
  1524. if ($.isFunction(opts.postValidation) && result !== false && !strict && fromSetValid !== true) {
  1525. result = opts.postValidation(getBuffer(true), result, opts) ? result : false;
  1526. }
  1527. if (result.pos === undefined) {
  1528. result.pos = maskPos;
  1529. }
  1530. if (result === false) {
  1531. resetMaskSet(true);
  1532. getMaskSet().validPositions = $.extend(true, {}, positionsClone); //revert validation changes
  1533. }
  1534. return result;
  1535. }
  1536. function isMask(pos, strict) {
  1537. var test;
  1538. if (strict) {
  1539. test = getTestTemplate(pos).match;
  1540. if (test.def === "") test = getTest(pos).match;
  1541. } else test = getTest(pos).match;
  1542. if (test.fn != null) {
  1543. return test.fn;
  1544. } else if (strict !== true && pos > -1) {
  1545. var tests = getTests(pos);
  1546. return tests.length > 1 + (tests[tests.length - 1].match.def === "" ? 1 : 0);
  1547. }
  1548. return false;
  1549. }
  1550. function seekNext(pos, newBlock) {
  1551. var maskL = getMaskSet().maskLength;
  1552. if (pos >= maskL) return maskL;
  1553. var position = pos;
  1554. while (++position < maskL &&
  1555. ((newBlock === true && (getTest(position).match.newBlockMarker !== true || !isMask(position))) ||
  1556. (newBlock !== true && !isMask(position)))) {
  1557. }
  1558. return position;
  1559. }
  1560. function seekPrevious(pos, newBlock) {
  1561. var position = pos, tests;
  1562. if (position <= 0) return 0;
  1563. while (--position > 0 &&
  1564. ((newBlock === true && getTest(position).match.newBlockMarker !== true) ||
  1565. (newBlock !== true && !isMask(position) &&
  1566. (tests = getTests(position), tests.length < 2 || (tests.length === 2 && tests[1].match.def === ""))))) {
  1567. }
  1568. return position;
  1569. }
  1570. function getBufferElement(position) {
  1571. return getMaskSet().validPositions[position] === undefined ? getPlaceholder(position) : getMaskSet().validPositions[position].input;
  1572. }
  1573. function writeBuffer(input, buffer, caretPos, event, triggerInputEvent) {
  1574. if (event && $.isFunction(opts.onBeforeWrite)) {
  1575. var result = opts.onBeforeWrite(event, buffer, caretPos, opts);
  1576. if (result) {
  1577. if (result.refreshFromBuffer) {
  1578. var refresh = result.refreshFromBuffer;
  1579. refreshFromBuffer(refresh === true ? refresh : refresh.start, refresh.end, result.buffer || buffer);
  1580. buffer = getBuffer(true);
  1581. }
  1582. //only alter when intented !== undefined
  1583. if (caretPos !== undefined) caretPos = result.caret !== undefined ? result.caret : caretPos;
  1584. }
  1585. }
  1586. input.inputmask._valueSet(buffer.join(""));
  1587. if (caretPos !== undefined && (event === undefined || event.type !== "blur")) {
  1588. caret(input, caretPos);
  1589. }
  1590. if (triggerInputEvent === true) {
  1591. skipInputEvent = true;
  1592. $(input).trigger("input");
  1593. }
  1594. }
  1595. function getPlaceholder(pos, test) {
  1596. test = test || getTest(pos).match;
  1597. if (test.placeholder !== undefined) {
  1598. return test.placeholder;
  1599. } else if (test.fn === null) {
  1600. if (pos > -1 && getMaskSet().validPositions[pos] === undefined) {
  1601. var tests = getTests(pos),
  1602. staticAlternations = [],
  1603. prevTest;
  1604. if (tests.length > 1 + (tests[tests.length - 1].match.def === "" ? 1 : 0)) {
  1605. for (var i = 0; i < tests.length; i++) {
  1606. if (tests[i].match.optionality !== true && tests[i].match.optionalQuantifier !== true &&
  1607. (tests[i].match.fn === null || (prevTest === undefined || tests[i].match.fn.test(prevTest.match.def, getMaskSet(), pos, true, opts) !== false))) {
  1608. staticAlternations.push(tests[i]);
  1609. if (tests[i].match.fn === null) prevTest = tests[i];
  1610. if (staticAlternations.length > 1) {
  1611. if (/[0-9a-bA-Z]/.test(staticAlternations[0].match.def)) {
  1612. return opts.placeholder.charAt(pos % opts.placeholder.length);
  1613. }
  1614. }
  1615. }
  1616. }
  1617. }
  1618. }
  1619. return test.def;
  1620. }
  1621. return opts.placeholder.charAt(pos % opts.placeholder.length);
  1622. }
  1623. function checkVal(input, writeOut, strict, nptvl, initiatingEvent) {
  1624. var inputValue = nptvl.slice(),
  1625. charCodes = "",
  1626. initialNdx = 0, result;
  1627. function isTemplateMatch() {
  1628. var isMatch = false;
  1629. var charCodeNdx = getBufferTemplate().slice(initialNdx, seekNext(initialNdx)).join("").indexOf(charCodes);
  1630. if (charCodeNdx !== -1 && !isMask(initialNdx)) {
  1631. isMatch = true;
  1632. var bufferTemplateArr = getBufferTemplate().slice(initialNdx, initialNdx + charCodeNdx);
  1633. for (var i = 0; i < bufferTemplateArr.length; i++) {
  1634. if (bufferTemplateArr[i] !== " ") {
  1635. isMatch = false;
  1636. break;
  1637. }
  1638. }
  1639. }
  1640. return isMatch;
  1641. }
  1642. resetMaskSet();
  1643. getMaskSet().p = seekNext(-1);
  1644. // if (writeOut) input.inputmask._valueSet(""); //initial clear
  1645. if (!strict) {
  1646. if (opts.autoUnmask !== true) {
  1647. var staticInput = getBufferTemplate().slice(0, seekNext(-1)).join(""),
  1648. matches = inputValue.join("").match(new RegExp("^" + Inputmask.escapeRegex(staticInput), "g"));
  1649. if (matches && matches.length > 0) {
  1650. inputValue.splice(0, matches.length * staticInput.length);
  1651. initialNdx = seekNext(initialNdx);
  1652. }
  1653. } else {
  1654. initialNdx = seekNext(initialNdx);
  1655. }
  1656. }
  1657. $.each(inputValue, function (ndx, charCode) {
  1658. if (charCode !== undefined) { //inputfallback strips some elements out of the inputarray. $.each logically presents them as undefined
  1659. var keypress = new $.Event("keypress");
  1660. keypress.which = charCode.charCodeAt(0);
  1661. charCodes += charCode;
  1662. var lvp = getLastValidPosition(undefined, true),
  1663. lvTest = getMaskSet().validPositions[lvp],
  1664. nextTest = getTestTemplate(lvp + 1, lvTest ? lvTest.locator.slice() : undefined, lvp);
  1665. if (!isTemplateMatch() || strict || opts.autoUnmask) {
  1666. var pos = strict ? ndx : (nextTest.match.fn == null && nextTest.match.optionality && (lvp + 1) < getMaskSet().p ? lvp + 1 : getMaskSet().p);
  1667. result = keypressEvent.call(input, keypress, true, false, strict, pos);
  1668. initialNdx = pos + 1;
  1669. charCodes = "";
  1670. } else {
  1671. result = keypressEvent.call(input, keypress, true, false, true, lvp + 1);
  1672. }
  1673. if (!strict && $.isFunction(opts.onBeforeWrite)) {
  1674. result = opts.onBeforeWrite(keypress, getBuffer(), result.forwardPosition, opts);
  1675. if (result && result.refreshFromBuffer) {
  1676. var refresh = result.refreshFromBuffer;
  1677. refreshFromBuffer(refresh === true ? refresh : refresh.start, refresh.end, result.buffer);
  1678. resetMaskSet(true);
  1679. if (result.caret) {
  1680. getMaskSet().p = result.caret;
  1681. }
  1682. }
  1683. }
  1684. }
  1685. });
  1686. if (writeOut) {
  1687. var caretPos = document.activeElement === input ? (initiatingEvent ? caret(input).begin : result.forwardPosition) : undefined,
  1688. offset = getBuffer().length - input.inputmask._valueGet().length;
  1689. writeBuffer(input, getBuffer(), caretPos + offset, initiatingEvent || new $.Event("checkval"));
  1690. }
  1691. }
  1692. function unmaskedvalue(input) {
  1693. if (input && input.inputmask === undefined) {
  1694. return input.value;
  1695. }
  1696. var umValue = [],
  1697. vps = getMaskSet().validPositions;
  1698. for (var pndx in vps) {
  1699. if (vps[pndx].match && vps[pndx].match.fn != null) {
  1700. umValue.push(vps[pndx].input);
  1701. }
  1702. }
  1703. var unmaskedValue = umValue.length === 0 ? "" : (isRTL ? umValue.reverse() : umValue).join("");
  1704. if ($.isFunction(opts.onUnMask)) {
  1705. var bufferValue = (isRTL ? getBuffer().slice().reverse() : getBuffer()).join("");
  1706. unmaskedValue = (opts.onUnMask(bufferValue, unmaskedValue, opts) || unmaskedValue);
  1707. }
  1708. return unmaskedValue;
  1709. }
  1710. function caret(input, begin, end, notranslate) {
  1711. function translatePosition(pos) {
  1712. if (notranslate !== true && isRTL && typeof pos === "number" && (!opts.greedy || opts.placeholder !== "")) {
  1713. var bffrLght = getBuffer().join("").length; //join is needed because sometimes we get an empty buffer element which must not be counted for the caret position (numeric alias)
  1714. pos = bffrLght - pos;
  1715. }
  1716. return pos;
  1717. }
  1718. var range;
  1719. if (typeof begin === "number") {
  1720. begin = translatePosition(begin);
  1721. end = translatePosition(end);
  1722. end = (typeof end == "number") ? end : begin;
  1723. // if (!$(input).is(":visible")) {
  1724. // return;
  1725. // }
  1726. var scrollCalc = parseInt(((input.ownerDocument.defaultView || window).getComputedStyle ? (input.ownerDocument.defaultView || window).getComputedStyle(input, null) : input.currentStyle).fontSize) * end;
  1727. input.scrollLeft = scrollCalc > input.scrollWidth ? scrollCalc : 0;
  1728. if (!mobile && opts.insertMode === false && begin === end) end++; //set visualization for insert/overwrite mode
  1729. if (input.setSelectionRange) {
  1730. input.selectionStart = begin;
  1731. input.selectionEnd = end;
  1732. } else if (window.getSelection) {
  1733. range = document.createRange();
  1734. if (input.firstChild === undefined || input.firstChild === null) {
  1735. var textNode = document.createTextNode("");
  1736. input.appendChild(textNode);
  1737. }
  1738. range.setStart(input.firstChild, begin < input.inputmask._valueGet().length ? begin : input.inputmask._valueGet().length);
  1739. range.setEnd(input.firstChild, end < input.inputmask._valueGet().length ? end : input.inputmask._valueGet().length);
  1740. range.collapse(true);
  1741. var sel = window.getSelection();
  1742. sel.removeAllRanges();
  1743. sel.addRange(range);
  1744. //input.focus();
  1745. } else if (input.createTextRange) {
  1746. range = input.createTextRange();
  1747. range.collapse(true);
  1748. range.moveEnd("character", end);
  1749. range.moveStart("character", begin);
  1750. range.select();
  1751. }
  1752. } else {
  1753. if (input.setSelectionRange) {
  1754. begin = input.selectionStart;
  1755. end = input.selectionEnd;
  1756. } else if (window.getSelection) {
  1757. range = window.getSelection().getRangeAt(0);
  1758. if (range.commonAncestorContainer.parentNode === input || range.commonAncestorContainer === input) {
  1759. begin = range.startOffset;
  1760. end = range.endOffset;
  1761. }
  1762. } else if (document.selection && document.selection.createRange) {
  1763. range = document.selection.createRange();
  1764. begin = 0 - range.duplicate().moveStart("character", -input.inputmask._valueGet().length);
  1765. end = begin + range.text.length;
  1766. }
  1767. /*eslint-disable consistent-return */
  1768. return {
  1769. "begin": translatePosition(begin),
  1770. "end": translatePosition(end)
  1771. };
  1772. /*eslint-enable consistent-return */
  1773. }
  1774. }
  1775. function determineLastRequiredPosition(returnDefinition) {
  1776. var buffer = getBuffer(),
  1777. bl = buffer.length,
  1778. pos, lvp = getLastValidPosition(),
  1779. positions = {},
  1780. lvTest = getMaskSet().validPositions[lvp],
  1781. ndxIntlzr = lvTest !== undefined ? lvTest.locator.slice() : undefined,
  1782. testPos;
  1783. for (pos = lvp + 1; pos < buffer.length; pos++) {
  1784. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  1785. ndxIntlzr = testPos.locator.slice();
  1786. positions[pos] = $.extend(true, {}, testPos);
  1787. }
  1788. var lvTestAlt = lvTest && lvTest.alternation !== undefined ? lvTest.locator[lvTest.alternation] : undefined;
  1789. for (pos = bl - 1; pos > lvp; pos--) {
  1790. testPos = positions[pos];
  1791. if ((testPos.match.optionality ||
  1792. testPos.match.optionalQuantifier ||
  1793. (lvTestAlt && ((lvTestAlt !== positions[pos].locator[lvTest.alternation] && testPos.match.fn != null) ||
  1794. (testPos.match.fn === null && testPos.locator[lvTest.alternation] && checkAlternationMatch(testPos.locator[lvTest.alternation].toString().split(","), lvTestAlt.toString().split(",")) && getTests(pos)[0].def !== "")))) && buffer[pos] === getPlaceholder(pos, testPos.match)) {
  1795. bl--;
  1796. } else break;
  1797. }
  1798. return returnDefinition ? {
  1799. "l": bl,
  1800. "def": positions[bl] ? positions[bl].match : undefined
  1801. } : bl;
  1802. }
  1803. function clearOptionalTail(buffer) {
  1804. var rl = determineLastRequiredPosition(),
  1805. lmib = buffer.length - 1;
  1806. for (; lmib > rl; lmib--) {
  1807. if (isMask(lmib)) break; //fixme ismask is not good enough
  1808. }
  1809. buffer.splice(rl, lmib + 1 - rl);
  1810. return buffer;
  1811. }
  1812. function isComplete(buffer) { //return true / false / undefined (repeat *)
  1813. if ($.isFunction(opts.isComplete)) return opts.isComplete(buffer, opts);
  1814. if (opts.repeat === "*") return undefined;
  1815. var complete = false,
  1816. lrp = determineLastRequiredPosition(true),
  1817. aml = seekPrevious(lrp.l);
  1818. if (lrp.def === undefined || lrp.def.newBlockMarker || lrp.def.optionality || lrp.def.optionalQuantifier) {
  1819. complete = true;
  1820. for (var i = 0; i <= aml; i++) {
  1821. var test = getTestTemplate(i).match;
  1822. if ((test.fn !== null && getMaskSet().validPositions[i] === undefined && test.optionality !== true && test.optionalQuantifier !== true) || (test.fn === null && buffer[i] !== getPlaceholder(i, test))) {
  1823. complete = false;
  1824. break;
  1825. }
  1826. }
  1827. }
  1828. return complete;
  1829. }
  1830. var EventRuler = {
  1831. on: function (input, eventName, eventHandler) {
  1832. var ev = function (e) {
  1833. // console.log("triggered " + e.type);
  1834. if (this.inputmask === undefined && this.nodeName !== "FORM") { //happens when cloning an object with jquery.clone
  1835. var imOpts = $.data(this, "_inputmask_opts");
  1836. if (imOpts)(new Inputmask(imOpts)).mask(this);
  1837. else EventRuler.off(this);
  1838. } else if (e.type !== "setvalue" && (this.disabled || (this.readOnly && !(e.type === "keydown" && (e.ctrlKey && e.keyCode === 67) || (opts.tabThrough === false && e.keyCode === Inputmask.keyCode.TAB))))) {
  1839. e.preventDefault();
  1840. } else {
  1841. switch (e.type) {
  1842. case "input":
  1843. if (skipInputEvent === true) {
  1844. skipInputEvent = false;
  1845. return e.preventDefault();
  1846. }
  1847. break;
  1848. case "keydown":
  1849. //Safari 5.1.x - modal dialog fires keypress twice workaround
  1850. skipKeyPressEvent = false;
  1851. skipInputEvent = false;
  1852. break;
  1853. case "keypress":
  1854. if (skipKeyPressEvent === true) {
  1855. return e.preventDefault();
  1856. }
  1857. skipKeyPressEvent = true;
  1858. break;
  1859. case "click":
  1860. if (iemobile) {
  1861. var that = this;
  1862. setTimeout(function () {
  1863. eventHandler.apply(that, arguments);
  1864. }, 0);
  1865. return false;
  1866. }
  1867. break;
  1868. }
  1869. // console.log("executed " + e.type);
  1870. var returnVal = eventHandler.apply(this, arguments);
  1871. if (returnVal === false) {
  1872. e.preventDefault();
  1873. e.stopPropagation();
  1874. }
  1875. return returnVal;
  1876. }
  1877. };
  1878. //keep instance of the event
  1879. input.inputmask.events[eventName] = input.inputmask.events[eventName] || [];
  1880. input.inputmask.events[eventName].push(ev);
  1881. if ($.inArray(eventName, ["submit", "reset"]) !== -1) {
  1882. if (input.form != null) $(input.form).on(eventName, ev);
  1883. } else {
  1884. $(input).on(eventName, ev);
  1885. }
  1886. },
  1887. off: function (input, event) {
  1888. if (input.inputmask && input.inputmask.events) {
  1889. var events;
  1890. if (event) {
  1891. events = [];
  1892. events[event] = input.inputmask.events[event];
  1893. } else {
  1894. events = input.inputmask.events;
  1895. }
  1896. $.each(events, function (eventName, evArr) {
  1897. while (evArr.length > 0) {
  1898. var ev = evArr.pop();
  1899. if ($.inArray(eventName, ["submit", "reset"]) !== -1) {
  1900. if (input.form != null) $(input.form).off(eventName, ev);
  1901. } else {
  1902. $(input).off(eventName, ev);
  1903. }
  1904. }
  1905. delete input.inputmask.events[eventName];
  1906. });
  1907. }
  1908. }
  1909. };
  1910. function patchValueProperty(npt) {
  1911. var valueGet;
  1912. var valueSet;
  1913. function patchValhook(type) {
  1914. if ($.valHooks && ($.valHooks[type] === undefined || $.valHooks[type].inputmaskpatch !== true)) {
  1915. var valhookGet = $.valHooks[type] && $.valHooks[type].get ? $.valHooks[type].get : function (elem) {
  1916. return elem.value;
  1917. };
  1918. var valhookSet = $.valHooks[type] && $.valHooks[type].set ? $.valHooks[type].set : function (elem, value) {
  1919. elem.value = value;
  1920. return elem;
  1921. };
  1922. $.valHooks[type] = {
  1923. get: function (elem) {
  1924. if (elem.inputmask) {
  1925. if (elem.inputmask.opts.autoUnmask) {
  1926. return elem.inputmask.unmaskedvalue();
  1927. } else {
  1928. var result = valhookGet(elem);
  1929. return getLastValidPosition(undefined, undefined, elem.inputmask.maskset.validPositions) !== -1 || opts.nullable !== true ? result : "";
  1930. }
  1931. } else return valhookGet(elem);
  1932. },
  1933. set: function (elem, value) {
  1934. var $elem = $(elem),
  1935. result;
  1936. result = valhookSet(elem, value);
  1937. if (elem.inputmask) {
  1938. $elem.trigger("setvalue");
  1939. }
  1940. return result;
  1941. },
  1942. inputmaskpatch: true
  1943. };
  1944. }
  1945. }
  1946. function getter() {
  1947. if (this.inputmask) {
  1948. return this.inputmask.opts.autoUnmask ?
  1949. this.inputmask.unmaskedvalue() :
  1950. (getLastValidPosition() !== -1 || opts.nullable !== true ?
  1951. (document.activeElement === this && opts.clearMaskOnLostFocus ?
  1952. (isRTL ? clearOptionalTail(getBuffer().slice()).reverse() : clearOptionalTail(getBuffer().slice())).join("") :
  1953. valueGet.call(this)) :
  1954. "");
  1955. } else return valueGet.call(this);
  1956. }
  1957. function setter(value) {
  1958. valueSet.call(this, value);
  1959. if (this.inputmask) {
  1960. $(this).trigger("setvalue");
  1961. }
  1962. }
  1963. function installNativeValueSetFallback(npt) {
  1964. EventRuler.on(npt, "mouseenter", function (event) {
  1965. var $input = $(this),
  1966. input = this,
  1967. value = input.inputmask._valueGet();
  1968. if (value !== getBuffer().join("") /*&& getLastValidPosition() > 0*/) {
  1969. $input.trigger("setvalue");
  1970. }
  1971. });
  1972. }
  1973. if (!npt.inputmask.__valueGet) {
  1974. if (Object.getOwnPropertyDescriptor) {
  1975. if (typeof Object.getPrototypeOf !== "function") {
  1976. Object.getPrototypeOf = typeof "test".__proto__ === "object" ? function (object) {
  1977. return object.__proto__;
  1978. } : function (object) {
  1979. return object.constructor.prototype;
  1980. };
  1981. }
  1982. var valueProperty = Object.getPrototypeOf ? Object.getOwnPropertyDescriptor(Object.getPrototypeOf(npt), "value") : undefined;
  1983. if (valueProperty && valueProperty.get && valueProperty.set) {
  1984. valueGet = valueProperty.get;
  1985. valueSet = valueProperty.set;
  1986. Object.defineProperty(npt, "value", {
  1987. get: getter,
  1988. set: setter,
  1989. configurable: true
  1990. });
  1991. } else if (npt.tagName !== "INPUT") {
  1992. valueGet = function () {
  1993. return this.textContent;
  1994. };
  1995. valueSet = function (value) {
  1996. this.textContent = value;
  1997. };
  1998. Object.defineProperty(npt, "value", {
  1999. get: getter,
  2000. set: setter,
  2001. configurable: true
  2002. });
  2003. }
  2004. } else if (document.__lookupGetter__ && npt.__lookupGetter__("value")) {
  2005. valueGet = npt.__lookupGetter__("value");
  2006. valueSet = npt.__lookupSetter__("value");
  2007. npt.__defineGetter__("value", getter);
  2008. npt.__defineSetter__("value", setter);
  2009. }
  2010. npt.inputmask.__valueGet = valueGet; //store native property getter
  2011. npt.inputmask._valueGet = function (overruleRTL) {
  2012. return isRTL && overruleRTL !== true ? valueGet.call(this.el).split("").reverse().join("") : valueGet.call(this.el);
  2013. };
  2014. npt.inputmask.__valueSet = valueSet; //store native property setter
  2015. npt.inputmask._valueSet = function (value, overruleRTL) { //null check is needed for IE8 => otherwise converts to "null"
  2016. valueSet.call(this.el, (value === null || value === undefined) ? "" : ((overruleRTL !== true && isRTL) ? value.split("").reverse().join("") : value));
  2017. };
  2018. if (valueGet === undefined) { //jquery.val fallback
  2019. valueGet = function () {
  2020. return this.value;
  2021. };
  2022. valueSet = function (value) {
  2023. this.value = value;
  2024. };
  2025. patchValhook(npt.type);
  2026. installNativeValueSetFallback(npt);
  2027. }
  2028. }
  2029. }
  2030. function handleRemove(input, k, pos, strict) {
  2031. function generalize() {
  2032. if (opts.keepStatic) {
  2033. var validInputs = [],
  2034. lastAlt = getLastValidPosition(-1, true), positionsClone = $.extend(true, {}, getMaskSet().validPositions),
  2035. prevAltPos = getMaskSet().validPositions[lastAlt];
  2036. //find last alternation
  2037. for (; lastAlt >= 0; lastAlt--) {
  2038. var altPos = getMaskSet().validPositions[lastAlt];
  2039. if (altPos) {
  2040. if (/*altPos.generatedInput !== true &&*/ /[0-9a-bA-Z]/.test(altPos.input)) {
  2041. validInputs.push(altPos.input);
  2042. }
  2043. delete getMaskSet().validPositions[lastAlt];
  2044. if (altPos.alternation !== undefined && altPos.locator[altPos.alternation] !== prevAltPos.locator[altPos.alternation]) {
  2045. break;
  2046. }
  2047. prevAltPos = altPos;
  2048. }
  2049. }
  2050. if (lastAlt > -1) {
  2051. getMaskSet().p = seekNext(getLastValidPosition(-1, true));
  2052. while (validInputs.length > 0) {
  2053. var keypress = new $.Event("keypress");
  2054. keypress.which = validInputs.pop().charCodeAt(0);
  2055. keypressEvent.call(input, keypress, true, false, false, getMaskSet().p);
  2056. }
  2057. } else getMaskSet().validPositions = $.extend(true, {}, positionsClone); //restore original positions
  2058. }
  2059. }
  2060. if (opts.numericInput || isRTL) {
  2061. if (k === Inputmask.keyCode.BACKSPACE) {
  2062. k = Inputmask.keyCode.DELETE;
  2063. } else if (k === Inputmask.keyCode.DELETE) {
  2064. k = Inputmask.keyCode.BACKSPACE;
  2065. }
  2066. if (isRTL) {
  2067. var pend = pos.end;
  2068. pos.end = pos.begin;
  2069. pos.begin = pend;
  2070. }
  2071. }
  2072. if (k === Inputmask.keyCode.BACKSPACE && (pos.end - pos.begin < 1 || opts.insertMode === false)) {
  2073. pos.begin = seekPrevious(pos.begin);
  2074. if (getMaskSet().validPositions[pos.begin] !== undefined && (getMaskSet().validPositions[pos.begin].input === opts.groupSeparator || getMaskSet().validPositions[pos.begin].input === opts.radixPoint)) {
  2075. pos.begin--;
  2076. }
  2077. } else if (k === Inputmask.keyCode.DELETE && pos.begin === pos.end) {
  2078. pos.end = isMask(pos.end, true) ? pos.end + 1 : seekNext(pos.end) + 1;
  2079. if (getMaskSet().validPositions[pos.begin] !== undefined && (getMaskSet().validPositions[pos.begin].input === opts.groupSeparator || getMaskSet().validPositions[pos.begin].input === opts.radixPoint)) {
  2080. pos.end++;
  2081. }
  2082. }
  2083. stripValidPositions(pos.begin, pos.end, false, strict);
  2084. if (strict !== true) {
  2085. generalize(); //revert the alternation
  2086. }
  2087. var lvp = getLastValidPosition(pos.begin, true);
  2088. if (lvp < pos.begin) {
  2089. //if (lvp === -1) resetMaskSet();
  2090. getMaskSet().p = seekNext(lvp);
  2091. } else if (strict !== true) {
  2092. getMaskSet().p = pos.begin;
  2093. }
  2094. }
  2095. function keydownEvent(e) {
  2096. var input = this,
  2097. $input = $(input),
  2098. k = e.keyCode,
  2099. pos = caret(input);
  2100. //backspace, delete, and escape get special treatment
  2101. if (k === Inputmask.keyCode.BACKSPACE || k === Inputmask.keyCode.DELETE || (iphone && k === Inputmask.keyCode.BACKSPACE_SAFARI) || (e.ctrlKey && k === Inputmask.keyCode.X && !isInputEventSupported("cut"))) { //backspace/delete
  2102. e.preventDefault(); //stop default action but allow propagation
  2103. handleRemove(input, k, pos);
  2104. writeBuffer(input, getBuffer(true), getMaskSet().p, e, true);
  2105. if (input.inputmask._valueGet() === getBufferTemplate().join("")) {
  2106. $input.trigger("cleared");
  2107. } else if (isComplete(getBuffer()) === true) {
  2108. $input.trigger("complete");
  2109. }
  2110. if (opts.showTooltip) { //update tooltip
  2111. input.title = opts.tooltip || getMaskSet().mask;
  2112. }
  2113. } else if (k === Inputmask.keyCode.END || k === Inputmask.keyCode.PAGE_DOWN) { //when END or PAGE_DOWN pressed set position at lastmatch
  2114. e.preventDefault();
  2115. var caretPos = seekNext(getLastValidPosition());
  2116. if (!opts.insertMode && caretPos === getMaskSet().maskLength && !e.shiftKey) caretPos--;
  2117. caret(input, e.shiftKey ? pos.begin : caretPos, caretPos, true);
  2118. } else if ((k === Inputmask.keyCode.HOME && !e.shiftKey) || k === Inputmask.keyCode.PAGE_UP) { //Home or page_up
  2119. e.preventDefault();
  2120. caret(input, 0, e.shiftKey ? pos.begin : 0, true);
  2121. } else if (((opts.undoOnEscape && k === Inputmask.keyCode.ESCAPE) || (k === 90 && e.ctrlKey)) && e.altKey !== true) { //escape && undo && #762
  2122. checkVal(input, true, false, undoValue.split(""));
  2123. $input.trigger("click");
  2124. } else if (k === Inputmask.keyCode.INSERT && !(e.shiftKey || e.ctrlKey)) { //insert
  2125. opts.insertMode = !opts.insertMode;
  2126. caret(input, !opts.insertMode && pos.begin === getMaskSet().maskLength ? pos.begin - 1 : pos.begin);
  2127. } else if (opts.tabThrough === true && k === Inputmask.keyCode.TAB) {
  2128. if (e.shiftKey === true) {
  2129. if (getTest(pos.begin).match.fn === null) {
  2130. pos.begin = seekNext(pos.begin);
  2131. }
  2132. pos.end = seekPrevious(pos.begin, true);
  2133. pos.begin = seekPrevious(pos.end, true);
  2134. } else {
  2135. pos.begin = seekNext(pos.begin, true);
  2136. pos.end = seekNext(pos.begin, true);
  2137. if (pos.end < getMaskSet().maskLength) pos.end--;
  2138. }
  2139. if (pos.begin < getMaskSet().maskLength) {
  2140. e.preventDefault();
  2141. caret(input, pos.begin, pos.end);
  2142. }
  2143. } else if (opts.insertMode === false && !e.shiftKey) {
  2144. if (k === Inputmask.keyCode.RIGHT) {
  2145. setTimeout(function () {
  2146. var caretPos = caret(input);
  2147. caret(input, caretPos.begin);
  2148. }, 0);
  2149. } else if (k === Inputmask.keyCode.LEFT) {
  2150. setTimeout(function () {
  2151. var caretPos = caret(input);
  2152. caret(input, isRTL ? caretPos.begin + 1 : caretPos.begin - 1);
  2153. }, 0);
  2154. }
  2155. }
  2156. opts.onKeyDown.call(this, e, getBuffer(), caret(input).begin, opts);
  2157. ignorable = $.inArray(k, opts.ignorables) !== -1;
  2158. }
  2159. function keypressEvent(e, checkval, writeOut, strict, ndx) {
  2160. var input = this,
  2161. $input = $(input),
  2162. k = e.which || e.charCode || e.keyCode;
  2163. if (checkval !== true && (!(e.ctrlKey && e.altKey) && (e.ctrlKey || e.metaKey || ignorable))) {
  2164. if (k === Inputmask.keyCode.ENTER && undoValue !== getBuffer().join("")) {
  2165. undoValue = getBuffer().join("");
  2166. // e.preventDefault();
  2167. setTimeout(function () {
  2168. $input.trigger("change");
  2169. }, 0);
  2170. }
  2171. return true;
  2172. } else {
  2173. if (k) {
  2174. //special treat the decimal separator
  2175. if (k === 46 && e.shiftKey === false && opts.radixPoint === ",") k = 44;
  2176. var pos = checkval ? {
  2177. begin: ndx,
  2178. end: ndx
  2179. } : caret(input),
  2180. forwardPosition, c = String.fromCharCode(k);
  2181. getMaskSet().writeOutBuffer = true;
  2182. var valResult = isValid(pos, c, strict);
  2183. if (valResult !== false) {
  2184. resetMaskSet(true);
  2185. forwardPosition = valResult.caret !== undefined ? valResult.caret : checkval ? valResult.pos + 1 : seekNext(valResult.pos);
  2186. getMaskSet().p = forwardPosition; //needed for checkval
  2187. }
  2188. if (writeOut !== false) {
  2189. var self = this;
  2190. setTimeout(function () {
  2191. opts.onKeyValidation.call(self, k, valResult, opts);
  2192. }, 0);
  2193. if (getMaskSet().writeOutBuffer && valResult !== false) {
  2194. var buffer = getBuffer();
  2195. writeBuffer(input, buffer, (opts.numericInput && valResult.caret === undefined) ? seekPrevious(forwardPosition) : forwardPosition, e, checkval !== true);
  2196. if (checkval !== true) {
  2197. setTimeout(function () { //timeout needed for IE
  2198. if (isComplete(buffer) === true) $input.trigger("complete");
  2199. }, 0);
  2200. }
  2201. }
  2202. }
  2203. if (opts.showTooltip) { //update tooltip
  2204. input.title = opts.tooltip || getMaskSet().mask;
  2205. }
  2206. e.preventDefault();
  2207. if (checkval) {
  2208. valResult.forwardPosition = forwardPosition;
  2209. return valResult;
  2210. }
  2211. }
  2212. }
  2213. }
  2214. function pasteEvent(e) {
  2215. var input = this,
  2216. ev = e.originalEvent || e,
  2217. $input = $(input),
  2218. inputValue = input.inputmask._valueGet(true),
  2219. caretPos = caret(input),
  2220. tempValue;
  2221. if (isRTL) {
  2222. tempValue = caretPos.end;
  2223. caretPos.end = caretPos.begin;
  2224. caretPos.begin = tempValue;
  2225. }
  2226. var valueBeforeCaret = inputValue.substr(0, caretPos.begin),
  2227. valueAfterCaret = inputValue.substr(caretPos.end, inputValue.length);
  2228. if (valueBeforeCaret === (isRTL ? getBufferTemplate().reverse() : getBufferTemplate()).slice(0, caretPos.begin).join("")) valueBeforeCaret = "";
  2229. if (valueAfterCaret === (isRTL ? getBufferTemplate().reverse() : getBufferTemplate()).slice(caretPos.end).join("")) valueAfterCaret = "";
  2230. if (isRTL) {
  2231. tempValue = valueBeforeCaret;
  2232. valueBeforeCaret = valueAfterCaret;
  2233. valueAfterCaret = tempValue;
  2234. }
  2235. if (window.clipboardData && window.clipboardData.getData) { // IE
  2236. inputValue = valueBeforeCaret + window.clipboardData.getData("Text") + valueAfterCaret;
  2237. } else if (ev.clipboardData && ev.clipboardData.getData) {
  2238. inputValue = valueBeforeCaret + ev.clipboardData.getData("text/plain") + valueAfterCaret;
  2239. }
  2240. var pasteValue = inputValue;
  2241. if ($.isFunction(opts.onBeforePaste)) {
  2242. pasteValue = opts.onBeforePaste(inputValue, opts);
  2243. if (pasteValue === false) {
  2244. return e.preventDefault();
  2245. }
  2246. if (!pasteValue) {
  2247. pasteValue = inputValue;
  2248. }
  2249. }
  2250. checkVal(input, false, false, isRTL ? pasteValue.split("").reverse() : pasteValue.toString().split(""));
  2251. writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()), e, undoValue !== getBuffer().join(""));
  2252. if (isComplete(getBuffer()) === true) {
  2253. $input.trigger("complete");
  2254. }
  2255. return e.preventDefault();
  2256. }
  2257. function inputFallBackEvent(e) { //fallback when keypress fails
  2258. var input = this,
  2259. inputValue = input.inputmask._valueGet();
  2260. if (getBuffer().join("") !== inputValue) {
  2261. var caretPos = caret(input);
  2262. inputValue = inputValue.replace(new RegExp("(" + Inputmask.escapeRegex(getBufferTemplate().join("")) + ")*"), "");
  2263. if (iemobile) { //iemobile just set the character at the end althought the caret position is correctly set
  2264. var inputChar = inputValue.replace(getBuffer().join(""), "");
  2265. if (inputChar.length === 1) {
  2266. var keypress = new $.Event("keypress");
  2267. keypress.which = inputChar.charCodeAt(0);
  2268. keypressEvent.call(input, keypress, true, true, false, getMaskSet().validPositions[caretPos.begin - 1] ? caretPos.begin : caretPos.begin - 1);
  2269. return false;
  2270. }
  2271. }
  2272. if (caretPos.begin > inputValue.length) {
  2273. caret(input, inputValue.length);
  2274. caretPos = caret(input);
  2275. }
  2276. //detect & treat possible backspace
  2277. if ((getBuffer().length - inputValue.length) === 1 && inputValue.charAt(caretPos.begin) !== getBuffer()[caretPos.begin] && inputValue.charAt(caretPos.begin + 1) !== getBuffer()[caretPos.begin] && !isMask(caretPos.begin)) {
  2278. e.keyCode = Inputmask.keyCode.BACKSPACE;
  2279. keydownEvent.call(input, e);
  2280. } else {
  2281. var lvp = getLastValidPosition() + 1;
  2282. var bufferTemplate = getBuffer().slice(lvp).join('');
  2283. while (inputValue.match(Inputmask.escapeRegex(bufferTemplate) + "$") === null) {
  2284. bufferTemplate = bufferTemplate.slice(1);
  2285. }
  2286. inputValue = inputValue.replace(bufferTemplate, "");
  2287. inputValue = inputValue.split("");
  2288. checkVal(input, true, false, inputValue, e);
  2289. if (isComplete(getBuffer()) === true) {
  2290. $(input).trigger("complete");
  2291. }
  2292. }
  2293. e.preventDefault();
  2294. }
  2295. }
  2296. function setValueEvent(e) {
  2297. var input = this,
  2298. value = input.inputmask._valueGet();
  2299. checkVal(input, true, false, ($.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask(value, opts) || value) : value).split(""));
  2300. undoValue = getBuffer().join("");
  2301. if ((opts.clearMaskOnLostFocus || opts.clearIncomplete) && input.inputmask._valueGet() === getBufferTemplate().join("")) {
  2302. input.inputmask._valueSet("");
  2303. }
  2304. }
  2305. function focusEvent(e) {
  2306. var input = this,
  2307. nptValue = input.inputmask._valueGet();
  2308. if (opts.showMaskOnFocus && (!opts.showMaskOnHover || (opts.showMaskOnHover && nptValue === ""))) {
  2309. if (input.inputmask._valueGet() !== getBuffer().join("")) {
  2310. writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()));
  2311. }
  2312. } else if (mouseEnter === false) { //only executed on focus without mouseenter
  2313. caret(input, seekNext(getLastValidPosition()));
  2314. }
  2315. if (opts.positionCaretOnTab === true) {
  2316. setTimeout(function () {
  2317. clickEvent.apply(this, [e]);
  2318. }, 0);
  2319. }
  2320. undoValue = getBuffer().join("");
  2321. }
  2322. function mouseleaveEvent(e) {
  2323. var input = this;
  2324. mouseEnter = false;
  2325. if (opts.clearMaskOnLostFocus && document.activeElement !== input) {
  2326. var buffer = getBuffer().slice(),
  2327. nptValue = input.inputmask._valueGet();
  2328. if (nptValue !== input.getAttribute("placeholder") && nptValue !== "") {
  2329. if (getLastValidPosition() === -1 && nptValue === getBufferTemplate().join("")) {
  2330. buffer = [];
  2331. } else { //clearout optional tail of the mask
  2332. clearOptionalTail(buffer);
  2333. }
  2334. writeBuffer(input, buffer);
  2335. }
  2336. }
  2337. }
  2338. function clickEvent(e) {
  2339. function doRadixFocus(clickPos) {
  2340. if (opts.radixPoint !== "") {
  2341. var vps = getMaskSet().validPositions;
  2342. if (vps[clickPos] === undefined || (vps[clickPos].input === getPlaceholder(clickPos))) {
  2343. if (clickPos < seekNext(-1)) return true;
  2344. var radixPos = $.inArray(opts.radixPoint, getBuffer());
  2345. if (radixPos !== -1) {
  2346. for (var vp in vps) {
  2347. if (radixPos < vp && vps[vp].input !== getPlaceholder(vp)) {
  2348. return false;
  2349. }
  2350. }
  2351. return true;
  2352. }
  2353. }
  2354. }
  2355. return false;
  2356. }
  2357. var input = this;
  2358. setTimeout(function () { //needed for Chrome ~ initial selection clears after the clickevent
  2359. if (document.activeElement === input) {
  2360. var selectedCaret = caret(input);
  2361. if (selectedCaret.begin === selectedCaret.end) {
  2362. switch (opts.positionCaretOnClick) {
  2363. case "none":
  2364. break;
  2365. case "radixFocus":
  2366. if (doRadixFocus(selectedCaret.begin)) {
  2367. caret(input, opts.numericInput ? seekNext($.inArray(opts.radixPoint, getBuffer())) : $.inArray(opts.radixPoint, getBuffer()));
  2368. break;
  2369. }
  2370. default: //lvp:
  2371. var clickPosition = selectedCaret.begin,
  2372. lvclickPosition = getLastValidPosition(clickPosition, true),
  2373. lastPosition = seekNext(lvclickPosition);
  2374. if (clickPosition < lastPosition) {
  2375. caret(input, !isMask(clickPosition) && !isMask(clickPosition - 1) ? seekNext(clickPosition) : clickPosition);
  2376. } else {
  2377. var placeholder = getPlaceholder(lastPosition);
  2378. if ((placeholder !== "" && getBuffer()[lastPosition] !== placeholder) || (!isMask(lastPosition, true) && getTest(lastPosition).match.def === placeholder)) {
  2379. lastPosition = seekNext(lastPosition);
  2380. }
  2381. caret(input, lastPosition);
  2382. }
  2383. break;
  2384. }
  2385. }
  2386. }
  2387. }, 0);
  2388. }
  2389. function dblclickEvent(e) {
  2390. var input = this;
  2391. setTimeout(function () {
  2392. caret(input, 0, seekNext(getLastValidPosition()));
  2393. }, 0);
  2394. }
  2395. function cutEvent(e) {
  2396. var input = this,
  2397. $input = $(input),
  2398. pos = caret(input),
  2399. ev = e.originalEvent || e;
  2400. //correct clipboardData
  2401. var clipboardData = window.clipboardData || ev.clipboardData,
  2402. clipData = isRTL ? getBuffer().slice(pos.end, pos.begin) : getBuffer().slice(pos.begin, pos.end);
  2403. clipboardData.setData("text", isRTL ? clipData.reverse().join("") : clipData.join(""));
  2404. if (document.execCommand) document.execCommand("copy"); // copy selected content to system clipbaord
  2405. handleRemove(input, Inputmask.keyCode.DELETE, pos);
  2406. writeBuffer(input, getBuffer(), getMaskSet().p, e, undoValue !== getBuffer().join(""));
  2407. if (input.inputmask._valueGet() === getBufferTemplate().join("")) {
  2408. $input.trigger("cleared");
  2409. }
  2410. if (opts.showTooltip) { //update tooltip
  2411. input.title = opts.tooltip || getMaskSet().mask;
  2412. }
  2413. }
  2414. function blurEvent(e) {
  2415. var $input = $(this),
  2416. input = this;
  2417. if (input.inputmask) {
  2418. var nptValue = input.inputmask._valueGet(),
  2419. buffer = getBuffer().slice();
  2420. if (undoValue !== buffer.join("")) {
  2421. setTimeout(function () { //change event should be triggered after the other buffer manipulations on blur
  2422. $input.trigger("change");
  2423. undoValue = buffer.join("");
  2424. }, 0);
  2425. }
  2426. if (nptValue !== "") {
  2427. if (opts.clearMaskOnLostFocus) {
  2428. if (getLastValidPosition() === -1 && nptValue === getBufferTemplate().join("")) {
  2429. buffer = [];
  2430. } else { //clearout optional tail of the mask
  2431. clearOptionalTail(buffer);
  2432. }
  2433. }
  2434. if (isComplete(buffer) === false) {
  2435. setTimeout(function () {
  2436. $input.trigger("incomplete");
  2437. }, 0);
  2438. if (opts.clearIncomplete) {
  2439. resetMaskSet();
  2440. if (opts.clearMaskOnLostFocus) {
  2441. buffer = [];
  2442. } else {
  2443. buffer = getBufferTemplate().slice();
  2444. }
  2445. }
  2446. }
  2447. writeBuffer(input, buffer, undefined, e);
  2448. }
  2449. }
  2450. }
  2451. function mouseenterEvent(e) {
  2452. var input = this;
  2453. mouseEnter = true;
  2454. if (document.activeElement !== input && opts.showMaskOnHover) {
  2455. if (input.inputmask._valueGet() !== getBuffer().join("")) {
  2456. writeBuffer(input, getBuffer());
  2457. }
  2458. }
  2459. }
  2460. function submitEvent(e) { //trigger change on submit if any
  2461. if (undoValue !== getBuffer().join("")) {
  2462. $el.trigger("change");
  2463. }
  2464. if (opts.clearMaskOnLostFocus && getLastValidPosition() === -1 && el.inputmask._valueGet && el.inputmask._valueGet() === getBufferTemplate().join("")) {
  2465. el.inputmask._valueSet(""); //clear masktemplete on submit and still has focus
  2466. }
  2467. if (opts.removeMaskOnSubmit) {
  2468. el.inputmask._valueSet(el.inputmask.unmaskedvalue(), true);
  2469. setTimeout(function () {
  2470. writeBuffer(el, getBuffer());
  2471. }, 0);
  2472. }
  2473. }
  2474. function resetEvent(e) {
  2475. setTimeout(function () {
  2476. $el.trigger("setvalue");
  2477. }, 0);
  2478. }
  2479. function mask(elem) {
  2480. el = elem;
  2481. $el = $(el);
  2482. //show tooltip
  2483. if (opts.showTooltip) {
  2484. el.title = opts.tooltip || getMaskSet().mask;
  2485. }
  2486. if (el.dir === "rtl" || opts.rightAlign) {
  2487. el.style.textAlign = "right";
  2488. }
  2489. if (el.dir === "rtl" || opts.numericInput) {
  2490. el.dir = "ltr";
  2491. el.removeAttribute("dir");
  2492. el.inputmask.isRTL = true;
  2493. isRTL = true;
  2494. }
  2495. //unbind all events - to make sure that no other mask will interfere when re-masking
  2496. EventRuler.off(el);
  2497. patchValueProperty(el);
  2498. if (isElementTypeSupported(el, opts)) {
  2499. //bind events
  2500. EventRuler.on(el, "submit", submitEvent);
  2501. EventRuler.on(el, "reset", resetEvent);
  2502. EventRuler.on(el, "mouseenter", mouseenterEvent);
  2503. EventRuler.on(el, "blur", blurEvent);
  2504. EventRuler.on(el, "focus", focusEvent);
  2505. EventRuler.on(el, "mouseleave", mouseleaveEvent);
  2506. EventRuler.on(el, "click", clickEvent);
  2507. EventRuler.on(el, "dblclick", dblclickEvent);
  2508. EventRuler.on(el, "paste", pasteEvent);
  2509. EventRuler.on(el, "dragdrop", pasteEvent);
  2510. EventRuler.on(el, "drop", pasteEvent);
  2511. EventRuler.on(el, "cut", cutEvent);
  2512. EventRuler.on(el, "complete", opts.oncomplete);
  2513. EventRuler.on(el, "incomplete", opts.onincomplete);
  2514. EventRuler.on(el, "cleared", opts.oncleared);
  2515. if (opts.inputEventOnly !== true) {
  2516. EventRuler.on(el, "keydown", keydownEvent);
  2517. EventRuler.on(el, "keypress", keypressEvent);
  2518. }
  2519. EventRuler.on(el, "input", inputFallBackEvent);
  2520. }
  2521. EventRuler.on(el, "setvalue", setValueEvent);
  2522. //apply mask
  2523. getBufferTemplate(); //initialize the buffer and getmasklength
  2524. if (el.inputmask._valueGet() !== "" || opts.clearMaskOnLostFocus === false || document.activeElement === el) {
  2525. var initialValue = $.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask(el.inputmask._valueGet(), opts) || el.inputmask._valueGet()) : el.inputmask._valueGet();
  2526. checkVal(el, true, false, initialValue.split(""));
  2527. var buffer = getBuffer().slice();
  2528. undoValue = buffer.join("");
  2529. // Wrap document.activeElement in a try/catch block since IE9 throw "Unspecified error" if document.activeElement is undefined when we are in an IFrame.
  2530. if (isComplete(buffer) === false) {
  2531. if (opts.clearIncomplete) {
  2532. resetMaskSet();
  2533. }
  2534. }
  2535. if (opts.clearMaskOnLostFocus && document.activeElement !== el) {
  2536. if (getLastValidPosition() === -1) {
  2537. buffer = [];
  2538. } else {
  2539. clearOptionalTail(buffer);
  2540. }
  2541. }
  2542. writeBuffer(el, buffer);
  2543. if (document.activeElement === el) { //position the caret when in focus
  2544. caret(el, seekNext(getLastValidPosition()));
  2545. }
  2546. }
  2547. }
  2548. //action object
  2549. var valueBuffer;
  2550. if (actionObj !== undefined) {
  2551. switch (actionObj.action) {
  2552. case "isComplete":
  2553. el = actionObj.el;
  2554. return isComplete(getBuffer());
  2555. case "unmaskedvalue":
  2556. el = actionObj.el;
  2557. if (el !== undefined && el.inputmask !== undefined) {
  2558. maskset = el.inputmask.maskset;
  2559. opts = el.inputmask.opts;
  2560. isRTL = el.inputmask.isRTL;
  2561. } else {
  2562. valueBuffer = actionObj.value;
  2563. if (opts.numericInput) {
  2564. isRTL = true;
  2565. }
  2566. valueBuffer = ($.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask(valueBuffer, opts) || valueBuffer) : valueBuffer).split("");
  2567. checkVal(undefined, false, false, isRTL ? valueBuffer.reverse() : valueBuffer);
  2568. if ($.isFunction(opts.onBeforeWrite)) opts.onBeforeWrite(undefined, getBuffer(), 0, opts);
  2569. }
  2570. return unmaskedvalue(el);
  2571. case "mask":
  2572. el = actionObj.el;
  2573. maskset = el.inputmask.maskset;
  2574. opts = el.inputmask.opts;
  2575. isRTL = el.inputmask.isRTL;
  2576. mask(el);
  2577. break;
  2578. case "format":
  2579. if (opts.numericInput) {
  2580. isRTL = true;
  2581. }
  2582. valueBuffer = ($.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask(actionObj.value, opts) || actionObj.value) : actionObj.value).split("");
  2583. checkVal(undefined, false, false, isRTL ? valueBuffer.reverse() : valueBuffer);
  2584. if ($.isFunction(opts.onBeforeWrite)) opts.onBeforeWrite(undefined, getBuffer(), 0, opts);
  2585. if (actionObj.metadata) {
  2586. return {
  2587. value: isRTL ? getBuffer().slice().reverse().join("") : getBuffer().join(""),
  2588. metadata: maskScope({
  2589. "action": "getmetadata"
  2590. }, maskset, opts)
  2591. };
  2592. }
  2593. return isRTL ? getBuffer().slice().reverse().join("") : getBuffer().join("");
  2594. case "isValid":
  2595. if (opts.numericInput) {
  2596. isRTL = true;
  2597. }
  2598. if (actionObj.value) {
  2599. valueBuffer = actionObj.value.split("");
  2600. checkVal(undefined, false, true, isRTL ? valueBuffer.reverse() : valueBuffer);
  2601. } else {
  2602. actionObj.value = getBuffer().join("");
  2603. }
  2604. var buffer = getBuffer();
  2605. var rl = determineLastRequiredPosition(),
  2606. lmib = buffer.length - 1;
  2607. for (; lmib > rl; lmib--) {
  2608. if (isMask(lmib)) break;
  2609. }
  2610. buffer.splice(rl, lmib + 1 - rl);
  2611. return isComplete(buffer) && actionObj.value === getBuffer().join("");
  2612. case "getemptymask":
  2613. return getBufferTemplate().join("");
  2614. case "remove":
  2615. el = actionObj.el;
  2616. $el = $(el);
  2617. maskset = el.inputmask.maskset;
  2618. opts = el.inputmask.opts;
  2619. //writeout the unmaskedvalue
  2620. el.inputmask._valueSet(unmaskedvalue(el));
  2621. //unbind all events
  2622. EventRuler.off(el);
  2623. //restore the value property
  2624. var valueProperty;
  2625. if (Object.getOwnPropertyDescriptor && Object.getPrototypeOf) {
  2626. valueProperty = Object.getOwnPropertyDescriptor(Object.getPrototypeOf(el), "value");
  2627. if (valueProperty) {
  2628. if (el.inputmask.__valueGet) {
  2629. Object.defineProperty(el, "value", {
  2630. get: el.inputmask.__valueGet,
  2631. set: el.inputmask.__valueSet,
  2632. configurable: true
  2633. });
  2634. }
  2635. }
  2636. } else if (document.__lookupGetter__ && el.__lookupGetter__("value")) {
  2637. if (el.inputmask.__valueGet) {
  2638. el.__defineGetter__("value", el.inputmask.__valueGet);
  2639. el.__defineSetter__("value", el.inputmask.__valueSet);
  2640. }
  2641. }
  2642. //clear data
  2643. el.inputmask = undefined;
  2644. break;
  2645. case "getmetadata":
  2646. if ($.isArray(maskset.metadata)) {
  2647. //find last alternation
  2648. var alternation, lvp = getLastValidPosition(undefined, true);
  2649. for (var firstAlt = lvp; firstAlt >= 0; firstAlt--) {
  2650. if (getMaskSet().validPositions[firstAlt] && getMaskSet().validPositions[firstAlt].alternation !== undefined) {
  2651. alternation = getMaskSet().validPositions[firstAlt].alternation;
  2652. break;
  2653. }
  2654. }
  2655. return alternation !== undefined ? maskset.metadata[getMaskSet().validPositions[firstAlt].locator[alternation]] : [];
  2656. }
  2657. return maskset.metadata;
  2658. }
  2659. }
  2660. }
  2661. //make inputmask available
  2662. window.Inputmask = Inputmask;
  2663. return Inputmask;
  2664. }));