inputmask.js 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868
  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: false, //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. };
  639. if (nocache !== true) {
  640. Inputmask.prototype.masksCache[opts.numericInput ? mask.split("").reverse().join("") : mask] = masksetDefinition;
  641. masksetDefinition = $.extend(true, {}, Inputmask.prototype.masksCache[opts.numericInput ? mask.split("").reverse().join("") : mask]);
  642. }
  643. } else masksetDefinition = $.extend(true, {}, Inputmask.prototype.masksCache[opts.numericInput ? mask.split("").reverse().join("") : mask]);
  644. return masksetDefinition;
  645. }
  646. }
  647. function preProcessMask(mask) {
  648. mask = mask.toString();
  649. // if (opts.numericInput) {
  650. // mask = mask.split('').reverse();
  651. // mask = mask.join('');
  652. // }
  653. return mask;
  654. }
  655. if ($.isFunction(opts.mask)) { //allow mask to be a preprocessing fn - should return a valid mask
  656. opts.mask = opts.mask(opts);
  657. }
  658. if ($.isArray(opts.mask)) {
  659. if (opts.mask.length > 1) {
  660. opts.keepStatic = opts.keepStatic === null ? true : opts.keepStatic; //enable by default when passing multiple masks when the option is not explicitly specified
  661. var altMask = "(";
  662. $.each(opts.numericInput ? opts.mask.reverse() : opts.mask, function (ndx, msk) {
  663. if (altMask.length > 1) {
  664. altMask += ")|(";
  665. }
  666. if (msk.mask !== undefined && !$.isFunction(msk.mask)) {
  667. altMask += preProcessMask(msk.mask);
  668. } else {
  669. altMask += preProcessMask(msk);
  670. }
  671. });
  672. altMask += ")";
  673. return generateMask(altMask, opts.mask);
  674. } else opts.mask = opts.mask.pop();
  675. }
  676. if (opts.mask) {
  677. if (opts.mask.mask !== undefined && !$.isFunction(opts.mask.mask)) {
  678. ms = generateMask(preProcessMask(opts.mask.mask), opts.mask);
  679. } else {
  680. ms = generateMask(preProcessMask(opts.mask), opts.mask);
  681. }
  682. }
  683. return ms;
  684. }
  685. var ua = navigator.userAgent,
  686. mobile = /mobile/i.test(ua),
  687. iemobile = /iemobile/i.test(ua),
  688. iphone = /iphone/i.test(ua) && !iemobile;
  689. //android = /android.*safari.*/i.test(ua) && !iemobile;
  690. //masking scope
  691. //actionObj definition see below
  692. function maskScope(actionObj, maskset, opts) {
  693. var isRTL = false,
  694. undoValue,
  695. el, $el,
  696. skipKeyPressEvent = false, //Safari 5.1.x - modal dialog fires keypress twice workaround
  697. skipInputEvent = false, //skip when triggered from within inputmask
  698. ignorable = false,
  699. maxLength,
  700. mouseEnter = true;
  701. //maskset helperfunctions
  702. function getMaskTemplate(baseOnInput, minimalPos, includeInput) {
  703. minimalPos = minimalPos || 0;
  704. var maskTemplate = [],
  705. ndxIntlzr, pos = 0,
  706. test, testPos, lvp = getLastValidPosition();
  707. maxLength = el !== undefined ? el.maxLength : undefined;
  708. if (maxLength === -1) maxLength = undefined;
  709. do {
  710. if (baseOnInput === true && getMaskSet().validPositions[pos]) {
  711. var validPos = getMaskSet().validPositions[pos];
  712. test = validPos.match;
  713. ndxIntlzr = validPos.locator.slice();
  714. maskTemplate.push(includeInput === true ? validPos.input : getPlaceholder(pos, test));
  715. } else {
  716. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  717. test = testPos.match;
  718. ndxIntlzr = testPos.locator.slice();
  719. if (opts.jitMasking === false || pos < lvp || (isFinite(opts.jitMasking) && opts.jitMasking > pos)) {
  720. maskTemplate.push(getPlaceholder(pos, test));
  721. }
  722. }
  723. pos++;
  724. } while ((maxLength === undefined || pos < maxLength) && (test.fn !== null || test.def !== "") || minimalPos > pos);
  725. if (maskTemplate[maskTemplate.length - 1] === "") {
  726. maskTemplate.pop(); //drop the last one which is empty
  727. }
  728. getMaskSet().maskLength = pos + 1;
  729. return maskTemplate;
  730. }
  731. function getMaskSet() {
  732. return maskset;
  733. }
  734. function resetMaskSet(soft) {
  735. var maskset = getMaskSet();
  736. maskset.buffer = undefined;
  737. if (soft !== true) {
  738. maskset._buffer = undefined;
  739. maskset.validPositions = {};
  740. maskset.p = 0;
  741. }
  742. }
  743. function getLastValidPosition(closestTo, strict, validPositions) {
  744. var before = -1,
  745. after = -1,
  746. valids = validPositions || getMaskSet().validPositions; //for use in valhook ~ context switch
  747. if (closestTo === undefined) closestTo = -1;
  748. for (var posNdx in valids) {
  749. var psNdx = parseInt(posNdx);
  750. if (valids[psNdx] && (strict || valids[psNdx].match.fn !== null)) {
  751. if (psNdx <= closestTo) before = psNdx;
  752. if (psNdx >= closestTo) after = psNdx;
  753. }
  754. }
  755. return (before !== -1 && (closestTo - before) > 1) || after < closestTo ? before : after;
  756. }
  757. function setValidPosition(pos, validTest, fromSetValid, isSelection) {
  758. if (isSelection || (opts.insertMode && getMaskSet().validPositions[pos] !== undefined && fromSetValid === undefined)) {
  759. //reposition & revalidate others
  760. var positionsClone = $.extend(true, {}, getMaskSet().validPositions),
  761. lvp = getLastValidPosition(),
  762. i;
  763. for (i = pos; i <= lvp; i++) { //clear selection
  764. delete getMaskSet().validPositions[i];
  765. }
  766. getMaskSet().validPositions[pos] = $.extend(true, {}, validTest);
  767. var valid = true,
  768. j, vps = getMaskSet().validPositions, needsValidation = false;
  769. for (i = (j = pos); i <= lvp; i++) {
  770. var t = positionsClone[i];
  771. if (t !== undefined) {
  772. var posMatch = j,
  773. prevPosMatch = -1;
  774. while (posMatch < getMaskSet().maskLength && ((t.match.fn == null && vps[i] && (vps[i].match.optionalQuantifier === true || vps[i].match.optionality === true)) || t.match.fn != null)) {
  775. //determine next position
  776. //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))) {
  777. posMatch++;
  778. //} else posMatch = seekNext(j);
  779. if (needsValidation === false && positionsClone[posMatch] && positionsClone[posMatch].match.def === t.match.def) { //obvious match
  780. getMaskSet().validPositions[posMatch] = $.extend(true, {}, positionsClone[posMatch]);
  781. getMaskSet().validPositions[posMatch].input = t.input;
  782. j = posMatch;
  783. valid = true;
  784. break;
  785. } else if (positionCanMatchDefinition(posMatch, t.match.def)) { //validated match
  786. var result = isValid(posMatch, t.input, true, true);
  787. valid = result !== false;
  788. j = (result.caret || result.insert) ? getLastValidPosition() : posMatch;
  789. needsValidation = true;
  790. if (valid) break;
  791. } else {
  792. valid = t.match.fn == null;
  793. if (prevPosMatch === posMatch) break; //prevent endless loop
  794. prevPosMatch = posMatch;
  795. }
  796. }
  797. }
  798. if (!valid) break;
  799. }
  800. if (!valid) {
  801. getMaskSet().validPositions = $.extend(true, {}, positionsClone);
  802. resetMaskSet(true);
  803. return false;
  804. }
  805. }
  806. else
  807. getMaskSet().validPositions[pos] = $.extend(true, {}, validTest);
  808. ;
  809. resetMaskSet(true);
  810. return true;
  811. }
  812. function stripValidPositions(start, end, nocheck, strict) {
  813. function IsEnclosedStatic(pos) {
  814. var posMatch = getMaskSet().validPositions[pos];
  815. if (posMatch !== undefined && posMatch.match.fn === null) {
  816. var prevMatch = getMaskSet().validPositions[pos - 1],
  817. nextMatch = getMaskSet().validPositions[pos + 1];
  818. return prevMatch !== undefined && nextMatch !== undefined;
  819. }
  820. return false;
  821. }
  822. var i, startPos = start,
  823. positionsClone = $.extend(true, {}, getMaskSet().validPositions), needsValidation = false;
  824. getMaskSet().p = start; //needed for alternated position after overtype selection
  825. for (i = end - 1; i >= startPos; i--) { //clear selection
  826. if (getMaskSet().validPositions[i] !== undefined) {
  827. if (nocheck === true ||
  828. (!IsEnclosedStatic(i) && opts.canClearPosition(getMaskSet(), i, getLastValidPosition(), strict, opts) !== false)) {
  829. delete getMaskSet().validPositions[i];
  830. }
  831. }
  832. }
  833. //clear buffer
  834. resetMaskSet(true);
  835. for (i = startPos + 1; i <= getLastValidPosition();) {
  836. while (getMaskSet().validPositions[startPos] !== undefined) startPos++;
  837. var s = getMaskSet().validPositions[startPos];
  838. if (i < startPos) i = startPos + 1;
  839. // while (getMaskSet().validPositions[i] == undefined) i++;
  840. if ((getMaskSet().validPositions[i] !== undefined || !isMask(i)) && s === undefined) {
  841. var t = getTestTemplate(i);
  842. if (needsValidation === false && positionsClone[startPos] && positionsClone[startPos].match.def === t.match.def) { //obvious match
  843. getMaskSet().validPositions[startPos] = $.extend(true, {}, positionsClone[startPos]);
  844. getMaskSet().validPositions[startPos].input = t.input;
  845. delete getMaskSet().validPositions[i];
  846. i++;
  847. } else if (positionCanMatchDefinition(startPos, t.match.def)) {
  848. if (isValid(startPos, t.input || getPlaceholder(i), true) !== false) {
  849. delete getMaskSet().validPositions[i];
  850. i++;
  851. needsValidation = true;
  852. }
  853. } else if (!isMask(i)) {
  854. i++;
  855. startPos--;
  856. }
  857. startPos++;
  858. } else i++;
  859. }
  860. resetMaskSet(true);
  861. }
  862. function determineTestTemplate(tests, ignoreGreedy) {
  863. var testPos;
  864. var testPositions = tests,
  865. lvp = getLastValidPosition(),
  866. lvTest = getMaskSet().validPositions[lvp] || getTests(0)[0],
  867. lvTestAltArr = (lvTest.alternation !== undefined) ? lvTest.locator[lvTest.alternation].toString().split(",") : [];
  868. for (var ndx = 0; ndx < testPositions.length; ndx++) {
  869. testPos = testPositions[ndx];
  870. if (testPos.match &&
  871. ((((opts.greedy || ignoreGreedy) && testPos.match.optionalQuantifier !== true) || (testPos.match.optionality === false || testPos.match.newBlockMarker === false) && testPos.match.optionalQuantifier !== true) &&
  872. ((lvTest.alternation === undefined || lvTest.alternation !== testPos.alternation) ||
  873. (testPos.locator[lvTest.alternation] !== undefined && checkAlternationMatch(testPos.locator[lvTest.alternation].toString().split(","), lvTestAltArr))))) {
  874. break;
  875. }
  876. }
  877. return testPos;
  878. }
  879. function getTestTemplate(pos, ndxIntlzr, tstPs) {
  880. return getMaskSet().validPositions[pos] || determineTestTemplate(getTests(pos, ndxIntlzr ? ndxIntlzr.slice() : ndxIntlzr, tstPs));
  881. }
  882. function getTest(pos) {
  883. if (getMaskSet().validPositions[pos]) {
  884. return getMaskSet().validPositions[pos];
  885. }
  886. return getTests(pos)[0];
  887. }
  888. function positionCanMatchDefinition(pos, def) {
  889. var valid = false,
  890. tests = getTests(pos);
  891. for (var tndx = 0; tndx < tests.length; tndx++) {
  892. if (tests[tndx].match && tests[tndx].match.def === def) {
  893. valid = true;
  894. break;
  895. }
  896. }
  897. return valid;
  898. }
  899. function selectBestMatch(pos, alternateNdx) {
  900. var bestMatch, indexPos;
  901. if (getMaskSet().tests[pos] || getMaskSet().validPositions[pos]) {
  902. $.each(getMaskSet().tests[pos] || [getMaskSet().validPositions[pos]], function (ndx, lmnt) {
  903. var ndxPos = lmnt.alternation ? lmnt.locator[lmnt.alternation].toString().indexOf(alternateNdx) : -1;
  904. if ((indexPos === undefined || ndxPos < indexPos) && ndxPos !== -1) {
  905. bestMatch = lmnt;
  906. indexPos = ndxPos;
  907. }
  908. });
  909. }
  910. return bestMatch;
  911. }
  912. function getTests(pos, ndxIntlzr, tstPs) {
  913. var maskTokens = getMaskSet().maskToken,
  914. testPos = ndxIntlzr ? tstPs : 0,
  915. ndxInitializer = ndxIntlzr ? ndxIntlzr.slice() : [0],
  916. matches = [],
  917. insertStop = false,
  918. latestMatch,
  919. cacheDependency = ndxIntlzr ? ndxIntlzr.join("") : "";
  920. function resolveTestFromToken(maskToken, ndxInitializer, loopNdx, quantifierRecurse) { //ndxInitializer contains a set of indexes to speedup searches in the mtokens
  921. function handleMatch(match, loopNdx, quantifierRecurse) {
  922. function isFirstMatch(latestMatch, tokenGroup) {
  923. var firstMatch = $.inArray(latestMatch, tokenGroup.matches) === 0;
  924. if (!firstMatch) {
  925. $.each(tokenGroup.matches, function (ndx, match) {
  926. if (match.isQuantifier === true) {
  927. firstMatch = isFirstMatch(latestMatch, tokenGroup.matches[ndx - 1]);
  928. if (firstMatch) return false;
  929. }
  930. });
  931. }
  932. return firstMatch;
  933. }
  934. function resolveNdxInitializer(pos, alternateNdx) {
  935. var bestMatch = selectBestMatch(pos, alternateNdx);
  936. return bestMatch ? bestMatch.locator.slice(bestMatch.alternation + 1) : undefined;
  937. }
  938. function staticCanMatchDefinition(source, target) {
  939. if (source.match.fn === null && target.match.fn !== null) {
  940. return target.match.fn.test(source.match.def, getMaskSet(), pos, false, opts, false);
  941. }
  942. return false;
  943. }
  944. if (testPos > 10000) {
  945. 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;
  946. }
  947. if (testPos === pos && match.matches === undefined) {
  948. matches.push({
  949. "match": match,
  950. "locator": loopNdx.reverse(),
  951. "cd": cacheDependency
  952. });
  953. return true;
  954. } else if (match.matches !== undefined) {
  955. if (match.isGroup && quantifierRecurse !== match) { //when a group pass along to the quantifier
  956. match = handleMatch(maskToken.matches[$.inArray(match, maskToken.matches) + 1], loopNdx);
  957. if (match) return true;
  958. } else if (match.isOptional) {
  959. var optionalToken = match;
  960. match = resolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
  961. if (match) {
  962. latestMatch = matches[matches.length - 1].match;
  963. if (isFirstMatch(latestMatch, optionalToken)) {
  964. insertStop = true; //insert a stop
  965. testPos = pos; //match the position after the group
  966. } else return true;
  967. }
  968. } else if (match.isAlternator) {
  969. var alternateToken = match,
  970. malternateMatches = [],
  971. maltMatches,
  972. currentMatches = matches.slice(),
  973. loopNdxCnt = loopNdx.length;
  974. //console.log("before " + ndxInitializer);
  975. var altIndex = ndxInitializer.length > 0 ? ndxInitializer.shift() : -1;
  976. if (altIndex === -1 || typeof altIndex === "string") {
  977. var currentPos = testPos,
  978. ndxInitializerClone = ndxInitializer.slice(),
  979. altIndexArr = [],
  980. amndx;
  981. if (typeof altIndex == "string") {
  982. altIndexArr = altIndex.split(",");
  983. } else {
  984. for (amndx = 0; amndx < alternateToken.matches.length; amndx++) {
  985. altIndexArr.push(amndx);
  986. }
  987. }
  988. for (var ndx = 0; ndx < altIndexArr.length; ndx++) {
  989. amndx = parseInt(altIndexArr[ndx]);
  990. matches = [];
  991. //set the correct ndxInitializer
  992. ndxInitializer = resolveNdxInitializer(testPos, amndx) || ndxInitializerClone.slice();
  993. //console.log("resolved " + ndxInitializerClone + " vs " + resolveNdxInitializer(testPos, amndx));
  994. match = handleMatch(alternateToken.matches[amndx] || maskToken.matches[amndx], [amndx].concat(loopNdx), quantifierRecurse) || match;
  995. if (match !== true && match !== undefined && (altIndexArr[altIndexArr.length - 1] < alternateToken.matches.length)) { //no match in the alternations (length mismatch) => look further
  996. var ntndx = $.inArray(match, maskToken.matches) + 1;
  997. if (maskToken.matches.length > ntndx) {
  998. match = handleMatch(maskToken.matches[ntndx], [ntndx].concat(loopNdx.slice(1, loopNdx.length)), quantifierRecurse);
  999. if (match) {
  1000. altIndexArr.push(ntndx.toString());
  1001. $.each(matches, function (ndx, lmnt) {
  1002. lmnt.alternation = loopNdx.length - 1;
  1003. });
  1004. }
  1005. }
  1006. }
  1007. maltMatches = matches.slice();
  1008. testPos = currentPos;
  1009. matches = [];
  1010. //fuzzy merge matches
  1011. for (var ndx1 = 0; ndx1 < maltMatches.length; ndx1++) {
  1012. var altMatch = maltMatches[ndx1], hasMatch = false;
  1013. altMatch.alternation = altMatch.alternation || loopNdxCnt;
  1014. for (var ndx2 = 0; ndx2 < malternateMatches.length; ndx2++) {
  1015. var altMatch2 = malternateMatches[ndx2];
  1016. //verify equality
  1017. if (typeof altIndex !== "string" || $.inArray(altMatch.locator[altMatch.alternation].toString(), altIndexArr) !== -1) {
  1018. if (altMatch.match.def === altMatch2.match.def || staticCanMatchDefinition(altMatch, altMatch2)) {
  1019. hasMatch = altMatch.match.mask === altMatch2.match.mask;
  1020. if (altMatch2.locator[altMatch.alternation].toString().indexOf(altMatch.locator[altMatch.alternation]) === -1) {
  1021. altMatch2.locator[altMatch.alternation] = altMatch2.locator[altMatch.alternation] + "," + altMatch.locator[altMatch.alternation];
  1022. altMatch2.alternation = altMatch.alternation; //we pass the alternation index => used in determineLastRequiredPosition
  1023. }
  1024. break;
  1025. }
  1026. }
  1027. }
  1028. if (!hasMatch) {
  1029. malternateMatches.push(altMatch);
  1030. }
  1031. }
  1032. }
  1033. if (typeof altIndex == "string") { //filter matches
  1034. malternateMatches = $.map(malternateMatches, function (lmnt, ndx) {
  1035. if (isFinite(ndx)) {
  1036. var mamatch,
  1037. alternation = lmnt.alternation,
  1038. altLocArr = lmnt.locator[alternation].toString().split(",");
  1039. lmnt.locator[alternation] = undefined;
  1040. lmnt.alternation = undefined;
  1041. for (var alndx = 0; alndx < altLocArr.length; alndx++) {
  1042. mamatch = $.inArray(altLocArr[alndx], altIndexArr) !== -1;
  1043. if (mamatch) { //rebuild the locator with valid entries
  1044. if (lmnt.locator[alternation] !== undefined) {
  1045. lmnt.locator[alternation] += ",";
  1046. lmnt.locator[alternation] += altLocArr[alndx];
  1047. } else lmnt.locator[alternation] = parseInt(altLocArr[alndx]);
  1048. lmnt.alternation = alternation;
  1049. }
  1050. }
  1051. if (lmnt.locator[alternation] !== undefined) return lmnt;
  1052. }
  1053. });
  1054. }
  1055. matches = currentMatches.concat(malternateMatches);
  1056. testPos = pos;
  1057. insertStop = matches.length > 0; //insert a stopelemnt when there is an alternate - needed for non-greedy option
  1058. //cloneback
  1059. ndxInitializer = ndxInitializerClone.slice();
  1060. } else {
  1061. // if (alternateToken.matches[altIndex]) { //if not in the initial alternation => look further
  1062. match = handleMatch(alternateToken.matches[altIndex] || maskToken.matches[altIndex], [altIndex].concat(loopNdx), quantifierRecurse);
  1063. // } else match = false;
  1064. }
  1065. if (match) return true;
  1066. } else if (match.isQuantifier && quantifierRecurse !== maskToken.matches[$.inArray(match, maskToken.matches) - 1]) {
  1067. var qt = match;
  1068. for (var qndx = (ndxInitializer.length > 0) ? ndxInitializer.shift() : 0; (qndx < (isNaN(qt.quantifier.max) ? qndx + 1 : qt.quantifier.max)) && testPos <= pos; qndx++) {
  1069. var tokenGroup = maskToken.matches[$.inArray(qt, maskToken.matches) - 1];
  1070. match = handleMatch(tokenGroup, [qndx].concat(loopNdx), tokenGroup); //set the tokenGroup as quantifierRecurse marker
  1071. if (match) {
  1072. //get latest match
  1073. latestMatch = matches[matches.length - 1].match;
  1074. latestMatch.optionalQuantifier = qndx > (qt.quantifier.min - 1);
  1075. if (isFirstMatch(latestMatch, tokenGroup)) { //search for next possible match
  1076. if (qndx > (qt.quantifier.min - 1)) {
  1077. insertStop = true;
  1078. testPos = pos; //match the position after the group
  1079. break; //stop quantifierloop
  1080. } else return true;
  1081. } else {
  1082. return true;
  1083. }
  1084. }
  1085. }
  1086. } else {
  1087. match = resolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
  1088. if (match) return true;
  1089. }
  1090. }
  1091. else
  1092. testPos++;
  1093. }
  1094. for (var tndx = (ndxInitializer.length > 0 ? ndxInitializer.shift() : 0); tndx < maskToken.matches.length; tndx++) {
  1095. if (maskToken.matches[tndx].isQuantifier !== true) {
  1096. var match = handleMatch(maskToken.matches[tndx], [tndx].concat(loopNdx), quantifierRecurse);
  1097. if (match && testPos === pos) {
  1098. return match;
  1099. } else if (testPos > pos) {
  1100. break;
  1101. }
  1102. }
  1103. }
  1104. }
  1105. function mergeLocators(tests) {
  1106. var locator = [];
  1107. if (!$.isArray(tests)) tests = [tests];
  1108. if (tests.length > 0) {
  1109. if (tests[0].alternation === undefined) {
  1110. locator = determineTestTemplate(tests.slice()).locator.slice();
  1111. if (locator.length === 0) locator = tests[0].locator.slice();
  1112. }
  1113. else {
  1114. $.each(tests, function (ndx, tst) {
  1115. if (tst.def !== "") {
  1116. if (locator.length === 0) locator = tst.locator.slice();
  1117. else {
  1118. for (var i = 0; i < locator.length; i++) {
  1119. if (tst.locator[i] && locator[i].toString().indexOf(tst.locator[i]) === -1) {
  1120. locator[i] += "," + tst.locator[i];
  1121. }
  1122. }
  1123. }
  1124. }
  1125. });
  1126. }
  1127. }
  1128. return locator;
  1129. }
  1130. function filterTests(tests) {
  1131. if (opts.keepStatic && pos > 0) {
  1132. if (tests.length > 1 + (tests[tests.length - 1].match.def === "" ? 1 : 0)) {
  1133. if (tests[0].match.optionality !== true &&
  1134. tests[0].match.optionalQuantifier !== true &&
  1135. tests[0].match.fn === null && !/[0-9a-bA-Z]/.test(tests[0].match.def)) {
  1136. return [determineTestTemplate(tests)]
  1137. }
  1138. }
  1139. }
  1140. return tests;
  1141. }
  1142. if (pos > -1) {
  1143. if (ndxIntlzr === undefined) { //determine index initializer
  1144. var previousPos = pos - 1,
  1145. test;
  1146. while ((test = getMaskSet().validPositions[previousPos] || getMaskSet().tests[previousPos]) === undefined && previousPos > -1) {
  1147. previousPos--;
  1148. }
  1149. if (test !== undefined && previousPos > -1) {
  1150. ndxInitializer = mergeLocators(test);
  1151. cacheDependency = ndxInitializer.join("");
  1152. testPos = previousPos;
  1153. }
  1154. }
  1155. if (getMaskSet().tests[pos] && getMaskSet().tests[pos][0].cd === cacheDependency) { //cacheDependency is set on all tests, just check on the first
  1156. //console.log("cache hit " + pos + " - " + ndxIntlzr);
  1157. return filterTests(getMaskSet().tests[pos]);
  1158. }
  1159. for (var mtndx = ndxInitializer.shift(); mtndx < maskTokens.length; mtndx++) {
  1160. var match = resolveTestFromToken(maskTokens[mtndx], ndxInitializer, [mtndx]);
  1161. if ((match && testPos === pos) || testPos > pos) {
  1162. break;
  1163. }
  1164. }
  1165. }
  1166. if (matches.length === 0 || insertStop) {
  1167. matches.push({
  1168. match: {
  1169. fn: null,
  1170. cardinality: 0,
  1171. optionality: true,
  1172. casing: null,
  1173. def: "",
  1174. placeholder: ""
  1175. },
  1176. locator: [],
  1177. cd: cacheDependency
  1178. });
  1179. }
  1180. if (ndxIntlzr !== undefined && getMaskSet().tests[pos]) { //prioritize full tests for caching
  1181. return filterTests($.extend(true, [], matches));
  1182. }
  1183. getMaskSet().tests[pos] = $.extend(true, [], matches); //set a clone to prevent overwriting some props
  1184. //console.log(pos + " - " + JSON.stringify(matches));
  1185. //keepstatic as from first mask element
  1186. return filterTests(getMaskSet().tests[pos]);
  1187. }
  1188. function getBufferTemplate() {
  1189. if (getMaskSet()._buffer === undefined) {
  1190. //generate template
  1191. getMaskSet()._buffer = getMaskTemplate(false, 1);
  1192. if (getMaskSet().buffer === undefined) {
  1193. getMaskSet()._buffer.slice();
  1194. }
  1195. }
  1196. return getMaskSet()._buffer;
  1197. }
  1198. function getBuffer(noCache) {
  1199. if (getMaskSet().buffer === undefined || noCache === true) {
  1200. getMaskSet().buffer = getMaskTemplate(true, getLastValidPosition(), true);
  1201. }
  1202. return getMaskSet().buffer;
  1203. }
  1204. function refreshFromBuffer(start, end, buffer) {
  1205. var i;
  1206. if (start === true) {
  1207. resetMaskSet();
  1208. start = 0;
  1209. end = buffer.length;
  1210. } else {
  1211. for (i = start; i < end; i++) {
  1212. delete getMaskSet().validPositions[i];
  1213. }
  1214. }
  1215. for (i = start; i < end; i++) {
  1216. resetMaskSet(true); //prevents clobber from the buffer
  1217. if (buffer[i] !== opts.skipOptionalPartCharacter) {
  1218. isValid(i, buffer[i], true, true);
  1219. }
  1220. }
  1221. }
  1222. function casing(elem, test, pos) {
  1223. switch (test.casing) {
  1224. case "upper":
  1225. elem = elem.toUpperCase();
  1226. break;
  1227. case "lower":
  1228. elem = elem.toLowerCase();
  1229. break;
  1230. case "title":
  1231. var posBefore = getMaskSet().validPositions[pos - 1];
  1232. if (pos === 0 || posBefore && posBefore.input === String.fromCharCode(Inputmask.keyCode.SPACE)) {
  1233. elem = elem.toUpperCase();
  1234. } else {
  1235. elem = elem.toLowerCase();
  1236. }
  1237. break;
  1238. }
  1239. return elem;
  1240. }
  1241. function checkAlternationMatch(altArr1, altArr2) {
  1242. var altArrC = opts.greedy ? altArr2 : altArr2.slice(0, 1),
  1243. isMatch = false;
  1244. for (var alndx = 0; alndx < altArr1.length; alndx++) {
  1245. if ($.inArray(altArr1[alndx], altArrC) !== -1) {
  1246. isMatch = true;
  1247. break;
  1248. }
  1249. }
  1250. return isMatch;
  1251. }
  1252. function isValid(pos, c, strict, fromSetValid, fromAlternate) { //strict true ~ no correction or autofill
  1253. function isSelection(posObj) {
  1254. return isRTL ? (posObj.begin - posObj.end) > 1 || ((posObj.begin - posObj.end) === 1 && opts.insertMode) :
  1255. (posObj.end - posObj.begin) > 1 || ((posObj.end - posObj.begin) === 1 && opts.insertMode);
  1256. }
  1257. strict = strict === true; //always set a value to strict to prevent possible strange behavior in the extensions
  1258. var maskPos = pos;
  1259. if (pos.begin !== undefined) { //position was a position object - used to handle a delete by typing over a selection
  1260. maskPos = isRTL && !isSelection(pos) ? pos.end : pos.begin;
  1261. }
  1262. function _isValid(position, c, strict) {
  1263. var rslt = false;
  1264. $.each(getTests(position), function (ndx, tst) {
  1265. var test = tst.match,
  1266. loopend = c ? 1 : 0,
  1267. chrs = "";
  1268. for (var i = test.cardinality; i > loopend; i--) {
  1269. chrs += getBufferElement(position - (i - 1));
  1270. }
  1271. if (c) {
  1272. chrs += c;
  1273. }
  1274. //make sure the buffer is set and correct
  1275. getBuffer(true);
  1276. //return is false or a json object => { pos: ??, c: ??} or true
  1277. rslt = test.fn != null ?
  1278. test.fn.test(chrs, getMaskSet(), position, strict, opts, isSelection(pos)) : (c === test.def || c === opts.skipOptionalPartCharacter) && test.def !== "" ? //non mask
  1279. {
  1280. c: test.placeholder || test.def,
  1281. pos: position
  1282. } : false;
  1283. if (rslt !== false) {
  1284. var elem = rslt.c !== undefined ? rslt.c : c;
  1285. elem = (elem === opts.skipOptionalPartCharacter && test.fn === null) ? (test.placeholder || test.def) : elem;
  1286. var validatedPos = position,
  1287. possibleModifiedBuffer = getBuffer();
  1288. if (rslt.remove !== undefined) { //remove position(s)
  1289. if (!$.isArray(rslt.remove)) rslt.remove = [rslt.remove];
  1290. $.each(rslt.remove.sort(function (a, b) {
  1291. return b - a;
  1292. }), function (ndx, lmnt) {
  1293. stripValidPositions(lmnt, lmnt + 1, true);
  1294. });
  1295. }
  1296. if (rslt.insert !== undefined) { //insert position(s)
  1297. if (!$.isArray(rslt.insert)) rslt.insert = [rslt.insert];
  1298. $.each(rslt.insert.sort(function (a, b) {
  1299. return a - b;
  1300. }), function (ndx, lmnt) {
  1301. isValid(lmnt.pos, lmnt.c, false, fromSetValid);
  1302. });
  1303. }
  1304. if (rslt.refreshFromBuffer) {
  1305. var refresh = rslt.refreshFromBuffer;
  1306. strict = true;
  1307. refreshFromBuffer(refresh === true ? refresh : refresh.start, refresh.end, possibleModifiedBuffer);
  1308. if (rslt.pos === undefined && rslt.c === undefined) {
  1309. rslt.pos = getLastValidPosition();
  1310. return false; //breakout if refreshFromBuffer && nothing to insert
  1311. }
  1312. validatedPos = rslt.pos !== undefined ? rslt.pos : position;
  1313. if (validatedPos !== position) {
  1314. rslt = $.extend(rslt, isValid(validatedPos, elem, true, fromSetValid)); //revalidate new position strict
  1315. return false;
  1316. }
  1317. } else if (rslt !== true && rslt.pos !== undefined && rslt.pos !== position) { //their is a position offset
  1318. validatedPos = rslt.pos;
  1319. refreshFromBuffer(position, validatedPos, getBuffer().slice());
  1320. if (validatedPos !== position) {
  1321. rslt = $.extend(rslt, isValid(validatedPos, elem, true)); //revalidate new position strict
  1322. return false;
  1323. }
  1324. }
  1325. if (rslt !== true && rslt.pos === undefined && rslt.c === undefined) {
  1326. return false; //breakout if nothing to insert
  1327. }
  1328. if (ndx > 0) {
  1329. resetMaskSet(true);
  1330. }
  1331. if (!setValidPosition(validatedPos, $.extend({}, tst, {
  1332. "input": casing(elem, test, validatedPos)
  1333. }), fromSetValid, isSelection(pos))) {
  1334. rslt = false;
  1335. }
  1336. return false; //break from $.each
  1337. }
  1338. }
  1339. );
  1340. return rslt;
  1341. }
  1342. function alternate(pos, c, strict) {
  1343. var validPsClone = $.extend(true, {}, getMaskSet().validPositions),
  1344. lastAlt,
  1345. alternation,
  1346. isValidRslt = false,
  1347. altPos, prevAltPos, i, validPos, lAltPos = getLastValidPosition(), altNdxs, decisionPos;
  1348. //find last modified alternation
  1349. prevAltPos = getMaskSet().validPositions[lAltPos];
  1350. for (; lAltPos >= 0; lAltPos--) {
  1351. altPos = getMaskSet().validPositions[lAltPos];
  1352. if (altPos && altPos.alternation !== undefined) {
  1353. lastAlt = lAltPos;
  1354. alternation = getMaskSet().validPositions[lastAlt].alternation;
  1355. if (prevAltPos.locator[altPos.alternation] !== altPos.locator[altPos.alternation]) {
  1356. break;
  1357. }
  1358. prevAltPos = altPos;
  1359. }
  1360. }
  1361. if (alternation !== undefined) {
  1362. decisionPos = parseInt(lastAlt);
  1363. var decisionTaker = prevAltPos.locator[prevAltPos.alternation || alternation] !== undefined ? prevAltPos.locator[prevAltPos.alternation || alternation] : altNdxs[0]; //no match in the alternations (length mismatch)
  1364. if (decisionTaker.length > 0) { //no decision taken ~ take first one as decider
  1365. decisionTaker = decisionTaker.split(",")[0];
  1366. }
  1367. var possibilityPos = getMaskSet().validPositions[decisionPos], prevPos = getMaskSet().validPositions[decisionPos - 1];
  1368. $.each(getTests(decisionPos, prevPos ? prevPos.locator : undefined, decisionPos - 1), function (ndx, test) {
  1369. altNdxs = test.locator[alternation] ? test.locator[alternation].toString().split(",") : [];
  1370. for (var mndx = 0; mndx < altNdxs.length; mndx++) {
  1371. var validInputs = [],
  1372. staticInputsAfterPos = 0,
  1373. staticInputsAfterPosAlternate = 0;
  1374. if (decisionTaker < altNdxs[mndx]) {
  1375. getMaskSet().validPositions[decisionPos] = $.extend(true, {}, test);
  1376. var possibilities = getMaskSet().validPositions[decisionPos].locator;
  1377. getMaskSet().validPositions[decisionPos].locator[alternation] = parseInt(altNdxs[mndx]); //set forced decision
  1378. if (test.match.fn == null) {
  1379. if (possibilityPos.input !== test.match.def)
  1380. validInputs.push(possibilityPos.input);
  1381. staticInputsAfterPosAlternate++;
  1382. getMaskSet().validPositions[decisionPos].generatedInput = true;
  1383. getMaskSet().validPositions[decisionPos].input = test.match.def;
  1384. } else {
  1385. getMaskSet().validPositions[decisionPos].input = possibilityPos.input;
  1386. }
  1387. for (i = decisionPos + 1; i < getLastValidPosition(undefined, true) + 1; i++) {
  1388. validPos = getMaskSet().validPositions[i];
  1389. if (validPos && validPos.generatedInput !== true && /[0-9a-bA-Z]/.test(validPos.input)) {
  1390. validInputs.push(validPos.input);
  1391. } else if (i < pos) staticInputsAfterPos++;
  1392. delete getMaskSet().validPositions[i];
  1393. }
  1394. resetMaskSet(true); //clear getbuffer
  1395. isValidRslt = true;
  1396. while (validInputs.length > 0) {
  1397. var input = validInputs.shift();
  1398. if (input !== opts.skipOptionalPartCharacter) {
  1399. if (!(isValidRslt = isValid(getLastValidPosition(undefined, true) + 1, input, false, fromSetValid, true))) {
  1400. break;
  1401. }
  1402. }
  1403. }
  1404. if (isValidRslt) {
  1405. getMaskSet().validPositions[decisionPos].locator = possibilities; //reset forceddecision ~ needed for proper delete
  1406. var targetLvp = getLastValidPosition(pos) + 1;
  1407. for (i = decisionPos + 1; i < getLastValidPosition() + 1; i++) {
  1408. validPos = getMaskSet().validPositions[i];
  1409. if ((validPos === undefined || validPos.match.fn == null) && i < pos) {
  1410. staticInputsAfterPosAlternate++;
  1411. }
  1412. }
  1413. pos = pos + (staticInputsAfterPosAlternate - staticInputsAfterPos);
  1414. isValidRslt = isValid(pos > targetLvp ? targetLvp : pos, c, strict, fromSetValid, true);
  1415. }
  1416. if (!isValidRslt) {
  1417. resetMaskSet();
  1418. getMaskSet().validPositions = $.extend(true, {}, validPsClone);
  1419. } else return false; //exit $.each
  1420. }
  1421. }
  1422. });
  1423. }
  1424. return isValidRslt;
  1425. }
  1426. //set alternator choice on previous skipped placeholder positions
  1427. function trackbackAlternations(originalPos, newPos) {
  1428. var vp = getMaskSet().validPositions[newPos],
  1429. targetLocator = vp.locator,
  1430. tll = targetLocator.length;
  1431. for (var ps = originalPos; ps < newPos; ps++) {
  1432. if (getMaskSet().validPositions[ps] === undefined && !isMask(ps, true)) {
  1433. var tests = getTests(ps),
  1434. bestMatch = tests[0],
  1435. equality = -1;
  1436. $.each(tests, function (ndx, tst) { //find best matching
  1437. for (var i = 0; i < tll; i++) {
  1438. if (tst.locator[i] !== undefined && checkAlternationMatch(tst.locator[i].toString().split(","), targetLocator[i].toString().split(","))) {
  1439. if (equality < i) {
  1440. equality = i;
  1441. bestMatch = tst;
  1442. }
  1443. } else break;
  1444. }
  1445. });
  1446. setValidPosition(ps, $.extend({}, bestMatch, {
  1447. "input": bestMatch.match.placeholder || bestMatch.match.def
  1448. }), true);
  1449. }
  1450. }
  1451. }
  1452. var result = false,
  1453. positionsClone = $.extend(true, {}, getMaskSet().validPositions); //clone the currentPositions
  1454. //Check for a nonmask before the pos
  1455. //find previous valid
  1456. for (var pndx = maskPos - 1; pndx > -1; pndx--) {
  1457. if (getMaskSet().validPositions[pndx]) break;
  1458. }
  1459. ////fill missing nonmask and valid placeholders
  1460. var testTemplate, generatedPos;
  1461. for (pndx++; pndx < maskPos; pndx++) {
  1462. if (getMaskSet().validPositions[pndx] === undefined &&
  1463. (opts.jitMasking === false || opts.jitMasking > pndx) &&
  1464. ((testTemplate = getTestTemplate(pndx, getTestTemplate(pndx - 1).locator, pndx - 1)).match.def === opts.radixPointDefinitionSymbol || !isMask(pndx, true) ||
  1465. ($.inArray(opts.radixPoint, getBuffer()) < pndx && testTemplate.match.fn && testTemplate.match.fn.test(getPlaceholder(pndx), getMaskSet(), pndx, false, opts)))) {
  1466. result = _isValid(pndx, testTemplate.match.placeholder || (testTemplate.match.fn == null ? testTemplate.match.def : (getPlaceholder(pndx) !== "" ? getPlaceholder(pndx) : getBuffer()[pndx])), true);
  1467. if (result !== false) {
  1468. getMaskSet().validPositions[result.pos || pndx].generatedInput = true;
  1469. }
  1470. }
  1471. }
  1472. if (isSelection(pos)) {
  1473. handleRemove(undefined, Inputmask.keyCode.DELETE, pos);
  1474. maskPos = getMaskSet().p;
  1475. }
  1476. if (maskPos < getMaskSet().maskLength) {
  1477. result = _isValid(maskPos, c, strict);
  1478. if ((!strict || fromSetValid === true) && result === false) {
  1479. var currentPosValid = getMaskSet().validPositions[maskPos];
  1480. if (currentPosValid && currentPosValid.match.fn === null && (currentPosValid.match.def === c || c === opts.skipOptionalPartCharacter)) {
  1481. result = {
  1482. "caret": seekNext(maskPos)
  1483. };
  1484. } else if ((opts.insertMode || getMaskSet().validPositions[seekNext(maskPos)] === undefined) && !isMask(maskPos, true)) { //does the input match on a further position?
  1485. var testsFromPos = getTests(maskPos).slice();
  1486. if (testsFromPos[testsFromPos.length - 1].match.def === "") testsFromPos.pop();
  1487. var staticChar = determineTestTemplate(testsFromPos, true);
  1488. if (staticChar) {
  1489. staticChar = staticChar.match.placeholder || staticChar.match.def;
  1490. _isValid(maskPos, staticChar, strict);
  1491. }
  1492. for (var nPos = maskPos + 1, snPos = seekNext(maskPos); nPos <= snPos; nPos++) {
  1493. result = _isValid(nPos, c, strict);
  1494. if (result !== false) {
  1495. trackbackAlternations(maskPos, nPos);
  1496. maskPos = nPos;
  1497. break;
  1498. }
  1499. }
  1500. }
  1501. }
  1502. }
  1503. if (result === false && opts.keepStatic && !strict && fromAlternate !== true) { //try fuzzy alternator logic
  1504. result = alternate(maskPos, c, strict);
  1505. }
  1506. if (result === true) {
  1507. result = {
  1508. "pos": maskPos
  1509. };
  1510. }
  1511. if ($.isFunction(opts.postValidation) && result !== false && !strict && fromSetValid !== true) {
  1512. result = opts.postValidation(getBuffer(true), result, opts) ? result : false;
  1513. }
  1514. if (result.pos === undefined) {
  1515. result.pos = maskPos;
  1516. }
  1517. if (result === false) {
  1518. resetMaskSet(true);
  1519. getMaskSet().validPositions = $.extend(true, {}, positionsClone); //revert validation changes
  1520. }
  1521. return result;
  1522. }
  1523. function isMask(pos, strict) {
  1524. var test;
  1525. if (strict) {
  1526. test = getTestTemplate(pos).match;
  1527. if (test.def === "") test = getTest(pos).match;
  1528. } else test = getTest(pos).match;
  1529. if (test.fn != null) {
  1530. return test.fn;
  1531. } else if (strict !== true && pos > -1) {
  1532. var tests = getTests(pos);
  1533. return tests.length > 1 + (tests[tests.length - 1].match.def === "" ? 1 : 0);
  1534. }
  1535. return false;
  1536. }
  1537. function seekNext(pos, newBlock) {
  1538. var maskL = getMaskSet().maskLength;
  1539. if (pos >= maskL) return maskL;
  1540. var position = pos;
  1541. while (++position < maskL &&
  1542. ((newBlock === true && (getTest(position).match.newBlockMarker !== true || !isMask(position))) ||
  1543. (newBlock !== true && !isMask(position)))) {
  1544. }
  1545. return position;
  1546. }
  1547. function seekPrevious(pos, newBlock) {
  1548. var position = pos, tests;
  1549. if (position <= 0) return 0;
  1550. while (--position > 0 &&
  1551. ((newBlock === true && getTest(position).match.newBlockMarker !== true) ||
  1552. (newBlock !== true && !isMask(position) &&
  1553. (tests = getTests(position), tests.length < 2 || (tests.length === 2 && tests[1].match.def === ""))))) {
  1554. }
  1555. return position;
  1556. }
  1557. function getBufferElement(position) {
  1558. return getMaskSet().validPositions[position] === undefined ? getPlaceholder(position) : getMaskSet().validPositions[position].input;
  1559. }
  1560. function writeBuffer(input, buffer, caretPos, event, triggerInputEvent) {
  1561. if (event && $.isFunction(opts.onBeforeWrite)) {
  1562. var result = opts.onBeforeWrite(event, buffer, caretPos, opts);
  1563. if (result) {
  1564. if (result.refreshFromBuffer) {
  1565. var refresh = result.refreshFromBuffer;
  1566. refreshFromBuffer(refresh === true ? refresh : refresh.start, refresh.end, result.buffer || buffer);
  1567. buffer = getBuffer(true);
  1568. }
  1569. //only alter when intented !== undefined
  1570. if (caretPos !== undefined) caretPos = result.caret !== undefined ? result.caret : caretPos;
  1571. }
  1572. }
  1573. input.inputmask._valueSet(buffer.join(""));
  1574. if (caretPos !== undefined && (event === undefined || event.type !== "blur")) {
  1575. caret(input, caretPos);
  1576. }
  1577. if (triggerInputEvent === true) {
  1578. skipInputEvent = true;
  1579. $(input).trigger("input");
  1580. }
  1581. }
  1582. function getPlaceholder(pos, test) {
  1583. test = test || getTest(pos).match;
  1584. if (test.placeholder !== undefined) {
  1585. return test.placeholder;
  1586. } else if (test.fn === null) {
  1587. if (pos > -1 && getMaskSet().validPositions[pos] === undefined) {
  1588. var tests = getTests(pos),
  1589. staticAlternations = [],
  1590. prevTest;
  1591. if (tests.length > 1 + (tests[tests.length - 1].match.def === "" ? 1 : 0)) {
  1592. for (var i = 0; i < tests.length; i++) {
  1593. if (tests[i].match.optionality !== true && tests[i].match.optionalQuantifier !== true &&
  1594. (tests[i].match.fn === null || (prevTest === undefined || tests[i].match.fn.test(prevTest.match.def, getMaskSet(), pos, true, opts) !== false))) {
  1595. staticAlternations.push(tests[i]);
  1596. if (tests[i].match.fn === null) prevTest = tests[i];
  1597. if (staticAlternations.length > 1) {
  1598. if (/[0-9a-bA-Z]/.test(staticAlternations[0].match.def)) {
  1599. return opts.placeholder.charAt(pos % opts.placeholder.length);
  1600. }
  1601. }
  1602. }
  1603. }
  1604. }
  1605. }
  1606. return test.def;
  1607. }
  1608. return opts.placeholder.charAt(pos % opts.placeholder.length);
  1609. }
  1610. function checkVal(input, writeOut, strict, nptvl, initiatingEvent) {
  1611. var inputValue = nptvl.slice(),
  1612. charCodes = "",
  1613. initialNdx = 0, result;
  1614. function isTemplateMatch() {
  1615. var isMatch = false;
  1616. var charCodeNdx = getBufferTemplate().slice(initialNdx, seekNext(initialNdx)).join("").indexOf(charCodes);
  1617. if (charCodeNdx !== -1 && !isMask(initialNdx)) {
  1618. isMatch = true;
  1619. var bufferTemplateArr = getBufferTemplate().slice(initialNdx, initialNdx + charCodeNdx);
  1620. for (var i = 0; i < bufferTemplateArr.length; i++) {
  1621. if (bufferTemplateArr[i] !== " ") {
  1622. isMatch = false;
  1623. break;
  1624. }
  1625. }
  1626. }
  1627. return isMatch;
  1628. }
  1629. resetMaskSet();
  1630. getMaskSet().p = seekNext(-1);
  1631. // if (writeOut) input.inputmask._valueSet(""); //initial clear
  1632. if (!strict) {
  1633. if (opts.autoUnmask !== true) {
  1634. var staticInput = getBufferTemplate().slice(0, seekNext(-1)).join(""),
  1635. matches = inputValue.join("").match(new RegExp("^" + Inputmask.escapeRegex(staticInput), "g"));
  1636. if (matches && matches.length > 0) {
  1637. inputValue.splice(0, matches.length * staticInput.length);
  1638. initialNdx = seekNext(initialNdx);
  1639. }
  1640. } else {
  1641. initialNdx = seekNext(initialNdx);
  1642. }
  1643. }
  1644. $.each(inputValue, function (ndx, charCode) {
  1645. if (charCode !== undefined) { //inputfallback strips some elements out of the inputarray. $.each logically presents them as undefined
  1646. var keypress = new $.Event("keypress");
  1647. keypress.which = charCode.charCodeAt(0);
  1648. charCodes += charCode;
  1649. var lvp = getLastValidPosition(undefined, true),
  1650. lvTest = getMaskSet().validPositions[lvp],
  1651. nextTest = getTestTemplate(lvp + 1, lvTest ? lvTest.locator.slice() : undefined, lvp);
  1652. if (!isTemplateMatch() || strict || opts.autoUnmask) {
  1653. var pos = strict ? ndx : (nextTest.match.fn == null && nextTest.match.optionality && (lvp + 1) < getMaskSet().p ? lvp + 1 : getMaskSet().p);
  1654. result = keypressEvent.call(input, keypress, true, false, strict, pos);
  1655. initialNdx = pos + 1;
  1656. charCodes = "";
  1657. } else {
  1658. result = keypressEvent.call(input, keypress, true, false, true, lvp + 1);
  1659. }
  1660. if (!strict && $.isFunction(opts.onBeforeWrite)) {
  1661. result = opts.onBeforeWrite(keypress, getBuffer(), result.forwardPosition, opts);
  1662. if (result && result.refreshFromBuffer) {
  1663. var refresh = result.refreshFromBuffer;
  1664. refreshFromBuffer(refresh === true ? refresh : refresh.start, refresh.end, result.buffer);
  1665. resetMaskSet(true);
  1666. if (result.caret) {
  1667. getMaskSet().p = result.caret;
  1668. }
  1669. }
  1670. }
  1671. }
  1672. });
  1673. if (writeOut) {
  1674. var caretPos = document.activeElement === input ? (initiatingEvent ? caret(input).begin : result.forwardPosition) : undefined,
  1675. offset = getBuffer().length - input.inputmask._valueGet().length;
  1676. writeBuffer(input, getBuffer(), caretPos + offset, initiatingEvent || new $.Event("checkval"));
  1677. }
  1678. }
  1679. function unmaskedvalue(input) {
  1680. if (input && input.inputmask === undefined) {
  1681. return input.value;
  1682. }
  1683. var umValue = [],
  1684. vps = getMaskSet().validPositions;
  1685. for (var pndx in vps) {
  1686. if (vps[pndx].match && vps[pndx].match.fn != null) {
  1687. umValue.push(vps[pndx].input);
  1688. }
  1689. }
  1690. var unmaskedValue = umValue.length === 0 ? "" : (isRTL ? umValue.reverse() : umValue).join("");
  1691. if ($.isFunction(opts.onUnMask)) {
  1692. var bufferValue = (isRTL ? getBuffer().slice().reverse() : getBuffer()).join("");
  1693. unmaskedValue = (opts.onUnMask(bufferValue, unmaskedValue, opts) || unmaskedValue);
  1694. }
  1695. return unmaskedValue;
  1696. }
  1697. function caret(input, begin, end, notranslate) {
  1698. function translatePosition(pos) {
  1699. if (notranslate !== true && isRTL && typeof pos === "number" && (!opts.greedy || opts.placeholder !== "")) {
  1700. 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)
  1701. pos = bffrLght - pos;
  1702. }
  1703. return pos;
  1704. }
  1705. var range;
  1706. if (typeof begin === "number") {
  1707. begin = translatePosition(begin);
  1708. end = translatePosition(end);
  1709. end = (typeof end == "number") ? end : begin;
  1710. // if (!$(input).is(":visible")) {
  1711. // return;
  1712. // }
  1713. var scrollCalc = parseInt(((input.ownerDocument.defaultView || window).getComputedStyle ? (input.ownerDocument.defaultView || window).getComputedStyle(input, null) : input.currentStyle).fontSize) * end;
  1714. input.scrollLeft = scrollCalc > input.scrollWidth ? scrollCalc : 0;
  1715. if (!mobile && opts.insertMode === false && begin === end) end++; //set visualization for insert/overwrite mode
  1716. if (input.setSelectionRange) {
  1717. input.selectionStart = begin;
  1718. input.selectionEnd = end;
  1719. } else if (window.getSelection) {
  1720. range = document.createRange();
  1721. if (input.firstChild === undefined || input.firstChild === null) {
  1722. var textNode = document.createTextNode("");
  1723. input.appendChild(textNode);
  1724. }
  1725. range.setStart(input.firstChild, begin < input.inputmask._valueGet().length ? begin : input.inputmask._valueGet().length);
  1726. range.setEnd(input.firstChild, end < input.inputmask._valueGet().length ? end : input.inputmask._valueGet().length);
  1727. range.collapse(true);
  1728. var sel = window.getSelection();
  1729. sel.removeAllRanges();
  1730. sel.addRange(range);
  1731. //input.focus();
  1732. } else if (input.createTextRange) {
  1733. range = input.createTextRange();
  1734. range.collapse(true);
  1735. range.moveEnd("character", end);
  1736. range.moveStart("character", begin);
  1737. range.select();
  1738. }
  1739. } else {
  1740. if (input.setSelectionRange) {
  1741. begin = input.selectionStart;
  1742. end = input.selectionEnd;
  1743. } else if (window.getSelection) {
  1744. range = window.getSelection().getRangeAt(0);
  1745. if (range.commonAncestorContainer.parentNode === input || range.commonAncestorContainer === input) {
  1746. begin = range.startOffset;
  1747. end = range.endOffset;
  1748. }
  1749. } else if (document.selection && document.selection.createRange) {
  1750. range = document.selection.createRange();
  1751. begin = 0 - range.duplicate().moveStart("character", -input.inputmask._valueGet().length);
  1752. end = begin + range.text.length;
  1753. }
  1754. /*eslint-disable consistent-return */
  1755. return {
  1756. "begin": translatePosition(begin),
  1757. "end": translatePosition(end)
  1758. };
  1759. /*eslint-enable consistent-return */
  1760. }
  1761. }
  1762. function determineLastRequiredPosition(returnDefinition) {
  1763. var buffer = getBuffer(),
  1764. bl = buffer.length,
  1765. pos, lvp = getLastValidPosition(),
  1766. positions = {},
  1767. lvTest = getMaskSet().validPositions[lvp],
  1768. ndxIntlzr = lvTest !== undefined ? lvTest.locator.slice() : undefined,
  1769. testPos;
  1770. for (pos = lvp + 1; pos < buffer.length; pos++) {
  1771. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  1772. ndxIntlzr = testPos.locator.slice();
  1773. positions[pos] = $.extend(true, {}, testPos);
  1774. }
  1775. var lvTestAlt = lvTest && lvTest.alternation !== undefined ? lvTest.locator[lvTest.alternation] : undefined;
  1776. for (pos = bl - 1; pos > lvp; pos--) {
  1777. testPos = positions[pos];
  1778. if ((testPos.match.optionality ||
  1779. testPos.match.optionalQuantifier ||
  1780. (lvTestAlt && ((lvTestAlt !== positions[pos].locator[lvTest.alternation] && testPos.match.fn != null) ||
  1781. (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)) {
  1782. bl--;
  1783. } else break;
  1784. }
  1785. return returnDefinition ? {
  1786. "l": bl,
  1787. "def": positions[bl] ? positions[bl].match : undefined
  1788. } : bl;
  1789. }
  1790. function clearOptionalTail(buffer) {
  1791. var rl = determineLastRequiredPosition(),
  1792. lmib = buffer.length - 1;
  1793. for (; lmib > rl; lmib--) {
  1794. if (isMask(lmib)) break; //fixme ismask is not good enough
  1795. }
  1796. buffer.splice(rl, lmib + 1 - rl);
  1797. return buffer;
  1798. }
  1799. function isComplete(buffer) { //return true / false / undefined (repeat *)
  1800. if ($.isFunction(opts.isComplete)) return opts.isComplete(buffer, opts);
  1801. if (opts.repeat === "*") return undefined;
  1802. var complete = false,
  1803. lrp = determineLastRequiredPosition(true),
  1804. aml = seekPrevious(lrp.l);
  1805. if (lrp.def === undefined || lrp.def.newBlockMarker || lrp.def.optionality || lrp.def.optionalQuantifier) {
  1806. complete = true;
  1807. for (var i = 0; i <= aml; i++) {
  1808. var test = getTestTemplate(i).match;
  1809. if ((test.fn !== null && getMaskSet().validPositions[i] === undefined && test.optionality !== true && test.optionalQuantifier !== true) || (test.fn === null && buffer[i] !== getPlaceholder(i, test))) {
  1810. complete = false;
  1811. break;
  1812. }
  1813. }
  1814. }
  1815. return complete;
  1816. }
  1817. var EventRuler = {
  1818. on: function (input, eventName, eventHandler) {
  1819. var ev = function (e) {
  1820. // console.log("triggered " + e.type);
  1821. if (this.inputmask === undefined && this.nodeName !== "FORM") { //happens when cloning an object with jquery.clone
  1822. var imOpts = $.data(this, "_inputmask_opts");
  1823. if (imOpts)(new Inputmask(imOpts)).mask(this);
  1824. else EventRuler.off(this);
  1825. } 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))))) {
  1826. e.preventDefault();
  1827. } else {
  1828. switch (e.type) {
  1829. case "input":
  1830. if (skipInputEvent === true) {
  1831. skipInputEvent = false;
  1832. return e.preventDefault();
  1833. }
  1834. break;
  1835. case "keydown":
  1836. //Safari 5.1.x - modal dialog fires keypress twice workaround
  1837. skipKeyPressEvent = false;
  1838. skipInputEvent = false;
  1839. break;
  1840. case "keypress":
  1841. if (skipKeyPressEvent === true) {
  1842. return e.preventDefault();
  1843. }
  1844. skipKeyPressEvent = true;
  1845. break;
  1846. case "click":
  1847. if (iemobile) {
  1848. var that = this;
  1849. setTimeout(function () {
  1850. eventHandler.apply(that, arguments);
  1851. }, 0);
  1852. return false;
  1853. }
  1854. break;
  1855. }
  1856. // console.log("executed " + e.type);
  1857. var returnVal = eventHandler.apply(this, arguments);
  1858. if (returnVal === false) {
  1859. e.preventDefault();
  1860. e.stopPropagation();
  1861. }
  1862. return returnVal;
  1863. }
  1864. };
  1865. //keep instance of the event
  1866. input.inputmask.events[eventName] = input.inputmask.events[eventName] || [];
  1867. input.inputmask.events[eventName].push(ev);
  1868. if ($.inArray(eventName, ["submit", "reset"]) !== -1) {
  1869. if (input.form != null) $(input.form).on(eventName, ev);
  1870. } else {
  1871. $(input).on(eventName, ev);
  1872. }
  1873. },
  1874. off: function (input, event) {
  1875. if (input.inputmask && input.inputmask.events) {
  1876. var events;
  1877. if (event) {
  1878. events = [];
  1879. events[event] = input.inputmask.events[event];
  1880. } else {
  1881. events = input.inputmask.events;
  1882. }
  1883. $.each(events, function (eventName, evArr) {
  1884. while (evArr.length > 0) {
  1885. var ev = evArr.pop();
  1886. if ($.inArray(eventName, ["submit", "reset"]) !== -1) {
  1887. if (input.form != null) $(input.form).off(eventName, ev);
  1888. } else {
  1889. $(input).off(eventName, ev);
  1890. }
  1891. }
  1892. delete input.inputmask.events[eventName];
  1893. });
  1894. }
  1895. }
  1896. };
  1897. function patchValueProperty(npt) {
  1898. var valueGet;
  1899. var valueSet;
  1900. function patchValhook(type) {
  1901. if ($.valHooks && ($.valHooks[type] === undefined || $.valHooks[type].inputmaskpatch !== true)) {
  1902. var valhookGet = $.valHooks[type] && $.valHooks[type].get ? $.valHooks[type].get : function (elem) {
  1903. return elem.value;
  1904. };
  1905. var valhookSet = $.valHooks[type] && $.valHooks[type].set ? $.valHooks[type].set : function (elem, value) {
  1906. elem.value = value;
  1907. return elem;
  1908. };
  1909. $.valHooks[type] = {
  1910. get: function (elem) {
  1911. if (elem.inputmask) {
  1912. if (elem.inputmask.opts.autoUnmask) {
  1913. return elem.inputmask.unmaskedvalue();
  1914. } else {
  1915. var result = valhookGet(elem);
  1916. return getLastValidPosition(undefined, undefined, elem.inputmask.maskset.validPositions) !== -1 || opts.nullable !== true ? result : "";
  1917. }
  1918. } else return valhookGet(elem);
  1919. },
  1920. set: function (elem, value) {
  1921. var $elem = $(elem),
  1922. result;
  1923. result = valhookSet(elem, value);
  1924. if (elem.inputmask) {
  1925. $elem.trigger("setvalue");
  1926. }
  1927. return result;
  1928. },
  1929. inputmaskpatch: true
  1930. };
  1931. }
  1932. }
  1933. function getter() {
  1934. if (this.inputmask) {
  1935. return this.inputmask.opts.autoUnmask ?
  1936. this.inputmask.unmaskedvalue() :
  1937. (getLastValidPosition() !== -1 || opts.nullable !== true ?
  1938. (document.activeElement === this && opts.clearMaskOnLostFocus ?
  1939. (isRTL ? clearOptionalTail(getBuffer().slice()).reverse() : clearOptionalTail(getBuffer().slice())).join("") :
  1940. valueGet.call(this)) :
  1941. "");
  1942. } else return valueGet.call(this);
  1943. }
  1944. function setter(value) {
  1945. valueSet.call(this, value);
  1946. if (this.inputmask) {
  1947. $(this).trigger("setvalue");
  1948. }
  1949. }
  1950. function installNativeValueSetFallback(npt) {
  1951. EventRuler.on(npt, "mouseenter", function (event) {
  1952. var $input = $(this),
  1953. input = this,
  1954. value = input.inputmask._valueGet();
  1955. if (value !== getBuffer().join("") /*&& getLastValidPosition() > 0*/) {
  1956. $input.trigger("setvalue");
  1957. }
  1958. });
  1959. }
  1960. if (!npt.inputmask.__valueGet) {
  1961. if (Object.getOwnPropertyDescriptor) {
  1962. if (typeof Object.getPrototypeOf !== "function") {
  1963. Object.getPrototypeOf = typeof "test".__proto__ === "object" ? function (object) {
  1964. return object.__proto__;
  1965. } : function (object) {
  1966. return object.constructor.prototype;
  1967. };
  1968. }
  1969. var valueProperty = Object.getPrototypeOf ? Object.getOwnPropertyDescriptor(Object.getPrototypeOf(npt), "value") : undefined;
  1970. if (valueProperty && valueProperty.get && valueProperty.set) {
  1971. valueGet = valueProperty.get;
  1972. valueSet = valueProperty.set;
  1973. Object.defineProperty(npt, "value", {
  1974. get: getter,
  1975. set: setter,
  1976. configurable: true
  1977. });
  1978. } else if (npt.tagName !== "INPUT") {
  1979. valueGet = function () {
  1980. return this.textContent;
  1981. };
  1982. valueSet = function (value) {
  1983. this.textContent = value;
  1984. };
  1985. Object.defineProperty(npt, "value", {
  1986. get: getter,
  1987. set: setter,
  1988. configurable: true
  1989. });
  1990. }
  1991. } else if (document.__lookupGetter__ && npt.__lookupGetter__("value")) {
  1992. valueGet = npt.__lookupGetter__("value");
  1993. valueSet = npt.__lookupSetter__("value");
  1994. npt.__defineGetter__("value", getter);
  1995. npt.__defineSetter__("value", setter);
  1996. }
  1997. npt.inputmask.__valueGet = valueGet; //store native property getter
  1998. npt.inputmask._valueGet = function (overruleRTL) {
  1999. return isRTL && overruleRTL !== true ? valueGet.call(this.el).split("").reverse().join("") : valueGet.call(this.el);
  2000. };
  2001. npt.inputmask.__valueSet = valueSet; //store native property setter
  2002. npt.inputmask._valueSet = function (value, overruleRTL) { //null check is needed for IE8 => otherwise converts to "null"
  2003. valueSet.call(this.el, (value === null || value === undefined) ? "" : ((overruleRTL !== true && isRTL) ? value.split("").reverse().join("") : value));
  2004. };
  2005. if (valueGet === undefined) { //jquery.val fallback
  2006. valueGet = function () {
  2007. return this.value;
  2008. };
  2009. valueSet = function (value) {
  2010. this.value = value;
  2011. };
  2012. patchValhook(npt.type);
  2013. installNativeValueSetFallback(npt);
  2014. }
  2015. }
  2016. }
  2017. function handleRemove(input, k, pos, strict) {
  2018. function generalize() {
  2019. if (opts.keepStatic) {
  2020. var validInputs = [],
  2021. lastAlt = getLastValidPosition(-1, true), positionsClone = $.extend(true, {}, getMaskSet().validPositions),
  2022. prevAltPos = getMaskSet().validPositions[lastAlt];
  2023. //find last alternation
  2024. for (; lastAlt >= 0; lastAlt--) {
  2025. var altPos = getMaskSet().validPositions[lastAlt];
  2026. if (altPos) {
  2027. if (/*altPos.generatedInput !== true &&*/ /[0-9a-bA-Z]/.test(altPos.input)) {
  2028. validInputs.push(altPos.input);
  2029. }
  2030. delete getMaskSet().validPositions[lastAlt];
  2031. if (altPos.alternation !== undefined && altPos.locator[altPos.alternation] !== prevAltPos.locator[altPos.alternation]) {
  2032. break;
  2033. }
  2034. prevAltPos = altPos;
  2035. }
  2036. }
  2037. if (lastAlt > -1) {
  2038. getMaskSet().p = seekNext(getLastValidPosition(-1, true));
  2039. while (validInputs.length > 0) {
  2040. var keypress = new $.Event("keypress");
  2041. keypress.which = validInputs.pop().charCodeAt(0);
  2042. keypressEvent.call(input, keypress, true, false, false, getMaskSet().p);
  2043. }
  2044. } else getMaskSet().validPositions = $.extend(true, {}, positionsClone); //restore original positions
  2045. }
  2046. }
  2047. if (opts.numericInput || isRTL) {
  2048. if (k === Inputmask.keyCode.BACKSPACE) {
  2049. k = Inputmask.keyCode.DELETE;
  2050. } else if (k === Inputmask.keyCode.DELETE) {
  2051. k = Inputmask.keyCode.BACKSPACE;
  2052. }
  2053. if (isRTL) {
  2054. var pend = pos.end;
  2055. pos.end = pos.begin;
  2056. pos.begin = pend;
  2057. }
  2058. }
  2059. if (k === Inputmask.keyCode.BACKSPACE && (pos.end - pos.begin < 1 || opts.insertMode === false)) {
  2060. pos.begin = seekPrevious(pos.begin);
  2061. if (getMaskSet().validPositions[pos.begin] !== undefined && (getMaskSet().validPositions[pos.begin].input === opts.groupSeparator || getMaskSet().validPositions[pos.begin].input === opts.radixPoint)) {
  2062. pos.begin--;
  2063. }
  2064. } else if (k === Inputmask.keyCode.DELETE && pos.begin === pos.end) {
  2065. pos.end = isMask(pos.end, true) ? pos.end + 1 : seekNext(pos.end) + 1;
  2066. if (getMaskSet().validPositions[pos.begin] !== undefined && (getMaskSet().validPositions[pos.begin].input === opts.groupSeparator || getMaskSet().validPositions[pos.begin].input === opts.radixPoint)) {
  2067. pos.end++;
  2068. }
  2069. }
  2070. stripValidPositions(pos.begin, pos.end, false, strict);
  2071. if (strict !== true) {
  2072. generalize(); //revert the alternation
  2073. }
  2074. var lvp = getLastValidPosition(pos.begin, true);
  2075. if (lvp < pos.begin) {
  2076. //if (lvp === -1) resetMaskSet();
  2077. getMaskSet().p = seekNext(lvp);
  2078. } else if (strict !== true) {
  2079. getMaskSet().p = pos.begin;
  2080. }
  2081. }
  2082. function keydownEvent(e) {
  2083. var input = this,
  2084. $input = $(input),
  2085. k = e.keyCode,
  2086. pos = caret(input);
  2087. //backspace, delete, and escape get special treatment
  2088. 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
  2089. e.preventDefault(); //stop default action but allow propagation
  2090. handleRemove(input, k, pos);
  2091. writeBuffer(input, getBuffer(true), getMaskSet().p, e, undoValue !== getBuffer().join(""));
  2092. if (input.inputmask._valueGet() === getBufferTemplate().join("")) {
  2093. $input.trigger("cleared");
  2094. } else if (isComplete(getBuffer()) === true) {
  2095. $input.trigger("complete");
  2096. }
  2097. if (opts.showTooltip) { //update tooltip
  2098. input.title = opts.tooltip || getMaskSet().mask;
  2099. }
  2100. } else if (k === Inputmask.keyCode.END || k === Inputmask.keyCode.PAGE_DOWN) { //when END or PAGE_DOWN pressed set position at lastmatch
  2101. e.preventDefault();
  2102. var caretPos = seekNext(getLastValidPosition());
  2103. if (!opts.insertMode && caretPos === getMaskSet().maskLength && !e.shiftKey) caretPos--;
  2104. caret(input, e.shiftKey ? pos.begin : caretPos, caretPos, true);
  2105. } else if ((k === Inputmask.keyCode.HOME && !e.shiftKey) || k === Inputmask.keyCode.PAGE_UP) { //Home or page_up
  2106. e.preventDefault();
  2107. caret(input, 0, e.shiftKey ? pos.begin : 0, true);
  2108. } else if (((opts.undoOnEscape && k === Inputmask.keyCode.ESCAPE) || (k === 90 && e.ctrlKey)) && e.altKey !== true) { //escape && undo && #762
  2109. checkVal(input, true, false, undoValue.split(""));
  2110. $input.trigger("click");
  2111. } else if (k === Inputmask.keyCode.INSERT && !(e.shiftKey || e.ctrlKey)) { //insert
  2112. opts.insertMode = !opts.insertMode;
  2113. caret(input, !opts.insertMode && pos.begin === getMaskSet().maskLength ? pos.begin - 1 : pos.begin);
  2114. } else if (opts.tabThrough === true && k === Inputmask.keyCode.TAB) {
  2115. if (e.shiftKey === true) {
  2116. if (getTest(pos.begin).match.fn === null) {
  2117. pos.begin = seekNext(pos.begin);
  2118. }
  2119. pos.end = seekPrevious(pos.begin, true);
  2120. pos.begin = seekPrevious(pos.end, true);
  2121. } else {
  2122. pos.begin = seekNext(pos.begin, true);
  2123. pos.end = seekNext(pos.begin, true);
  2124. if (pos.end < getMaskSet().maskLength) pos.end--;
  2125. }
  2126. if (pos.begin < getMaskSet().maskLength) {
  2127. e.preventDefault();
  2128. caret(input, pos.begin, pos.end);
  2129. }
  2130. } else if (opts.insertMode === false && !e.shiftKey) {
  2131. if (k === Inputmask.keyCode.RIGHT) {
  2132. setTimeout(function () {
  2133. var caretPos = caret(input);
  2134. caret(input, caretPos.begin);
  2135. }, 0);
  2136. } else if (k === Inputmask.keyCode.LEFT) {
  2137. setTimeout(function () {
  2138. var caretPos = caret(input);
  2139. caret(input, isRTL ? caretPos.begin + 1 : caretPos.begin - 1);
  2140. }, 0);
  2141. }
  2142. }
  2143. opts.onKeyDown.call(this, e, getBuffer(), caret(input).begin, opts);
  2144. ignorable = $.inArray(k, opts.ignorables) !== -1;
  2145. }
  2146. function keypressEvent(e, checkval, writeOut, strict, ndx) {
  2147. var input = this,
  2148. $input = $(input),
  2149. k = e.which || e.charCode || e.keyCode;
  2150. if (checkval !== true && (!(e.ctrlKey && e.altKey) && (e.ctrlKey || e.metaKey || ignorable))) {
  2151. if (k === Inputmask.keyCode.ENTER && undoValue !== getBuffer().join("")) {
  2152. undoValue = getBuffer().join("");
  2153. // e.preventDefault();
  2154. setTimeout(function () {
  2155. $input.trigger("change");
  2156. }, 0);
  2157. }
  2158. return true;
  2159. } else {
  2160. if (k) {
  2161. //special treat the decimal separator
  2162. if (k === 46 && e.shiftKey === false && opts.radixPoint === ",") k = 44;
  2163. var pos = checkval ? {
  2164. begin: ndx,
  2165. end: ndx
  2166. } : caret(input),
  2167. forwardPosition, c = String.fromCharCode(k);
  2168. getMaskSet().writeOutBuffer = true;
  2169. var valResult = isValid(pos, c, strict);
  2170. if (valResult !== false) {
  2171. resetMaskSet(true);
  2172. forwardPosition = valResult.caret !== undefined ? valResult.caret : checkval ? valResult.pos + 1 : seekNext(valResult.pos);
  2173. getMaskSet().p = forwardPosition; //needed for checkval
  2174. }
  2175. if (writeOut !== false) {
  2176. var self = this;
  2177. setTimeout(function () {
  2178. opts.onKeyValidation.call(self, k, valResult, opts);
  2179. }, 0);
  2180. if (getMaskSet().writeOutBuffer && valResult !== false) {
  2181. var buffer = getBuffer();
  2182. writeBuffer(input, buffer, (opts.numericInput && valResult.caret === undefined) ? seekPrevious(forwardPosition) : forwardPosition, e, checkval !== true);
  2183. if (checkval !== true) {
  2184. setTimeout(function () { //timeout needed for IE
  2185. if (isComplete(buffer) === true) $input.trigger("complete");
  2186. }, 0);
  2187. }
  2188. }
  2189. }
  2190. if (opts.showTooltip) { //update tooltip
  2191. input.title = opts.tooltip || getMaskSet().mask;
  2192. }
  2193. e.preventDefault();
  2194. if (checkval) {
  2195. valResult.forwardPosition = forwardPosition;
  2196. return valResult;
  2197. }
  2198. }
  2199. }
  2200. }
  2201. function pasteEvent(e) {
  2202. var input = this,
  2203. ev = e.originalEvent || e,
  2204. $input = $(input),
  2205. inputValue = input.inputmask._valueGet(true),
  2206. caretPos = caret(input),
  2207. tempValue;
  2208. if (isRTL) {
  2209. tempValue = caretPos.end;
  2210. caretPos.end = caretPos.begin;
  2211. caretPos.begin = tempValue;
  2212. }
  2213. var valueBeforeCaret = inputValue.substr(0, caretPos.begin),
  2214. valueAfterCaret = inputValue.substr(caretPos.end, inputValue.length);
  2215. if (valueBeforeCaret === (isRTL ? getBufferTemplate().reverse() : getBufferTemplate()).slice(0, caretPos.begin).join("")) valueBeforeCaret = "";
  2216. if (valueAfterCaret === (isRTL ? getBufferTemplate().reverse() : getBufferTemplate()).slice(caretPos.end).join("")) valueAfterCaret = "";
  2217. if (isRTL) {
  2218. tempValue = valueBeforeCaret;
  2219. valueBeforeCaret = valueAfterCaret;
  2220. valueAfterCaret = tempValue;
  2221. }
  2222. if (window.clipboardData && window.clipboardData.getData) { // IE
  2223. inputValue = valueBeforeCaret + window.clipboardData.getData("Text") + valueAfterCaret;
  2224. } else if (ev.clipboardData && ev.clipboardData.getData) {
  2225. inputValue = valueBeforeCaret + ev.clipboardData.getData("text/plain") + valueAfterCaret;
  2226. }
  2227. var pasteValue = inputValue;
  2228. if ($.isFunction(opts.onBeforePaste)) {
  2229. pasteValue = opts.onBeforePaste(inputValue, opts);
  2230. if (pasteValue === false) {
  2231. return e.preventDefault();
  2232. }
  2233. if (!pasteValue) {
  2234. pasteValue = inputValue;
  2235. }
  2236. }
  2237. checkVal(input, false, false, isRTL ? pasteValue.split("").reverse() : pasteValue.toString().split(""));
  2238. writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()), e, true);
  2239. if (isComplete(getBuffer()) === true) {
  2240. $input.trigger("complete");
  2241. }
  2242. return e.preventDefault();
  2243. }
  2244. function inputFallBackEvent(e) { //fallback when keypress fails
  2245. var input = this,
  2246. inputValue = input.inputmask._valueGet();
  2247. if (getBuffer().join("") !== inputValue) {
  2248. var caretPos = caret(input);
  2249. inputValue = inputValue.replace(new RegExp("(" + Inputmask.escapeRegex(getBufferTemplate().join("")) + ")*"), "");
  2250. if (iemobile) { //iemobile just set the character at the end althought the caret position is correctly set
  2251. var inputChar = inputValue.replace(getBuffer().join(""), "");
  2252. if (inputChar.length === 1) {
  2253. var keypress = new $.Event("keypress");
  2254. keypress.which = inputChar.charCodeAt(0);
  2255. keypressEvent.call(input, keypress, true, true, false, getMaskSet().validPositions[caretPos.begin - 1] ? caretPos.begin : caretPos.begin - 1);
  2256. return false;
  2257. }
  2258. }
  2259. if (caretPos.begin > inputValue.length) {
  2260. caret(input, inputValue.length);
  2261. caretPos = caret(input);
  2262. }
  2263. //detect & treat possible backspace
  2264. if ((getBuffer().length - inputValue.length) === 1 && inputValue.charAt(caretPos.begin) !== getBuffer()[caretPos.begin] && inputValue.charAt(caretPos.begin + 1) !== getBuffer()[caretPos.begin] && !isMask(caretPos.begin)) {
  2265. e.keyCode = Inputmask.keyCode.BACKSPACE;
  2266. keydownEvent.call(input, e);
  2267. } else {
  2268. var lvp = getLastValidPosition() + 1;
  2269. var bufferTemplate = getBuffer().slice(lvp).join('');
  2270. while (inputValue.match(Inputmask.escapeRegex(bufferTemplate) + "$") === null) {
  2271. bufferTemplate = bufferTemplate.slice(1);
  2272. }
  2273. inputValue = inputValue.replace(bufferTemplate, "");
  2274. inputValue = inputValue.split("");
  2275. checkVal(input, true, false, inputValue, e);
  2276. if (isComplete(getBuffer()) === true) {
  2277. $(input).trigger("complete");
  2278. }
  2279. }
  2280. e.preventDefault();
  2281. }
  2282. }
  2283. function setValueEvent(e) {
  2284. var input = this,
  2285. value = input.inputmask._valueGet();
  2286. checkVal(input, true, false, ($.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask(value, opts) || value) : value).split(""));
  2287. undoValue = getBuffer().join("");
  2288. if ((opts.clearMaskOnLostFocus || opts.clearIncomplete) && input.inputmask._valueGet() === getBufferTemplate().join("")) {
  2289. input.inputmask._valueSet("");
  2290. }
  2291. }
  2292. function focusEvent(e) {
  2293. var input = this,
  2294. nptValue = input.inputmask._valueGet();
  2295. if (opts.showMaskOnFocus && (!opts.showMaskOnHover || (opts.showMaskOnHover && nptValue === ""))) {
  2296. if (input.inputmask._valueGet() !== getBuffer().join("")) {
  2297. writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()));
  2298. }
  2299. } else if (mouseEnter === false) { //only executed on focus without mouseenter
  2300. caret(input, seekNext(getLastValidPosition()));
  2301. }
  2302. if (opts.positionCaretOnTab === true) {
  2303. setTimeout(function () {
  2304. caret(input, seekNext(getLastValidPosition()));
  2305. }, 0);
  2306. }
  2307. undoValue = getBuffer().join("");
  2308. }
  2309. function mouseleaveEvent(e) {
  2310. var input = this;
  2311. mouseEnter = false;
  2312. if (opts.clearMaskOnLostFocus && document.activeElement !== input) {
  2313. var buffer = getBuffer().slice(),
  2314. nptValue = input.inputmask._valueGet();
  2315. if (nptValue !== input.getAttribute("placeholder") && nptValue !== "") {
  2316. if (getLastValidPosition() === -1 && nptValue === getBufferTemplate().join("")) {
  2317. buffer = [];
  2318. } else { //clearout optional tail of the mask
  2319. clearOptionalTail(buffer);
  2320. }
  2321. writeBuffer(input, buffer);
  2322. }
  2323. }
  2324. }
  2325. function clickEvent(e) {
  2326. function doRadixFocus(clickPos) {
  2327. if (opts.radixPoint !== "") {
  2328. var vps = getMaskSet().validPositions;
  2329. if (vps[clickPos] === undefined || (vps[clickPos].input === getPlaceholder(clickPos))) {
  2330. if (clickPos < seekNext(-1)) return true;
  2331. var radixPos = $.inArray(opts.radixPoint, getBuffer());
  2332. if (radixPos !== -1) {
  2333. for (var vp in vps) {
  2334. if (radixPos < vp && vps[vp].input !== getPlaceholder(vp)) {
  2335. return false;
  2336. }
  2337. }
  2338. return true;
  2339. }
  2340. }
  2341. }
  2342. return false;
  2343. }
  2344. var input = this;
  2345. setTimeout(function () { //needed for Chrome ~ initial selection clears after the clickevent
  2346. if (document.activeElement === input) {
  2347. var selectedCaret = caret(input);
  2348. if (selectedCaret.begin === selectedCaret.end) {
  2349. switch (opts.positionCaretOnClick) {
  2350. case "none":
  2351. break;
  2352. case "radixFocus":
  2353. if (doRadixFocus(selectedCaret.begin)) {
  2354. caret(input, opts.numericInput ? seekNext($.inArray(opts.radixPoint, getBuffer())) : $.inArray(opts.radixPoint, getBuffer()));
  2355. break;
  2356. }
  2357. default: //lvp:
  2358. var clickPosition = selectedCaret.begin,
  2359. lvclickPosition = getLastValidPosition(clickPosition, true),
  2360. lastPosition = seekNext(lvclickPosition);
  2361. if (clickPosition < lastPosition) {
  2362. caret(input, !isMask(clickPosition) && !isMask(clickPosition - 1) ? seekNext(clickPosition) : clickPosition);
  2363. } else {
  2364. var placeholder = getPlaceholder(lastPosition);
  2365. if ((placeholder !== "" && getBuffer()[lastPosition] !== placeholder) || (!isMask(lastPosition, true) && getTest(lastPosition).match.def === placeholder)) {
  2366. lastPosition = seekNext(lastPosition);
  2367. }
  2368. caret(input, lastPosition);
  2369. }
  2370. break;
  2371. }
  2372. }
  2373. }
  2374. }, 0);
  2375. }
  2376. function dblclickEvent(e) {
  2377. var input = this;
  2378. setTimeout(function () {
  2379. caret(input, 0, seekNext(getLastValidPosition()));
  2380. }, 0);
  2381. }
  2382. function cutEvent(e) {
  2383. var input = this,
  2384. $input = $(input),
  2385. pos = caret(input),
  2386. ev = e.originalEvent || e;
  2387. //correct clipboardData
  2388. var clipboardData = window.clipboardData || ev.clipboardData,
  2389. clipData = isRTL ? getBuffer().slice(pos.end, pos.begin) : getBuffer().slice(pos.begin, pos.end);
  2390. clipboardData.setData("text", isRTL ? clipData.reverse().join("") : clipData.join(""));
  2391. if (document.execCommand) document.execCommand("copy"); // copy selected content to system clipbaord
  2392. handleRemove(input, Inputmask.keyCode.DELETE, pos);
  2393. writeBuffer(input, getBuffer(), getMaskSet().p, e, undoValue !== getBuffer().join(""));
  2394. if (input.inputmask._valueGet() === getBufferTemplate().join("")) {
  2395. $input.trigger("cleared");
  2396. }
  2397. if (opts.showTooltip) { //update tooltip
  2398. input.title = opts.tooltip || getMaskSet().mask;
  2399. }
  2400. }
  2401. function blurEvent(e) {
  2402. var $input = $(this),
  2403. input = this;
  2404. if (input.inputmask) {
  2405. var nptValue = input.inputmask._valueGet(),
  2406. buffer = getBuffer().slice();
  2407. if (undoValue !== buffer.join("")) {
  2408. setTimeout(function () { //change event should be triggered after the other buffer manipulations on blur
  2409. $input.trigger("change");
  2410. undoValue = buffer.join("");
  2411. }, 0);
  2412. }
  2413. if (nptValue !== "") {
  2414. if (opts.clearMaskOnLostFocus) {
  2415. if (getLastValidPosition() === -1 && nptValue === getBufferTemplate().join("")) {
  2416. buffer = [];
  2417. } else { //clearout optional tail of the mask
  2418. clearOptionalTail(buffer);
  2419. }
  2420. }
  2421. if (isComplete(buffer) === false) {
  2422. setTimeout(function () {
  2423. $input.trigger("incomplete");
  2424. }, 0);
  2425. if (opts.clearIncomplete) {
  2426. resetMaskSet();
  2427. if (opts.clearMaskOnLostFocus) {
  2428. buffer = [];
  2429. } else {
  2430. buffer = getBufferTemplate().slice();
  2431. }
  2432. }
  2433. }
  2434. writeBuffer(input, buffer, undefined, e);
  2435. }
  2436. }
  2437. }
  2438. function mouseenterEvent(e) {
  2439. var input = this;
  2440. mouseEnter = true;
  2441. if (document.activeElement !== input && opts.showMaskOnHover) {
  2442. if (input.inputmask._valueGet() !== getBuffer().join("")) {
  2443. writeBuffer(input, getBuffer());
  2444. }
  2445. }
  2446. }
  2447. function submitEvent(e) { //trigger change on submit if any
  2448. if (undoValue !== getBuffer().join("")) {
  2449. $el.trigger("change");
  2450. }
  2451. if (opts.clearMaskOnLostFocus && getLastValidPosition() === -1 && el.inputmask._valueGet && el.inputmask._valueGet() === getBufferTemplate().join("")) {
  2452. el.inputmask._valueSet(""); //clear masktemplete on submit and still has focus
  2453. }
  2454. if (opts.removeMaskOnSubmit) {
  2455. el.inputmask._valueSet(el.inputmask.unmaskedvalue(), true);
  2456. setTimeout(function () {
  2457. writeBuffer(el, getBuffer());
  2458. }, 0);
  2459. }
  2460. }
  2461. function resetEvent(e) {
  2462. setTimeout(function () {
  2463. $el.trigger("setvalue");
  2464. }, 0);
  2465. }
  2466. function mask(elem) {
  2467. el = elem;
  2468. $el = $(el);
  2469. //show tooltip
  2470. if (opts.showTooltip) {
  2471. el.title = opts.tooltip || getMaskSet().mask;
  2472. }
  2473. if (el.dir === "rtl" || opts.rightAlign) {
  2474. el.style.textAlign = "right";
  2475. }
  2476. if (el.dir === "rtl" || opts.numericInput) {
  2477. el.dir = "ltr";
  2478. el.removeAttribute("dir");
  2479. el.inputmask.isRTL = true;
  2480. isRTL = true;
  2481. }
  2482. //unbind all events - to make sure that no other mask will interfere when re-masking
  2483. EventRuler.off(el);
  2484. patchValueProperty(el);
  2485. if (isElementTypeSupported(el, opts)) {
  2486. //bind events
  2487. EventRuler.on(el, "submit", submitEvent);
  2488. EventRuler.on(el, "reset", resetEvent);
  2489. EventRuler.on(el, "mouseenter", mouseenterEvent);
  2490. EventRuler.on(el, "blur", blurEvent);
  2491. EventRuler.on(el, "focus", focusEvent);
  2492. EventRuler.on(el, "mouseleave", mouseleaveEvent);
  2493. EventRuler.on(el, "click", clickEvent);
  2494. EventRuler.on(el, "dblclick", dblclickEvent);
  2495. EventRuler.on(el, "paste", pasteEvent);
  2496. EventRuler.on(el, "dragdrop", pasteEvent);
  2497. EventRuler.on(el, "drop", pasteEvent);
  2498. EventRuler.on(el, "cut", cutEvent);
  2499. EventRuler.on(el, "complete", opts.oncomplete);
  2500. EventRuler.on(el, "incomplete", opts.onincomplete);
  2501. EventRuler.on(el, "cleared", opts.oncleared);
  2502. if (opts.inputEventOnly !== true) {
  2503. EventRuler.on(el, "keydown", keydownEvent);
  2504. EventRuler.on(el, "keypress", keypressEvent);
  2505. }
  2506. EventRuler.on(el, "input", inputFallBackEvent);
  2507. }
  2508. EventRuler.on(el, "setvalue", setValueEvent);
  2509. //apply mask
  2510. if (el.inputmask._valueGet() !== "" || opts.clearMaskOnLostFocus === false || document.activeElement === el) {
  2511. var initialValue = $.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask(el.inputmask._valueGet(), opts) || el.inputmask._valueGet()) : el.inputmask._valueGet();
  2512. checkVal(el, true, false, initialValue.split(""));
  2513. var buffer = getBuffer().slice();
  2514. undoValue = buffer.join("");
  2515. // Wrap document.activeElement in a try/catch block since IE9 throw "Unspecified error" if document.activeElement is undefined when we are in an IFrame.
  2516. if (isComplete(buffer) === false) {
  2517. if (opts.clearIncomplete) {
  2518. resetMaskSet();
  2519. }
  2520. }
  2521. if (opts.clearMaskOnLostFocus && document.activeElement !== el) {
  2522. if (getLastValidPosition() === -1) {
  2523. buffer = [];
  2524. } else {
  2525. clearOptionalTail(buffer);
  2526. }
  2527. }
  2528. writeBuffer(el, buffer);
  2529. if (document.activeElement === el) { //position the caret when in focus
  2530. caret(el, seekNext(getLastValidPosition()));
  2531. }
  2532. }
  2533. }
  2534. //action object
  2535. var valueBuffer;
  2536. if (actionObj !== undefined) {
  2537. switch (actionObj.action) {
  2538. case "isComplete":
  2539. el = actionObj.el;
  2540. return isComplete(getBuffer());
  2541. case "unmaskedvalue":
  2542. el = actionObj.el;
  2543. if (el !== undefined && el.inputmask !== undefined) {
  2544. maskset = el.inputmask.maskset;
  2545. opts = el.inputmask.opts;
  2546. isRTL = el.inputmask.isRTL;
  2547. } else {
  2548. valueBuffer = actionObj.value;
  2549. if (opts.numericInput) {
  2550. isRTL = true;
  2551. }
  2552. valueBuffer = ($.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask(valueBuffer, opts) || valueBuffer) : valueBuffer).split("");
  2553. checkVal(undefined, false, false, isRTL ? valueBuffer.reverse() : valueBuffer);
  2554. if ($.isFunction(opts.onBeforeWrite)) opts.onBeforeWrite(undefined, getBuffer(), 0, opts);
  2555. }
  2556. return unmaskedvalue(el);
  2557. case "mask":
  2558. el = actionObj.el;
  2559. maskset = el.inputmask.maskset;
  2560. opts = el.inputmask.opts;
  2561. isRTL = el.inputmask.isRTL;
  2562. undoValue = getBuffer().join("");
  2563. mask(el);
  2564. break;
  2565. case "format":
  2566. if (opts.numericInput) {
  2567. isRTL = true;
  2568. }
  2569. valueBuffer = ($.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask(actionObj.value, opts) || actionObj.value) : actionObj.value).split("");
  2570. checkVal(undefined, false, false, isRTL ? valueBuffer.reverse() : valueBuffer);
  2571. if ($.isFunction(opts.onBeforeWrite)) opts.onBeforeWrite(undefined, getBuffer(), 0, opts);
  2572. if (actionObj.metadata) {
  2573. return {
  2574. value: isRTL ? getBuffer().slice().reverse().join("") : getBuffer().join(""),
  2575. metadata: maskScope({
  2576. "action": "getmetadata"
  2577. }, maskset, opts)
  2578. };
  2579. }
  2580. return isRTL ? getBuffer().slice().reverse().join("") : getBuffer().join("");
  2581. case "isValid":
  2582. if (opts.numericInput) {
  2583. isRTL = true;
  2584. }
  2585. if (actionObj.value) {
  2586. valueBuffer = actionObj.value.split("");
  2587. checkVal(undefined, false, true, isRTL ? valueBuffer.reverse() : valueBuffer);
  2588. } else {
  2589. actionObj.value = getBuffer().join("");
  2590. }
  2591. var buffer = getBuffer();
  2592. var rl = determineLastRequiredPosition(),
  2593. lmib = buffer.length - 1;
  2594. for (; lmib > rl; lmib--) {
  2595. if (isMask(lmib)) break;
  2596. }
  2597. buffer.splice(rl, lmib + 1 - rl);
  2598. return isComplete(buffer) && actionObj.value === getBuffer().join("");
  2599. case "getemptymask":
  2600. return getBufferTemplate().join("");
  2601. case "remove":
  2602. el = actionObj.el;
  2603. $el = $(el);
  2604. maskset = el.inputmask.maskset;
  2605. opts = el.inputmask.opts;
  2606. //writeout the unmaskedvalue
  2607. el.inputmask._valueSet(unmaskedvalue(el));
  2608. //unbind all events
  2609. EventRuler.off(el);
  2610. //restore the value property
  2611. var valueProperty;
  2612. if (Object.getOwnPropertyDescriptor && Object.getPrototypeOf) {
  2613. valueProperty = Object.getOwnPropertyDescriptor(Object.getPrototypeOf(el), "value");
  2614. if (valueProperty) {
  2615. if (el.inputmask.__valueGet) {
  2616. Object.defineProperty(el, "value", {
  2617. get: el.inputmask.__valueGet,
  2618. set: el.inputmask.__valueSet,
  2619. configurable: true
  2620. });
  2621. }
  2622. }
  2623. } else if (document.__lookupGetter__ && el.__lookupGetter__("value")) {
  2624. if (el.inputmask.__valueGet) {
  2625. el.__defineGetter__("value", el.inputmask.__valueGet);
  2626. el.__defineSetter__("value", el.inputmask.__valueSet);
  2627. }
  2628. }
  2629. //clear data
  2630. el.inputmask = undefined;
  2631. break;
  2632. case "getmetadata":
  2633. if ($.isArray(maskset.metadata)) {
  2634. //find last alternation
  2635. var alternation, lvp = getLastValidPosition(undefined, true);
  2636. for (var firstAlt = lvp; firstAlt >= 0; firstAlt--) {
  2637. if (getMaskSet().validPositions[firstAlt] && getMaskSet().validPositions[firstAlt].alternation !== undefined) {
  2638. alternation = getMaskSet().validPositions[firstAlt].alternation;
  2639. break;
  2640. }
  2641. }
  2642. return alternation !== undefined ? maskset.metadata[getMaskSet().validPositions[firstAlt].locator[alternation]] : [];
  2643. }
  2644. return maskset.metadata;
  2645. }
  2646. }
  2647. }
  2648. //make inputmask available
  2649. window.Inputmask = Inputmask;
  2650. return Inputmask;
  2651. }));