inputmask.js 177 KB

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