| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826 |
- /*
- * Input Mask Core
- * http://github.com/RobinHerbots/jquery.inputmask
- * Copyright (c) 2010 - Robin Herbots
- * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
- * Version: 0.0.0-dev
- */
- (function(factory) {
- if (typeof define === "function" && define.amd) {
- define(["inputmask.dependencyLib"], factory);
- } else if (typeof exports === "object") {
- module.exports = factory(require("./inputmask.dependencyLib.jquery"));
- } else {
- factory(window.dependencyLib || jQuery);
- }
- }
- (function($) {
- function Inputmask(alias, options) {
- //allow instanciating without new
- if (!(this instanceof Inputmask)) {
- return new Inputmask(alias, options);
- }
- if ($.isPlainObject(alias)) {
- options = alias;
- } else {
- options = options || {};
- options.alias = alias;
- }
- this.el = undefined;
- //init options
- this.opts = $.extend(true, {}, this.defaults, options);
- this.noMasksCache = options && options.definitions !== undefined;
- this.userOptions = options || {}; //user passed options
- this.events = {};
- resolveAlias(this.opts.alias, options, this.opts);
- }
- Inputmask.prototype = {
- //options default
- defaults: {
- placeholder: "_",
- optionalmarker: {
- start: "[",
- end: "]"
- },
- quantifiermarker: {
- start: "{",
- end: "}"
- },
- groupmarker: {
- start: "(",
- end: ")"
- },
- alternatormarker: "|",
- escapeChar: "\\",
- mask: null, //needs tobe null instead of undefined as the extend method does not consider props with the undefined value
- oncomplete: $.noop, //executes when the mask is complete
- onincomplete: $.noop, //executes when the mask is incomplete and focus is lost
- oncleared: $.noop, //executes when the mask is cleared
- repeat: 0, //repetitions of the mask: * ~ forever, otherwise specify an integer
- greedy: true, //true: allocated buffer for the mask and repetitions - false: allocate only if needed
- autoUnmask: false, //automatically unmask when retrieving the value with $.fn.val or value if the browser supports __lookupGetter__ or getOwnPropertyDescriptor
- removeMaskOnSubmit: false, //remove the mask before submitting the form.
- clearMaskOnLostFocus: true,
- insertMode: true, //insert the input or overwrite the input
- clearIncomplete: false, //clear the incomplete input on blur
- aliases: {}, //aliases definitions => see jquery.inputmask.extensions.js
- alias: null,
- onKeyDown: $.noop, //callback to implement autocomplete on certain keys for example. args => event, buffer, caretPos, opts
- onBeforeMask: null, //executes before masking the initial value to allow preprocessing of the initial value. args => initialValue, opts => return processedValue
- onBeforePaste: function(pastedValue, opts) {
- return $.isFunction(opts.onBeforeMask) ? opts.onBeforeMask(pastedValue, opts) : pastedValue;
- }, //executes before masking the pasted value to allow preprocessing of the pasted value. args => pastedValue, opts => return processedValue
- onBeforeWrite: null, //executes before writing to the masked element. args => event, opts
- onUnMask: null, //executes after unmasking to allow postprocessing of the unmaskedvalue. args => maskedValue, unmaskedValue, opts
- showMaskOnFocus: true, //show the mask-placeholder when the input has focus
- showMaskOnHover: true, //show the mask-placeholder when hovering the empty input
- onKeyValidation: $.noop, //executes on every key-press with the result of isValid. Params: key, result, opts
- skipOptionalPartCharacter: " ", //a character which can be used to skip an optional part of a mask
- showTooltip: false, //show the activemask as tooltip
- tooltip: undefined, //tooltip to show
- numericInput: false, //numericInput input direction style (input shifts to the left while holding the caret position)
- rightAlign: false, //align to the right
- undoOnEscape: true, //pressing escape reverts the value to the value before focus
- //numeric basic properties
- radixPoint: "", //".", // | ","
- groupSeparator: "", //",", // | "."
- radixFocus: false, //position caret to radixpoint on initial click
- //numeric basic properties
- nojumps: false, //do not jump over fixed parts in the mask
- nojumpsThreshold: 0, //start nojumps as of
- 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
- positionCaretOnTab: false, //when enabled the caret position is set after the latest valid position on TAB
- tabThrough: false, //allows for tabbing through the different parts of the masked field
- supportsInputType: ["text", "tel", "password"], //list with the supported input types
- definitions: {
- "9": {
- validator: "[0-9]",
- cardinality: 1,
- definitionSymbol: "*"
- },
- "a": {
- validator: "[A-Za-z\u0410-\u044F\u0401\u0451\u00C0-\u00FF\u00B5]",
- cardinality: 1,
- definitionSymbol: "*"
- },
- "*": {
- validator: "[0-9A-Za-z\u0410-\u044F\u0401\u0451\u00C0-\u00FF\u00B5]",
- cardinality: 1
- }
- },
- //specify keyCodes which should not be considered in the keypress event, otherwise the preventDefault will stop their default behavior especially in FF
- ignorables: [8, 9, 13, 19, 27, 33, 34, 35, 36, 37, 38, 39, 40, 45, 46, 93, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123],
- isComplete: null, //override for isComplete - args => buffer, opts - return true || false
- canClearPosition: $.noop, //hook to alter the clear behavior in the stripValidPositions args => maskset, position, lastValidPosition, opts => return true|false
- postValidation: null, //hook to postValidate the result from isValid. Usefull for validating the entry as a whole. args => buffer, currentResult, opts => return true/false/refresh command
- staticDefinitionSymbol: undefined, //specify a definitionSymbol for static content, used to make matches for alternators
- jitMasking: false //just in time masking ~ only mask while typing, can n (number), true or false
- },
- masksCache: {},
- mask: function(elems) {
- var that = this;
- if (typeof elems === "string") {
- elems = document.getElementById(elems) || document.querySelectorAll(elems);
- }
- elems = elems.nodeName ? [elems] : elems;
- $.each(elems, function(ndx, el) {
- var scopedOpts = $.extend(true, {}, that.opts);
- importAttributeOptions(el, scopedOpts, $.extend(true, {}, that.userOptions));
- var maskset = generateMaskSet(scopedOpts, that.noMasksCache);
- if (maskset !== undefined) {
- if (el.inputmask !== undefined) {
- el.inputmask.remove();
- }
- //store inputmask instance on the input with element reference
- el.inputmask = new Inputmask();
- el.inputmask.opts = scopedOpts;
- el.inputmask.noMasksCache = that.noMasksCache;
- el.inputmask.userOptions = $.extend(true, {}, that.userOptions);
- el.inputmask.el = el;
- el.inputmask.maskset = maskset;
- el.inputmask.isRTL = false;
- $.data(el, "_inputmask_opts", scopedOpts);
- maskScope({
- "action": "mask",
- "el": el
- });
- }
- });
- return elems && elems[0] ? (elems[0].inputmask || this) : this;
- },
- option: function(options) { //set extra options || retrieve value of a current option
- if (typeof options === "string") {
- return this.opts[options];
- } else if (typeof options === "object") {
- $.extend(this.opts, options);
- $.extend(this.userOptions, options); //user passed options
- //remask
- if (this.el) {
- if (options.mask !== undefined || options.alias !== undefined) {
- this.mask(this.el);
- } else {
- $.data(this.el, "_inputmask_opts", this.opts);
- maskScope({
- "action": "mask",
- "el": this.el
- });
- }
- }
- return this;
- }
- },
- unmaskedvalue: function(value) {
- return maskScope({
- "action": "unmaskedvalue",
- "el": this.el,
- "value": value
- }, this.el && this.el.inputmask ? this.el.inputmask.maskset : generateMaskSet(this.opts, this.noMasksCache), this.opts);
- },
- remove: function() {
- if (this.el) {
- maskScope({
- "action": "remove",
- "el": this.el
- });
- this.el.inputmask = undefined; //delete ~ undefined
- return this.el;
- }
- },
- getemptymask: function() { //return the default (empty) mask value, usefull for setting the default value in validation
- return maskScope({
- "action": "getemptymask"
- }, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
- },
- hasMaskedValue: function() { //check wheter the returned value is masked or not; currently only works reliable when using jquery.val fn to retrieve the value
- return !this.opts.autoUnmask;
- },
- isComplete: function() {
- return maskScope({
- "action": "isComplete",
- "el": this.el //optional
- }, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
- },
- getmetadata: function() { //return mask metadata if exists
- return maskScope({
- "action": "getmetadata"
- }, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
- },
- isValid: function(value) {
- return maskScope({
- "action": "isValid",
- "value": value
- }, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
- },
- format: function(value, metadata) {
- return maskScope({
- "action": "format",
- "value": value,
- "metadata": metadata //true/false getmetadata
- }, this.maskset || generateMaskSet(this.opts, this.noMasksCache), this.opts);
- }
- };
- //apply defaults, definitions, aliases
- Inputmask.extendDefaults = function(options) {
- $.extend(true, Inputmask.prototype.defaults, options);
- };
- Inputmask.extendDefinitions = function(definition) {
- $.extend(true, Inputmask.prototype.defaults.definitions, definition);
- };
- Inputmask.extendAliases = function(alias) {
- $.extend(true, Inputmask.prototype.defaults.aliases, alias);
- };
- //static fn on inputmask
- Inputmask.format = function(value, options, metadata) {
- return Inputmask(options).format(value, metadata);
- };
- Inputmask.unmask = function(value, options) {
- return Inputmask(options).unmaskedvalue(value);
- };
- Inputmask.isValid = function(value, options) {
- return Inputmask(options).isValid(value);
- };
- Inputmask.remove = function(elems) {
- $.each(elems, function(ndx, el) {
- if (el.inputmask) el.inputmask.remove();
- });
- };
- Inputmask.escapeRegex = function(str) {
- var specials = ["/", ".", "*", "+", "?", "|", "(", ")", "[", "]", "{", "}", "\\", "$", "^"];
- return str.replace(new RegExp("(\\" + specials.join("|\\") + ")", "gim"), "\\$1");
- };
- Inputmask.keyCode = {
- ALT: 18,
- BACKSPACE: 8,
- BACKSPACE_SAFARI: 127,
- CAPS_LOCK: 20,
- COMMA: 188,
- COMMAND: 91,
- COMMAND_LEFT: 91,
- COMMAND_RIGHT: 93,
- CONTROL: 17,
- DELETE: 46,
- DOWN: 40,
- END: 35,
- ENTER: 13,
- ESCAPE: 27,
- HOME: 36,
- INSERT: 45,
- LEFT: 37,
- MENU: 93,
- NUMPAD_ADD: 107,
- NUMPAD_DECIMAL: 110,
- NUMPAD_DIVIDE: 111,
- NUMPAD_ENTER: 108,
- NUMPAD_MULTIPLY: 106,
- NUMPAD_SUBTRACT: 109,
- PAGE_DOWN: 34,
- PAGE_UP: 33,
- PERIOD: 190,
- RIGHT: 39,
- SHIFT: 16,
- SPACE: 32,
- TAB: 9,
- UP: 38,
- WINDOWS: 91,
- X: 88
- };
- //helper functions
- function isInputEventSupported(eventName) {
- var el = document.createElement("input"),
- evName = "on" + eventName,
- isSupported = (evName in el);
- if (!isSupported) {
- el.setAttribute(evName, "return;");
- isSupported = typeof el[evName] == "function";
- }
- el = null;
- return isSupported;
- }
- function isElementTypeSupported(input, opts) {
- var elementType = input.getAttribute("type");
- var isSupported = (input.tagName === "INPUT" && $.inArray(elementType, opts.supportsInputType) !== -1) || input.isContentEditable || input.tagName === "TEXTAREA";
- if (!isSupported && input.tagName === "INPUT") {
- var el = document.createElement("input");
- el.setAttribute("type", elementType);
- isSupported = el.type === "text"; //apply mask only if the type is not natively supported
- el = null;
- }
- return isSupported;
- }
- function resolveAlias(aliasStr, options, opts) {
- var aliasDefinition = opts.aliases[aliasStr];
- if (aliasDefinition) {
- if (aliasDefinition.alias) resolveAlias(aliasDefinition.alias, undefined, opts); //alias is another alias
- $.extend(true, opts, aliasDefinition); //merge alias definition in the options
- $.extend(true, opts, options); //reapply extra given options
- return true;
- } else //alias not found - try as mask
- if (opts.mask === null) {
- opts.mask = aliasStr;
- }
- return false;
- }
- function importAttributeOptions(npt, opts, userOptions) {
- var attrOptions = npt.getAttribute("data-inputmask"),
- option, dataoptions, optionData, p;
- function importOption(option, optionData) {
- optionData = optionData !== undefined ? optionData : npt.getAttribute("data-inputmask-" + option);
- if (optionData !== null) {
- if (typeof optionData === "string") {
- if (option.indexOf("on") === 0) optionData = window[optionData]; //get function definition
- else if (optionData === "false") optionData = false;
- else if (optionData === "true") optionData = true;
- }
- userOptions[option] = optionData;
- }
- }
- if (attrOptions && attrOptions !== "") {
- attrOptions = attrOptions.replace(new RegExp("'", "g"), '"');
- dataoptions = JSON.parse("{" + attrOptions + "}");
- }
- //resolve aliases
- if (dataoptions) { //pickup alias from data-inputmask
- optionData = undefined;
- for (p in dataoptions) {
- if (p.toLowerCase() === "alias") {
- optionData = dataoptions[p];
- break;
- }
- }
- }
- importOption("alias", optionData); //pickup alias from data-inputmask-alias
- if (userOptions.alias) {
- resolveAlias(userOptions.alias, userOptions, opts);
- }
- for (option in opts) {
- if (dataoptions) {
- optionData = undefined;
- for (p in dataoptions) {
- if (p.toLowerCase() === option.toLowerCase()) {
- optionData = dataoptions[p];
- break;
- }
- }
- }
- importOption(option, optionData);
- }
- $.extend(true, opts, userOptions);
- return opts;
- }
- function generateMaskSet(opts, nocache) {
- var ms;
- function analyseMask(mask) {
- var tokenizer = /(?:[?*+]|\{[0-9\+\*]+(?:,[0-9\+\*]*)?\})|[^.?*+^${[]()|\\]+|./g,
- escaped = false,
- currentToken = new MaskToken(),
- match,
- m,
- openenings = [],
- maskTokens = [],
- openingToken,
- currentOpeningToken,
- alternator,
- lastMatch,
- groupToken;
- function MaskToken(isGroup, isOptional, isQuantifier, isAlternator) {
- this.matches = [];
- this.isGroup = isGroup || false;
- this.isOptional = isOptional || false;
- this.isQuantifier = isQuantifier || false;
- this.isAlternator = isAlternator || false;
- this.quantifier = {
- min: 1,
- max: 1
- };
- }
- //test definition => {fn: RegExp/function, cardinality: int, optionality: bool, newBlockMarker: bool, casing: null/upper/lower, def: definitionSymbol, placeholder: placeholder, mask: real maskDefinition}
- function insertTestDefinition(mtoken, element, position) {
- var maskdef = opts.definitions[element];
- position = position !== undefined ? position : mtoken.matches.length;
- var prevMatch = mtoken.matches[position - 1];
- if (maskdef && !escaped) {
- maskdef.placeholder = $.isFunction(maskdef.placeholder) ? maskdef.placeholder(opts) : maskdef.placeholder;
- var prevalidators = maskdef.prevalidator,
- prevalidatorsL = prevalidators ? prevalidators.length : 0;
- //handle prevalidators
- for (var i = 1; i < maskdef.cardinality; i++) {
- var prevalidator = prevalidatorsL >= i ? prevalidators[i - 1] : [],
- validator = prevalidator.validator,
- cardinality = prevalidator.cardinality;
- mtoken.matches.splice(position++, 0, {
- fn: validator ? typeof validator === "string" ? new RegExp(validator) : new function() {
- this.test = validator;
- } : new RegExp("."),
- cardinality: cardinality ? cardinality : 1,
- optionality: mtoken.isOptional,
- newBlockMarker: prevMatch === undefined || prevMatch.def !== (maskdef.definitionSymbol || element),
- casing: maskdef.casing,
- def: maskdef.definitionSymbol || element,
- placeholder: maskdef.placeholder,
- mask: element
- });
- prevMatch = mtoken.matches[position - 1];
- }
- mtoken.matches.splice(position++, 0, {
- fn: maskdef.validator ? typeof maskdef.validator == "string" ? new RegExp(maskdef.validator) : new function() {
- this.test = maskdef.validator;
- } : new RegExp("."),
- cardinality: maskdef.cardinality,
- optionality: mtoken.isOptional,
- newBlockMarker: prevMatch === undefined || prevMatch.def !== (maskdef.definitionSymbol || element),
- casing: maskdef.casing,
- def: maskdef.definitionSymbol || element,
- placeholder: maskdef.placeholder,
- mask: element
- });
- } else {
- mtoken.matches.splice(position++, 0, {
- fn: null,
- cardinality: 0,
- optionality: mtoken.isOptional,
- newBlockMarker: prevMatch === undefined || prevMatch.def !== element,
- casing: null,
- def: opts.staticDefinitionSymbol || element,
- placeholder: opts.staticDefinitionSymbol !== undefined ? element : undefined,
- mask: element
- });
- escaped = false;
- }
- }
- function verifyGroupMarker(lastMatch, isOpenGroup) {
- if (lastMatch.isGroup) { //this is not a group but a normal mask => convert
- lastMatch.isGroup = false;
- insertTestDefinition(lastMatch, opts.groupmarker.start, 0);
- if (isOpenGroup !== true) {
- insertTestDefinition(lastMatch, opts.groupmarker.end);
- }
- }
- }
- function maskCurrentToken(m, currentToken, lastMatch, extraCondition) {
- if (currentToken.matches.length > 0 && (extraCondition === undefined || extraCondition)) {
- lastMatch = currentToken.matches[currentToken.matches.length - 1];
- verifyGroupMarker(lastMatch);
- }
- insertTestDefinition(currentToken, m);
- }
- function defaultCase() {
- if (openenings.length > 0) {
- currentOpeningToken = openenings[openenings.length - 1];
- maskCurrentToken(m, currentOpeningToken, lastMatch, !currentOpeningToken.isAlternator);
- if (currentOpeningToken.isAlternator) { //handle alternator a | b case
- alternator = openenings.pop();
- for (var mndx = 0; mndx < alternator.matches.length; mndx++) {
- alternator.matches[mndx].isGroup = false; //don't mark alternate groups as group
- }
- if (openenings.length > 0) {
- currentOpeningToken = openenings[openenings.length - 1];
- currentOpeningToken.matches.push(alternator);
- } else {
- currentToken.matches.push(alternator);
- }
- }
- } else {
- maskCurrentToken(m, currentToken, lastMatch);
- }
- }
- function reverseTokens(maskToken) {
- function reverseStatic(st) {
- if (st === opts.optionalmarker.start) st = opts.optionalmarker.end;
- else if (st === opts.optionalmarker.end) st = opts.optionalmarker.start;
- else if (st === opts.groupmarker.start) st = opts.groupmarker.end;
- else if (st === opts.groupmarker.end) st = opts.groupmarker.start;
- return st;
- }
- maskToken.matches = maskToken.matches.reverse();
- for (var match in maskToken.matches) {
- var intMatch = parseInt(match);
- if (maskToken.matches[match].isQuantifier && maskToken.matches[intMatch + 1] && maskToken.matches[intMatch + 1].isGroup) { //reposition quantifier
- var qt = maskToken.matches[match];
- maskToken.matches.splice(match, 1);
- maskToken.matches.splice(intMatch + 1, 0, qt);
- }
- if (maskToken.matches[match].matches !== undefined) {
- maskToken.matches[match] = reverseTokens(maskToken.matches[match]);
- } else {
- maskToken.matches[match] = reverseStatic(maskToken.matches[match]);
- }
- }
- return maskToken;
- }
- while (match = tokenizer.exec(mask)) {
- m = match[0];
- if (escaped) {
- defaultCase();
- continue;
- }
- switch (m.charAt(0)) {
- case opts.escapeChar:
- escaped = true;
- break;
- case opts.optionalmarker.end:
- // optional closing
- case opts.groupmarker.end:
- // Group closing
- openingToken = openenings.pop();
- if (openingToken !== undefined) {
- if (openenings.length > 0) {
- currentOpeningToken = openenings[openenings.length - 1];
- currentOpeningToken.matches.push(openingToken);
- if (currentOpeningToken.isAlternator) { //handle alternator (a) | (b) case
- alternator = openenings.pop();
- for (var mndx = 0; mndx < alternator.matches.length; mndx++) {
- alternator.matches[mndx].isGroup = false; //don't mark alternate groups as group
- }
- if (openenings.length > 0) {
- currentOpeningToken = openenings[openenings.length - 1];
- currentOpeningToken.matches.push(alternator);
- } else {
- currentToken.matches.push(alternator);
- }
- }
- } else {
- currentToken.matches.push(openingToken);
- }
- } else defaultCase();
- break;
- case opts.optionalmarker.start:
- // optional opening
- openenings.push(new MaskToken(false, true));
- break;
- case opts.groupmarker.start:
- // Group opening
- openenings.push(new MaskToken(true));
- break;
- case opts.quantifiermarker.start:
- //Quantifier
- var quantifier = new MaskToken(false, false, true);
- m = m.replace(/[{}]/g, "");
- var mq = m.split(","),
- mq0 = isNaN(mq[0]) ? mq[0] : parseInt(mq[0]),
- mq1 = mq.length === 1 ? mq0 : (isNaN(mq[1]) ? mq[1] : parseInt(mq[1]));
- if (mq1 === "*" || mq1 === "+") {
- mq0 = mq1 === "*" ? 0 : 1;
- }
- quantifier.quantifier = {
- min: mq0,
- max: mq1
- };
- if (openenings.length > 0) {
- var matches = openenings[openenings.length - 1].matches;
- match = matches.pop();
- if (!match.isGroup) {
- groupToken = new MaskToken(true);
- groupToken.matches.push(match);
- match = groupToken;
- }
- matches.push(match);
- matches.push(quantifier);
- } else {
- match = currentToken.matches.pop();
- if (!match.isGroup) {
- groupToken = new MaskToken(true);
- groupToken.matches.push(match);
- match = groupToken;
- }
- currentToken.matches.push(match);
- currentToken.matches.push(quantifier);
- }
- break;
- case opts.alternatormarker:
- if (openenings.length > 0) {
- currentOpeningToken = openenings[openenings.length - 1];
- lastMatch = currentOpeningToken.matches.pop();
- } else {
- lastMatch = currentToken.matches.pop();
- }
- if (lastMatch.isAlternator) {
- openenings.push(lastMatch);
- } else {
- alternator = new MaskToken(false, false, false, true);
- alternator.matches.push(lastMatch);
- openenings.push(alternator);
- }
- break;
- default:
- defaultCase();
- }
- }
- while (openenings.length > 0) {
- openingToken = openenings.pop();
- verifyGroupMarker(openingToken, true);
- currentToken.matches.push(openingToken);
- }
- if (currentToken.matches.length > 0) {
- lastMatch = currentToken.matches[currentToken.matches.length - 1];
- verifyGroupMarker(lastMatch);
- maskTokens.push(currentToken);
- }
- if (opts.numericInput) {
- reverseTokens(maskTokens[0]);
- }
- // console.log(JSON.stringify(maskTokens));
- return maskTokens;
- }
- function generateMask(mask, metadata) {
- if (mask === null || mask === "") {
- return undefined;
- } else {
- if (mask.length === 1 && opts.greedy === false && opts.repeat !== 0) {
- opts.placeholder = "";
- } //hide placeholder with single non-greedy mask
- if (opts.repeat > 0 || opts.repeat === "*" || opts.repeat === "+") {
- var repeatStart = opts.repeat === "*" ? 0 : (opts.repeat === "+" ? 1 : opts.repeat);
- mask = opts.groupmarker.start + mask + opts.groupmarker.end + opts.quantifiermarker.start + repeatStart + "," + opts.repeat + opts.quantifiermarker.end;
- }
- // console.log(mask);
- var masksetDefinition;
- if (Inputmask.prototype.masksCache[mask] === undefined || nocache === true) {
- masksetDefinition = {
- "mask": mask,
- "maskToken": analyseMask(mask),
- "validPositions": {},
- "_buffer": undefined,
- "buffer": undefined,
- "tests": {},
- "metadata": metadata
- };
- if (nocache !== true) {
- Inputmask.prototype.masksCache[opts.numericInput ? mask.split("").reverse().join("") : mask] = masksetDefinition;
- masksetDefinition = $.extend(true, {}, Inputmask.prototype.masksCache[opts.numericInput ? mask.split("").reverse().join("") : mask]);
- }
- } else masksetDefinition = $.extend(true, {}, Inputmask.prototype.masksCache[opts.numericInput ? mask.split("").reverse().join("") : mask]);
- return masksetDefinition;
- }
- }
- function preProcessMask(mask) {
- mask = mask.toString();
- // if (opts.numericInput) {
- // mask = mask.split('').reverse();
- // mask = mask.join('');
- // }
- return mask;
- }
- if ($.isFunction(opts.mask)) { //allow mask to be a preprocessing fn - should return a valid mask
- opts.mask = opts.mask(opts);
- }
- if ($.isArray(opts.mask)) {
- if (opts.mask.length > 1) {
- opts.keepStatic = opts.keepStatic === null ? true : opts.keepStatic; //enable by default when passing multiple masks when the option is not explicitly specified
- var altMask = "(";
- $.each(opts.numericInput ? opts.mask.reverse() : opts.mask, function(ndx, msk) {
- if (altMask.length > 1) {
- altMask += ")|(";
- }
- if (msk.mask !== undefined && !$.isFunction(msk.mask)) {
- altMask += preProcessMask(msk.mask);
- } else {
- altMask += preProcessMask(msk);
- }
- });
- altMask += ")";
- return generateMask(altMask, opts.mask);
- } else opts.mask = opts.mask.pop();
- }
- if (opts.mask) {
- if (opts.mask.mask !== undefined && !$.isFunction(opts.mask.mask)) {
- ms = generateMask(preProcessMask(opts.mask.mask), opts.mask);
- } else {
- ms = generateMask(preProcessMask(opts.mask), opts.mask);
- }
- }
- return ms;
- }
- var ua = navigator.userAgent,
- mobile = /mobile/i.test(ua),
- iemobile = /iemobile/i.test(ua),
- iphone = /iphone/i.test(ua) && !iemobile,
- android = /android.*safari.*/i.test(ua) && !iemobile;
- //masking scope
- //actionObj definition see below
- function maskScope(actionObj, maskset, opts) {
- var isRTL = false,
- undoValue,
- el, $el,
- skipKeyPressEvent = false, //Safari 5.1.x - modal dialog fires keypress twice workaround
- skipInputEvent = false, //skip when triggered from within inputmask
- ignorable = false,
- maxLength,
- mouseEnter = true;
- //maskset helperfunctions
- function getMaskTemplate(baseOnInput, minimalPos, includeInput) {
- minimalPos = minimalPos || 0;
- var maskTemplate = [],
- ndxIntlzr, pos = 0,
- test, testPos, lvp = getLastValidPosition();
- do {
- if (baseOnInput === true && getMaskSet().validPositions[pos]) {
- var validPos = getMaskSet().validPositions[pos];
- test = validPos.match;
- ndxIntlzr = validPos.locator.slice();
- maskTemplate.push(includeInput === true ? validPos.input : getPlaceholder(pos, test));
- } else {
- testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
- test = testPos.match;
- ndxIntlzr = testPos.locator.slice();
- if (opts.jitMasking === false || pos < lvp || (isFinite(opts.jitMasking) && opts.jitMasking > pos)) {
- maskTemplate.push(getPlaceholder(pos, test));
- }
- }
- pos++;
- } while ((maxLength === undefined || pos - 1 < maxLength) && test.fn !== null || (test.fn === null && test.def !== "") || minimalPos >= pos);
- if (maskTemplate[maskTemplate.length - 1] === "") {
- maskTemplate.pop(); //drop the last one which is empty
- }
- return maskTemplate;
- }
- function getMaskSet() {
- return maskset;
- }
- function resetMaskSet(soft) {
- var maskset = getMaskSet();
- maskset.buffer = undefined;
- if (soft !== true) {
- maskset.tests = {};
- maskset._buffer = undefined;
- maskset.validPositions = {};
- maskset.p = 0;
- }
- }
- function getLastValidPosition(closestTo, strict) {
- var before = -1,
- after = -1,
- valids = getMaskSet().validPositions;
- if (closestTo === undefined) closestTo = -1;
- for (var posNdx in valids) {
- var psNdx = parseInt(posNdx);
- if (valids[psNdx] && (strict || valids[psNdx].match.fn !== null)) {
- if (psNdx <= closestTo) before = psNdx;
- if (psNdx >= closestTo) after = psNdx;
- }
- }
- return (before !== -1 && (closestTo - before) > 1) || after < closestTo ? before : after;
- }
- function setValidPosition(pos, validTest, fromSetValid) {
- if (opts.insertMode && getMaskSet().validPositions[pos] !== undefined && fromSetValid === undefined) {
- //reposition & revalidate others
- var positionsClone = $.extend(true, {}, getMaskSet().validPositions),
- lvp = getLastValidPosition(),
- i;
- for (i = pos; i <= lvp; i++) { //clear selection
- delete getMaskSet().validPositions[i];
- }
- getMaskSet().validPositions[pos] = validTest;
- var valid = true,
- j, vps = getMaskSet().validPositions;
- for (i = (j = pos); i <= lvp; i++) {
- var t = positionsClone[i];
- if (t !== undefined) {
- var posMatch = j,
- prevPosMatch = -1;
- while (posMatch < getMaskLength() && ((t.match.fn == null && vps[i] && (vps[i].match.optionalQuantifier === true || vps[i].match.optionality === true)) || t.match.fn != null)) {
- //determine next position
- if (t.match.fn === null || (!opts.keepStatic && vps[i] && (vps[i + 1] !== undefined && getTests(i + 1, vps[i].locator.slice(), i).length > 1 || vps[i].alternation !== undefined))) {
- posMatch++;
- } else posMatch = seekNext(j);
- //does it match
- if (positionCanMatchDefinition(posMatch, t.match.def)) {
- var result = isValid(posMatch, t.input, true, true);
- valid = result !== false;
- j = (result.caret || result.insert) ? getLastValidPosition() : posMatch;
- break;
- } else {
- valid = t.match.fn == null;
- if (prevPosMatch === posMatch) break; //prevent endless loop
- prevPosMatch = posMatch;
- }
- }
- }
- if (!valid) break;
- }
- if (!valid) {
- getMaskSet().validPositions = $.extend(true, {}, positionsClone);
- resetMaskSet(true);
- return false;
- }
- } else getMaskSet().validPositions[pos] = validTest;
- resetMaskSet(true);
- return true;
- }
- function stripValidPositions(start, end, nocheck, strict) {
- function IsEnclosedStatic(pos) {
- var posMatch = getMaskSet().validPositions[pos];
- if (posMatch !== undefined && posMatch.match.fn === null) {
- var prevMatch = getMaskSet().validPositions[pos - 1],
- nextMatch = getMaskSet().validPositions[pos + 1];
- return prevMatch !== undefined && nextMatch !== undefined;
- }
- return false;
- }
- var i, startPos = start;
- getMaskSet().p = start; //needed for alternated position after overtype selection
- for (i = startPos; i < end; i++) { //clear selection
- if (getMaskSet().validPositions[i] !== undefined) {
- if (nocheck === true || !IsEnclosedStatic(i) && opts.canClearPosition(getMaskSet(), i, getLastValidPosition(), strict, opts) !== false) {
- delete getMaskSet().validPositions[i];
- }
- }
- }
- //clear buffer
- resetMaskSet(true);
- /*eslint-disable semi-spacing */
- for (i = startPos + 1; i <= getLastValidPosition();) {
- /*eslint-disable semi-spacing */
- while (getMaskSet().validPositions[startPos] !== undefined) startPos++;
- var s = getMaskSet().validPositions[startPos];
- if (i < startPos) i = startPos + 1;
- // while (getMaskSet().validPositions[i] == undefined) i++;
- if ((getMaskSet().validPositions[i] !== undefined || !isMask(i)) && s === undefined) {
- var t = getTestTemplate(i);
- if (positionCanMatchDefinition(startPos, t.match.def)) {
- if (isValid(startPos, t.input || getPlaceholder(i), true) !== false) {
- delete getMaskSet().validPositions[i];
- i++;
- }
- } else if (!isMask(i)) {
- i++;
- startPos--;
- }
- startPos++;
- } else i++;
- }
- //remove radixpoint if needed
- var lvp = getLastValidPosition(),
- ml = getMaskLength();
- if (strict !== true && nocheck !== true && getMaskSet().validPositions[lvp] !== undefined && getMaskSet().validPositions[lvp].input === opts.radixPoint) {
- delete getMaskSet().validPositions[lvp];
- }
- for (i = lvp + 1; i <= ml; i++) {
- if (getMaskSet().validPositions[i]) {
- delete getMaskSet().validPositions[i];
- }
- }
- resetMaskSet(true);
- }
- function getTestTemplate(pos, ndxIntlzr, tstPs) {
- var testPos = getMaskSet().validPositions[pos];
- if (testPos === undefined) {
- var testPositions = getTests(pos, ndxIntlzr, tstPs),
- lvp = getLastValidPosition(),
- lvTest = getMaskSet().validPositions[lvp] || getTests(0)[0],
- lvTestAltArr = (lvTest.alternation !== undefined) ? lvTest.locator[lvTest.alternation].toString().split(",") : [];
- for (var ndx = 0; ndx < testPositions.length; ndx++) {
- testPos = testPositions[ndx];
- if (testPos.match &&
- (((opts.greedy && testPos.match.optionalQuantifier !== true) || (testPos.match.optionality === false || testPos.match.newBlockMarker === false) && testPos.match.optionalQuantifier !== true) &&
- ((lvTest.alternation === undefined || lvTest.alternation !== testPos.alternation) ||
- (testPos.locator[lvTest.alternation] !== undefined && checkAlternationMatch(testPos.locator[lvTest.alternation].toString().split(","), lvTestAltArr))))) {
- break;
- }
- }
- }
- return testPos;
- }
- function getTest(pos) {
- if (getMaskSet().validPositions[pos]) {
- return getMaskSet().validPositions[pos].match;
- }
- return getTests(pos)[0].match;
- }
- function positionCanMatchDefinition(pos, def) {
- var valid = false,
- tests = getTests(pos);
- for (var tndx = 0; tndx < tests.length; tndx++) {
- if (tests[tndx].match && tests[tndx].match.def === def) {
- valid = true;
- break;
- }
- }
- return valid;
- }
- function selectBestMatch(pos, alternateNdx) {
- var bestMatch, indexPos;
- if (getMaskSet().tests[pos] || getMaskSet().validPositions[pos]) {
- $.each(getMaskSet().tests[pos] || [getMaskSet().validPositions[pos]], function(ndx, lmnt) {
- var ndxPos = lmnt.alternation ? lmnt.locator[lmnt.alternation].toString().indexOf(alternateNdx) : -1;
- if ((indexPos === undefined || ndxPos < indexPos) && ndxPos !== -1) {
- bestMatch = lmnt;
- indexPos = ndxPos;
- }
- });
- }
- return bestMatch;
- }
- function getTests(pos, ndxIntlzr, tstPs) {
- var maskTokens = getMaskSet().maskToken,
- testPos = ndxIntlzr ? tstPs : 0,
- ndxInitializer = ndxIntlzr || [0],
- matches = [],
- insertStop = false,
- latestMatch,
- cacheDependency = ndxIntlzr ? ndxIntlzr.join('') : "";
- function resolveTestFromToken(maskToken, ndxInitializer, loopNdx, quantifierRecurse) { //ndxInitializer contains a set of indexes to speedup searches in the mtokens
- function handleMatch(match, loopNdx, quantifierRecurse) {
- function isFirstMatch(latestMatch, tokenGroup) {
- var firstMatch = $.inArray(latestMatch, tokenGroup.matches) === 0;
- if (!firstMatch) {
- $.each(tokenGroup.matches, function(ndx, match) {
- if (match.isQuantifier === true) {
- firstMatch = isFirstMatch(latestMatch, tokenGroup.matches[ndx - 1]);
- if (firstMatch) return false;
- }
- });
- }
- return firstMatch;
- }
- function resolveNdxInitializer(pos, alternateNdx) {
- var bestMatch = selectBestMatch(pos, alternateNdx);
- return bestMatch ? bestMatch.locator.slice(bestMatch.alternation + 1) : [];
- }
- if (testPos > 10000) {
- throw "Inputmask: There is probably an error in your mask definition or in the code. Create an issue on github with an example of the mask you are using. " + getMaskSet().mask;
- }
- if (testPos === pos && match.matches === undefined) {
- matches.push({
- "match": match,
- "locator": loopNdx.reverse(),
- "cd": cacheDependency
- });
- return true;
- } else if (match.matches !== undefined) {
- if (match.isGroup && quantifierRecurse !== match) { //when a group pass along to the quantifier
- match = handleMatch(maskToken.matches[$.inArray(match, maskToken.matches) + 1], loopNdx);
- if (match) return true;
- } else if (match.isOptional) {
- var optionalToken = match;
- match = resolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
- if (match) {
- latestMatch = matches[matches.length - 1].match;
- if (isFirstMatch(latestMatch, optionalToken)) {
- insertStop = true; //insert a stop
- testPos = pos; //match the position after the group
- } else return true;
- }
- } else if (match.isAlternator) {
- var alternateToken = match,
- malternateMatches = [],
- maltMatches,
- currentMatches = matches.slice(),
- loopNdxCnt = loopNdx.length;
- var altIndex = ndxInitializer.length > 0 ? ndxInitializer.shift() : -1;
- if (altIndex === -1 || typeof altIndex === "string") {
- var currentPos = testPos,
- ndxInitializerClone = ndxInitializer.slice(),
- altIndexArr = [],
- amndx;
- if (typeof altIndex == "string") {
- altIndexArr = altIndex.split(",");
- } else {
- for (amndx = 0; amndx < alternateToken.matches.length; amndx++) {
- altIndexArr.push(amndx);
- }
- }
- for (var ndx = 0; ndx < altIndexArr.length; ndx++) {
- amndx = parseInt(altIndexArr[ndx]);
- matches = [];
- //set the correct ndxInitializer
- ndxInitializer = resolveNdxInitializer(testPos, amndx);
- match = handleMatch(alternateToken.matches[amndx] || maskToken.matches[amndx], [amndx].concat(loopNdx), quantifierRecurse) || match;
- if (match !== true && match !== undefined && (altIndexArr[altIndexArr.length - 1] < alternateToken.matches.length)) { //no match in the alternations (length mismatch) => look further
- var ntndx = $.inArray(match, maskToken.matches) + 1;
- if (maskToken.matches.length > ntndx) {
- match = handleMatch(maskToken.matches[ntndx], [ntndx].concat(loopNdx.slice(1, loopNdx.length)), quantifierRecurse);
- if (match) {
- altIndexArr.push(ntndx.toString());
- $.each(matches, function(ndx, lmnt) {
- lmnt.alternation = loopNdx.length - 1;
- });
- }
- }
- }
- maltMatches = matches.slice();
- testPos = currentPos;
- matches = [];
- //cloneback
- for (var i = 0; i < ndxInitializerClone.length; i++) {
- ndxInitializer[i] = ndxInitializerClone[i];
- }
- //fuzzy merge matches
- for (var ndx1 = 0; ndx1 < maltMatches.length; ndx1++) {
- var altMatch = maltMatches[ndx1];
- altMatch.alternation = altMatch.alternation || loopNdxCnt;
- for (var ndx2 = 0; ndx2 < malternateMatches.length; ndx2++) {
- var altMatch2 = malternateMatches[ndx2];
- //verify equality
- if (altMatch.match.def === altMatch2.match.def && (typeof altIndex !== "string" || $.inArray(altMatch.locator[altMatch.alternation].toString(), altIndexArr) !== -1)) {
- if (altMatch.match.mask === altMatch2.match.mask) {
- maltMatches.splice(ndx1, 1);
- ndx1--;
- }
- if (altMatch2.locator[altMatch.alternation].toString().indexOf(altMatch.locator[altMatch.alternation]) === -1) {
- altMatch2.locator[altMatch.alternation] = altMatch2.locator[altMatch.alternation] + "," + altMatch.locator[altMatch.alternation];
- altMatch2.alternation = altMatch.alternation; //we pass the alternation index => used in determineLastRequiredPosition
- }
- break;
- }
- }
- }
- malternateMatches = malternateMatches.concat(maltMatches);
- }
- if (typeof altIndex == "string") { //filter matches
- malternateMatches = $.map(malternateMatches, function(lmnt, ndx) {
- if (isFinite(ndx)) {
- var mamatch,
- alternation = lmnt.alternation,
- altLocArr = lmnt.locator[alternation].toString().split(",");
- lmnt.locator[alternation] = undefined;
- lmnt.alternation = undefined;
- for (var alndx = 0; alndx < altLocArr.length; alndx++) {
- mamatch = $.inArray(altLocArr[alndx], altIndexArr) !== -1;
- if (mamatch) { //rebuild the locator with valid entries
- if (lmnt.locator[alternation] !== undefined) {
- lmnt.locator[alternation] += ",";
- lmnt.locator[alternation] += altLocArr[alndx];
- } else lmnt.locator[alternation] = parseInt(altLocArr[alndx]);
- lmnt.alternation = alternation;
- }
- }
- if (lmnt.locator[alternation] !== undefined) return lmnt;
- }
- });
- }
- matches = currentMatches.concat(malternateMatches);
- testPos = pos;
- insertStop = matches.length > 0; //insert a stopelemnt when there is an alternate - needed for non-greedy option
- } else {
- // if (alternateToken.matches[altIndex]) { //if not in the initial alternation => look further
- match = handleMatch(alternateToken.matches[altIndex] || maskToken.matches[altIndex], [altIndex].concat(loopNdx), quantifierRecurse);
- // } else match = false;
- }
- if (match) return true;
- } else if (match.isQuantifier && quantifierRecurse !== maskToken.matches[$.inArray(match, maskToken.matches) - 1]) {
- var qt = match;
- for (var qndx = (ndxInitializer.length > 0) ? ndxInitializer.shift() : 0;
- (qndx < (isNaN(qt.quantifier.max) ? qndx + 1 : qt.quantifier.max)) && testPos <= pos; qndx++) {
- var tokenGroup = maskToken.matches[$.inArray(qt, maskToken.matches) - 1];
- match = handleMatch(tokenGroup, [qndx].concat(loopNdx), tokenGroup); //set the tokenGroup as quantifierRecurse marker
- if (match) {
- //get latest match
- latestMatch = matches[matches.length - 1].match;
- latestMatch.optionalQuantifier = qndx > (qt.quantifier.min - 1);
- if (isFirstMatch(latestMatch, tokenGroup)) { //search for next possible match
- if (qndx > (qt.quantifier.min - 1)) {
- insertStop = true;
- testPos = pos; //match the position after the group
- break; //stop quantifierloop
- } else return true;
- } else {
- return true;
- }
- }
- }
- } else {
- match = resolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
- if (match) return true;
- }
- } else testPos++;
- }
- for (var tndx = (ndxInitializer.length > 0 ? ndxInitializer.shift() : 0); tndx < maskToken.matches.length; tndx++) {
- if (maskToken.matches[tndx].isQuantifier !== true) {
- var match = handleMatch(maskToken.matches[tndx], [tndx].concat(loopNdx), quantifierRecurse);
- if (match && testPos === pos) {
- return match;
- } else if (testPos > pos) {
- break;
- }
- }
- }
- }
- function mergeLocators(tests) { //todo
- var test = tests[0] || tests;
- return test.locator.slice();
- }
- if (pos > -1) {
- if (ndxIntlzr === undefined) {
- var previousPos = pos - 1,
- test;
- while ((test = getMaskSet().validPositions[previousPos] || getMaskSet().tests[previousPos]) === undefined && previousPos > -1) {
- previousPos--;
- }
- if (test !== undefined && previousPos > -1) {
- ndxInitializer = mergeLocators(test);
- cacheDependency = ndxInitializer.join('')
- test = test[0] || test;
- testPos = previousPos;
- }
- }
- if (getMaskSet().tests[pos] && getMaskSet().tests[pos][0].cd === cacheDependency) { //cacheDependency is set on all tests, just check on the first
- return getMaskSet().tests[pos];
- }
- for (var mtndx = ndxInitializer.shift(); mtndx < maskTokens.length; mtndx++) {
- var match = resolveTestFromToken(maskTokens[mtndx], ndxInitializer, [mtndx]);
- if ((match && testPos === pos) || testPos > pos) {
- break;
- }
- }
- }
- if (matches.length === 0 || insertStop) {
- matches.push({
- "match": {
- fn: null,
- cardinality: 0,
- optionality: true,
- casing: null,
- def: ""
- },
- "locator": []
- });
- }
- getMaskSet().tests[pos] = $.extend(true, [], matches); //set a clone to prevent overwriting some props
- // console.log(pos + " - " + JSON.stringify(matches));
- return getMaskSet().tests[pos];
- }
- function getBufferTemplate() {
- if (getMaskSet()._buffer === undefined) {
- //generate template
- getMaskSet()._buffer = getMaskTemplate(false, 1);
- }
- return getMaskSet()._buffer;
- }
- function getBuffer(noCache) {
- if (getMaskSet().buffer === undefined || noCache === true) {
- if (noCache === true) {
- for (var testNdx in getMaskSet().tests) {
- if (getMaskSet().validPositions[testNdx] === undefined) {
- delete getMaskSet().tests[testNdx];
- }
- }
- }
- getMaskSet().buffer = getMaskTemplate(true, getLastValidPosition(), true);
- }
- return getMaskSet().buffer;
- }
- function refreshFromBuffer(start, end, buffer) {
- var i;
- buffer = buffer;
- if (start === true) {
- resetMaskSet();
- start = 0;
- end = buffer.length;
- } else {
- for (i = start; i < end; i++) {
- delete getMaskSet().validPositions[i];
- delete getMaskSet().tests[i];
- }
- }
- for (i = start; i < end; i++) {
- resetMaskSet(true); //prevents clobber from the buffer
- if (buffer[i] !== opts.skipOptionalPartCharacter) {
- isValid(i, buffer[i], true, true);
- }
- }
- }
- function casing(elem, test) {
- switch (test.casing) {
- case "upper":
- elem = elem.toUpperCase();
- break;
- case "lower":
- elem = elem.toLowerCase();
- break;
- }
- return elem;
- }
- function checkAlternationMatch(altArr1, altArr2) {
- var altArrC = opts.greedy ? altArr2 : altArr2.slice(0, 1),
- isMatch = false;
- for (var alndx = 0; alndx < altArr1.length; alndx++) {
- if ($.inArray(altArr1[alndx], altArrC) !== -1) {
- isMatch = true;
- break;
- }
- }
- return isMatch;
- }
- function isValid(pos, c, strict, fromSetValid) { //strict true ~ no correction or autofill
- strict = strict === true; //always set a value to strict to prevent possible strange behavior in the extensions
- function _isValid(position, c, strict, fromSetValid) {
- var rslt = false;
- $.each(getTests(position), function(ndx, tst) {
- var test = tst.match;
- var loopend = c ? 1 : 0,
- chrs = "";
- for (var i = test.cardinality; i > loopend; i--) {
- chrs += getBufferElement(position - (i - 1));
- }
- if (c) {
- chrs += c;
- }
- //make sure the buffer is set and correct
- getBuffer(true);
- //return is false or a json object => { pos: ??, c: ??} or true
- rslt = test.fn != null ?
- test.fn.test(chrs, getMaskSet(), position, strict, opts) : (c === test.def || c === opts.skipOptionalPartCharacter) && test.def !== "" ? //non mask
- {
- c: test.placeholder || test.def,
- pos: position
- } : false;
- if (rslt !== false) {
- var elem = rslt.c !== undefined ? rslt.c : c;
- elem = (elem === opts.skipOptionalPartCharacter && test.fn === null) ? (test.placeholder || test.def) : elem;
- var validatedPos = position,
- possibleModifiedBuffer = getBuffer();
- if (rslt.remove !== undefined) { //remove position(s)
- if (!$.isArray(rslt.remove)) rslt.remove = [rslt.remove];
- $.each(rslt.remove.sort(function(a, b) {
- return b - a;
- }), function(ndx, lmnt) {
- stripValidPositions(lmnt, lmnt + 1, true);
- });
- }
- if (rslt.insert !== undefined) { //insert position(s)
- if (!$.isArray(rslt.insert)) rslt.insert = [rslt.insert];
- $.each(rslt.insert.sort(function(a, b) {
- return a - b;
- }), function(ndx, lmnt) {
- isValid(lmnt.pos, lmnt.c, false, fromSetValid);
- });
- }
- if (rslt.refreshFromBuffer) {
- var refresh = rslt.refreshFromBuffer;
- strict = true;
- refreshFromBuffer(refresh === true ? refresh : refresh.start, refresh.end, possibleModifiedBuffer);
- if (rslt.pos === undefined && rslt.c === undefined) {
- rslt.pos = getLastValidPosition();
- return false; //breakout if refreshFromBuffer && nothing to insert
- }
- validatedPos = rslt.pos !== undefined ? rslt.pos : position;
- if (validatedPos !== position) {
- rslt = $.extend(rslt, isValid(validatedPos, elem, true, fromSetValid)); //revalidate new position strict
- return false;
- }
- } else if (rslt !== true && rslt.pos !== undefined && rslt.pos !== position) { //their is a position offset
- validatedPos = rslt.pos;
- refreshFromBuffer(position, validatedPos, getBuffer().slice());
- if (validatedPos !== position) {
- rslt = $.extend(rslt, isValid(validatedPos, elem, true)); //revalidate new position strict
- return false;
- }
- }
- if (rslt !== true && rslt.pos === undefined && rslt.c === undefined) {
- return false; //breakout if nothing to insert
- }
- if (ndx > 0) {
- resetMaskSet(true);
- }
- if (!setValidPosition(validatedPos, $.extend({}, tst, {
- "input": casing(elem, test)
- }), fromSetValid)) {
- rslt = false;
- }
- return false; //break from $.each
- }
- });
- return rslt;
- }
- function alternate(pos, c, strict, fromSetValid) {
- var validPsClone = $.extend(true, {}, getMaskSet().validPositions),
- testsClone = $.extend(true, {}, getMaskSet().tests),
- lastAlt,
- alternation,
- isValidRslt,
- altPos, i, validPos;
- //find last modified alternation
- for (var lAlt = getLastValidPosition(); lAlt >= 0; lAlt--) {
- altPos = getMaskSet().validPositions[lAlt];
- if (altPos && altPos.alternation !== undefined) {
- lastAlt = lAlt;
- alternation = getMaskSet().validPositions[lastAlt].alternation;
- if (getTestTemplate(lastAlt).locator[altPos.alternation] !== altPos.locator[altPos.alternation]) {
- break;
- }
- }
- }
- if (alternation !== undefined) {
- //find first decision making position
- lastAlt = parseInt(lastAlt);
- for (var decisionPos in getMaskSet().validPositions) {
- decisionPos = parseInt(decisionPos);
- altPos = getMaskSet().validPositions[decisionPos];
- if (decisionPos >= lastAlt && altPos.alternation !== undefined) {
- var altNdxs;
- if (lastAlt === 0) {
- altNdxs = [];
- $.each(getMaskSet().tests[lastAlt], function(ndx, test) {
- if (test.locator[alternation] !== undefined) {
- altNdxs = altNdxs.concat(test.locator[alternation].toString().split(","));
- }
- });
- } else {
- altNdxs = getMaskSet().validPositions[lastAlt].locator[alternation].toString().split(",");
- }
- var decisionTaker = altPos.locator[alternation] !== undefined ? altPos.locator[alternation] : altNdxs[0]; //no match in the alternations (length mismatch)
- if (decisionTaker.length > 0) { //no decision taken ~ take first one as decider
- decisionTaker = decisionTaker.split(",")[0];
- }
- for (var mndx = 0; mndx < altNdxs.length; mndx++) {
- var validInputs = [],
- staticInputsBeforePos = 0,
- staticInputsBeforePosAlternate = 0;
- if (decisionTaker < altNdxs[mndx]) {
- var possibilityPos, possibilities;
- for (var dp = decisionPos; dp >= 0; dp--) {
- possibilityPos = getMaskSet().validPositions[dp];
- if (possibilityPos !== undefined) {
- var bestMatch = selectBestMatch(dp, altNdxs[mndx]);
- if (getMaskSet().validPositions[dp].match.def !== bestMatch.match.def) {
- validInputs.push(getMaskSet().validPositions[dp].input);
- getMaskSet().validPositions[dp] = bestMatch;
- getMaskSet().validPositions[dp].input = getPlaceholder(dp);
- if (getMaskSet().validPositions[dp].match.fn === null) {
- staticInputsBeforePosAlternate++;
- }
- possibilityPos = bestMatch;
- }
- possibilities = possibilityPos.locator[alternation]; //store to reset
- possibilityPos.locator[alternation] = parseInt(altNdxs[mndx]);
- break;
- }
- }
- if (decisionTaker !== possibilityPos.locator[alternation]) {
- for (i = decisionPos + 1; i < getLastValidPosition(undefined, true) + 1; i++) {
- validPos = getMaskSet().validPositions[i];
- if (validPos && validPos.match.fn != null) {
- validInputs.push(validPos.input);
- } else if (i < pos) staticInputsBeforePos++;
- delete getMaskSet().validPositions[i];
- delete getMaskSet().tests[i];
- }
- resetMaskSet(true); //clear getbuffer
- opts.keepStatic = !opts.keepStatic; //disable keepStatic on getMaskLength
- isValidRslt = true;
- while (validInputs.length > 0) {
- var input = validInputs.shift();
- if (input !== opts.skipOptionalPartCharacter) {
- if (!(isValidRslt = isValid(getLastValidPosition(undefined, true) + 1, input, false, fromSetValid))) {
- break;
- }
- }
- }
- possibilityPos.alternation = alternation;
- possibilityPos.locator[alternation] = possibilities; //reset forceddecision ~ needed for proper delete
- if (isValidRslt) {
- var targetLvp = getLastValidPosition(pos) + 1;
- for (i = decisionPos + 1; i < getLastValidPosition() + 1; i++) {
- validPos = getMaskSet().validPositions[i];
- if ((validPos === undefined || validPos.match.fn == null) && i < pos) {
- staticInputsBeforePosAlternate++;
- }
- }
- pos = pos + (staticInputsBeforePosAlternate - staticInputsBeforePos);
- isValidRslt = isValid(pos > targetLvp ? targetLvp : pos, c, strict, fromSetValid);
- }
- opts.keepStatic = !opts.keepStatic; //enable keepStatic on getMaskLength
- if (!isValidRslt) {
- resetMaskSet();
- getMaskSet().validPositions = $.extend(true, {}, validPsClone);
- getMaskSet().tests = $.extend(true, {}, testsClone);
- } else return isValidRslt;
- }
- }
- }
- break;
- }
- }
- }
- return false;
- }
- //set alternator choice on previous skipped placeholder positions
- function trackbackAlternations(originalPos, newPos) {
- var vp = getMaskSet().validPositions[newPos],
- targetLocator = vp.locator,
- tll = targetLocator.length;
- for (var ps = originalPos; ps < newPos; ps++) {
- if (getMaskSet().validPositions[ps] === undefined && !isMask(ps, true)) {
- var tests = getTests(ps),
- bestMatch = tests[0],
- equality = -1;
- $.each(tests, function(ndx, tst) { //find best matching
- for (var i = 0; i < tll; i++) {
- if (tst.locator[i] !== undefined && checkAlternationMatch(tst.locator[i].toString().split(","), targetLocator[i].toString().split(","))) {
- if (equality < i) {
- equality = i;
- bestMatch = tst;
- }
- } else break;
- }
- });
- setValidPosition(ps, $.extend({}, bestMatch, {
- "input": bestMatch.match.placeholder || bestMatch.match.def
- }), true);
- }
- }
- }
- //Check for a nonmask before the pos
- var buffer = getBuffer();
- //find previous valid
- for (var pndx = pos - 1; pndx > -1; pndx--) {
- if (getMaskSet().validPositions[pndx]) {
- break;
- }
- }
- ////fill missing nonmask and valid placeholders
- pndx++;
- for (; pndx < pos; pndx++) {
- //console.log("missing " + pndx + " " + buffer[pndx] + " ismask " + isMask(pndx) + " plchldr " + getPlaceholder(pndx) + " nrt " + getTests(pndx).len);
- if (getMaskSet().validPositions[pndx] === undefined && (((!isMask(pndx) || buffer[pndx] !== getPlaceholder(pndx)) && getTests(pndx).length > 1) || (buffer[pndx] === opts.radixPoint || buffer[pndx] === "0" && $.inArray(opts.radixPoint, buffer) < pndx))) //special case for decimals ~ = placeholder but yet valid input
- {
- //console.log("inject " + pndx + " " + buffer[pndx]);
- _isValid(pndx, buffer[pndx], true, fromSetValid);
- }
- }
- var maskPos = pos,
- result = false,
- positionsClone = $.extend(true, {}, getMaskSet().validPositions); //clone the currentPositions
- //if (fromSetValid && maskPos >= getMaskLength()) {
- // resetMaskSet(true); //masklenght can be altered on the process => reset to get the actual length
- //}
- if (maskPos < getMaskLength()) {
- result = _isValid(maskPos, c, strict, fromSetValid);
- if ((!strict || fromSetValid === true) && result === false) {
- var currentPosValid = getMaskSet().validPositions[maskPos];
- if (currentPosValid && currentPosValid.match.fn === null && (currentPosValid.match.def === c || c === opts.skipOptionalPartCharacter)) {
- result = {
- "caret": seekNext(maskPos)
- };
- } else if ((opts.insertMode || getMaskSet().validPositions[seekNext(maskPos)] === undefined) && !isMask(maskPos, true)) { //does the input match on a further position?
- var staticChar = getTestTemplate(maskPos).match,
- staticChar = staticChar.placeholder || staticChar.def;
- _isValid(maskPos, staticChar, strict, fromSetValid);
- for (var nPos = maskPos + 1, snPos = seekNext(maskPos); nPos <= snPos; nPos++) {
- result = _isValid(nPos, c, strict, fromSetValid);
- if (result !== false) {
- trackbackAlternations(maskPos, nPos);
- maskPos = nPos;
- break;
- }
- }
- }
- }
- }
- if (result === false && opts.keepStatic) { //try fuzzy alternator logic
- result = alternate(pos, c, strict, fromSetValid);
- }
- if (result === true) {
- result = {
- "pos": maskPos
- };
- }
- if ($.isFunction(opts.postValidation) && result !== false && !strict && fromSetValid !== true) {
- var postValidResult = opts.postValidation(getBuffer(true), result, opts);
- if (!postValidResult) {
- resetMaskSet(true);
- getMaskSet().validPositions = $.extend(true, {}, positionsClone); //revert validation changes
- result = false;
- } else if (postValidResult.refreshFromBuffer) {
- var refresh = postValidResult.refreshFromBuffer;
- refreshFromBuffer(refresh === true ? refresh : refresh.start, refresh.end, postValidResult.buffer);
- resetMaskSet(true);
- result = postValidResult;
- }
- }
- return result;
- }
- function isMask(pos, strict) {
- var test;
- if (strict) {
- test = getTestTemplate(pos).match;
- if (test.def == "") test = getTest(pos);
- } else test = getTest(pos);
- if (test.fn != null) {
- return test.fn;
- } else if (strict !== true && pos > -1 && !opts.keepStatic && getMaskSet().validPositions[pos] === undefined) {
- var tests = getTests(pos);
- return tests.length > 2;
- }
- return false;
- }
- function getMaskLength() {
- var maskLength;
- maxLength = el !== undefined ? el.maxLength : undefined;
- if (maxLength === -1) maxLength = undefined; /* FF sets no defined max length to -1 */
- var pos, lvp = getLastValidPosition(),
- testPos = getMaskSet().validPositions[lvp],
- ndxIntlzr = testPos !== undefined ? testPos.locator.slice() : undefined;
- for (pos = lvp + 1; testPos === undefined || (testPos.match.fn !== null || (testPos.match.fn === null && testPos.match.def !== "")); pos++) {
- testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
- ndxIntlzr = testPos.locator.slice();
- }
- var lastTest = getTest(pos - 1);
- maskLength = (lastTest.def !== "") ? pos : pos - 1;
- return (maxLength === undefined || maskLength < maxLength) ? maskLength : maxLength;
- }
- function seekNext(pos, newBlock) {
- var maskL = getMaskLength();
- if (pos >= maskL) return maskL;
- var position = pos;
- while (++position < maskL && ((newBlock === true && (getTest(position).newBlockMarker !== true || !isMask(position))) || (newBlock !== true && !isMask(position) && (opts.nojumps !== true || opts.nojumpsThreshold > position)))) {}
- return position;
- }
- function seekPrevious(pos, newBlock) {
- var position = pos;
- if (position <= 0) return 0;
- while (--position > 0 && ((newBlock === true && getTest(position).newBlockMarker !== true) || (newBlock !== true && !isMask(position)))) {}
- return position;
- }
- function getBufferElement(position) {
- return getMaskSet().validPositions[position] === undefined ? getPlaceholder(position) : getMaskSet().validPositions[position].input;
- }
- function writeBuffer(input, buffer, caretPos, event, triggerInputEvent) {
- if (event && $.isFunction(opts.onBeforeWrite)) {
- var result = opts.onBeforeWrite(event, buffer, caretPos, opts);
- if (result) {
- if (result.refreshFromBuffer) {
- var refresh = result.refreshFromBuffer;
- refreshFromBuffer(refresh === true ? refresh : refresh.start, refresh.end, result.buffer || buffer);
- buffer = getBuffer(true);
- }
- //only alter when intented !== undefined
- if (caretPos !== undefined) caretPos = result.caret !== undefined ? result.caret : caretPos;
- }
- }
- input.inputmask._valueSet(buffer.join(""));
- if (caretPos !== undefined && (event === undefined || event.type !== "blur")) {
- caret(input, caretPos);
- }
- if (triggerInputEvent === true) {
- skipInputEvent = true;
- $(input).trigger("input");
- }
- }
- function getPlaceholder(pos, test) {
- test = test || getTest(pos);
- if (test.placeholder !== undefined) {
- return test.placeholder;
- } else if (test.fn === null) {
- if (pos > -1 && !opts.keepStatic && getMaskSet().validPositions[pos] === undefined) {
- var tests = getTests(pos),
- staticAlternations = 0,
- prevTest;
- if (tests.length > 2) {
- for (var i = 0; i < tests.length; i++) {
- if (tests[i].match.optionality !== true && tests[i].match.optionalQuantifier !== true &&
- (tests[i].match.fn === null || (prevTest === undefined || tests[i].match.fn.test(prevTest.match.def, getMaskSet(), pos, true, opts) !== false))) {
- staticAlternations++;
- if (tests[i].match.fn === null) prevTest = tests[i];
- if (staticAlternations > 1) return opts.placeholder.charAt(pos % opts.placeholder.length);
- }
- }
- }
- }
- return test.def;
- }
- return opts.placeholder.charAt(pos % opts.placeholder.length);
- }
- function checkVal(input, writeOut, strict, nptvl) {
- var inputValue = nptvl.slice(),
- charCodes = "",
- initialNdx = 0;
- function isTemplateMatch() {
- var isMatch = false;
- var charCodeNdx = getBufferTemplate().slice(initialNdx, seekNext(initialNdx)).join("").indexOf(charCodes);
- if (charCodeNdx !== -1 && !isMask(initialNdx)) {
- isMatch = true;
- var bufferTemplateArr = getBufferTemplate().slice(initialNdx, initialNdx + charCodeNdx);
- for (var i = 0; i < bufferTemplateArr.length; i++) {
- if (bufferTemplateArr[i] !== " ") {
- isMatch = false;
- break;
- }
- }
- }
- return isMatch;
- }
- resetMaskSet();
- getMaskSet().p = seekNext(-1);
- // if (writeOut) input.inputmask._valueSet(""); //initial clear
- if (!strict) {
- if (opts.autoUnmask !== true) {
- var staticInput = getBufferTemplate().slice(0, seekNext(-1)).join(""),
- matches = inputValue.join("").match(new RegExp("^" + Inputmask.escapeRegex(staticInput), "g"));
- if (matches && matches.length > 0) {
- inputValue.splice(0, matches.length * staticInput.length);
- initialNdx = seekNext(initialNdx);
- }
- } else {
- initialNdx = seekNext(initialNdx);
- }
- }
- $.each(inputValue, function(ndx, charCode) {
- if (charCode !== undefined) { //inputfallback strips some elements out of the inputarray. $.each logically presents them as undefined
- var keypress = new $.Event("keypress");
- keypress.which = charCode.charCodeAt(0);
- charCodes += charCode;
- var lvp = getLastValidPosition(undefined, true),
- lvTest = getMaskSet().validPositions[lvp],
- nextTest = getTestTemplate(lvp + 1, lvTest ? lvTest.locator.slice() : undefined, lvp);
- if (!isTemplateMatch() || strict || opts.autoUnmask) {
- var pos = strict ? ndx : (nextTest.match.fn == null && nextTest.match.optionality && (lvp + 1) < getMaskSet().p ? lvp + 1 : getMaskSet().p);
- keypressEvent.call(input, keypress, true, false, strict, pos);
- initialNdx = pos + 1;
- charCodes = "";
- } else {
- keypressEvent.call(input, keypress, true, false, true, lvp + 1);
- }
- }
- });
- if (writeOut) {
- writeBuffer(input, getBuffer(), document.activeElement === input ? seekNext(getLastValidPosition(0)) : undefined, new $.Event("checkval"));
- }
- }
- function unmaskedvalue(input) {
- if (input && input.inputmask === undefined) {
- return input.value;
- }
- var umValue = [],
- vps = getMaskSet().validPositions;
- for (var pndx in vps) {
- if (vps[pndx].match && vps[pndx].match.fn != null) {
- umValue.push(vps[pndx].input);
- }
- }
- var unmaskedValue = umValue.length === 0 ? null : (isRTL ? umValue.reverse() : umValue).join("");
- if (unmaskedValue !== null) {
- var bufferValue = (isRTL ? getBuffer().slice().reverse() : getBuffer()).join("");
- if ($.isFunction(opts.onUnMask)) {
- unmaskedValue = (opts.onUnMask(bufferValue, unmaskedValue, opts) || unmaskedValue);
- }
- }
- return unmaskedValue;
- }
- function caret(input, begin, end, notranslate) {
- function translatePosition(pos) {
- if (notranslate !== true && isRTL && typeof pos === "number" && (!opts.greedy || opts.placeholder !== "")) {
- var bffrLght = getBuffer().join("").length; //join is needed because sometimes we get an empty buffer element which must not be counted for the caret position (numeric alias)
- pos = bffrLght - pos;
- }
- return pos;
- }
- var range;
- if (typeof begin === "number") {
- begin = translatePosition(begin);
- end = translatePosition(end);
- end = (typeof end == "number") ? end : begin;
- // if (!$(input).is(":visible")) {
- // return;
- // }
- var scrollCalc = parseInt(((input.ownerDocument.defaultView || window).getComputedStyle ? (input.ownerDocument.defaultView || window).getComputedStyle(input, null) : input.currentStyle).fontSize) * end;
- input.scrollLeft = scrollCalc > input.scrollWidth ? scrollCalc : 0;
- if (!mobile && opts.insertMode === false && begin === end) end++; //set visualization for insert/overwrite mode
- if (input.setSelectionRange) {
- input.selectionStart = begin;
- input.selectionEnd = end;
- } else if (window.getSelection) {
- range = document.createRange();
- if (input.firstChild === undefined || input.firstChild === null) {
- var textNode = document.createTextNode("");
- input.appendChild(textNode);
- }
- range.setStart(input.firstChild, begin < input.inputmask._valueGet().length ? begin : input.inputmask._valueGet().length);
- range.setEnd(input.firstChild, end < input.inputmask._valueGet().length ? end : input.inputmask._valueGet().length);
- range.collapse(true);
- var sel = window.getSelection();
- sel.removeAllRanges();
- sel.addRange(range);
- //input.focus();
- } else if (input.createTextRange) {
- range = input.createTextRange();
- range.collapse(true);
- range.moveEnd("character", end);
- range.moveStart("character", begin);
- range.select();
- }
- } else {
- if (input.setSelectionRange) {
- begin = input.selectionStart;
- end = input.selectionEnd;
- } else if (window.getSelection) {
- range = window.getSelection().getRangeAt(0);
- if (range.commonAncestorContainer.parentNode === input || range.commonAncestorContainer === input) {
- begin = range.startOffset;
- end = range.endOffset;
- }
- } else if (document.selection && document.selection.createRange) {
- range = document.selection.createRange();
- begin = 0 - range.duplicate().moveStart("character", -input.inputmask._valueGet().length);
- end = begin + range.text.length;
- }
- /*eslint-disable consistent-return */
- return {
- "begin": translatePosition(begin),
- "end": translatePosition(end)
- };
- /*eslint-enable consistent-return */
- }
- }
- function determineLastRequiredPosition(returnDefinition) {
- var buffer = getBuffer(),
- bl = buffer.length,
- pos, lvp = getLastValidPosition(),
- positions = {},
- lvTest = getMaskSet().validPositions[lvp],
- ndxIntlzr = lvTest !== undefined ? lvTest.locator.slice() : undefined,
- testPos;
- for (pos = lvp + 1; pos < buffer.length; pos++) {
- testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
- ndxIntlzr = testPos.locator.slice();
- positions[pos] = $.extend(true, {}, testPos);
- }
- var lvTestAlt = lvTest && lvTest.alternation !== undefined ? lvTest.locator[lvTest.alternation] : undefined;
- for (pos = bl - 1; pos > lvp; pos--) {
- testPos = positions[pos];
- if ((testPos.match.optionality ||
- testPos.match.optionalQuantifier ||
- (lvTestAlt && ((lvTestAlt !== positions[pos].locator[lvTest.alternation] && testPos.match.fn != null) ||
- (testPos.match.fn === null && testPos.locator[lvTest.alternation] && checkAlternationMatch(testPos.locator[lvTest.alternation].toString().split(","), lvTestAlt.toString().split(",")) && getTests(pos)[0].def !== "")))) && buffer[pos] === getPlaceholder(pos, testPos.match)) {
- bl--;
- } else break;
- }
- return returnDefinition ? {
- "l": bl,
- "def": positions[bl] ? positions[bl].match : undefined
- } : bl;
- }
- function clearOptionalTail(buffer) {
- var rl = determineLastRequiredPosition(),
- lmib = buffer.length - 1;
- for (; lmib > rl; lmib--) {
- if (isMask(lmib)) break; //fixme ismask is not good enough
- }
- buffer.splice(rl, lmib + 1 - rl);
- return buffer;
- }
- function isComplete(buffer) { //return true / false / undefined (repeat *)
- if ($.isFunction(opts.isComplete)) return opts.isComplete(buffer, opts);
- if (opts.repeat === "*") return undefined;
- var complete = false,
- lrp = determineLastRequiredPosition(true),
- aml = seekPrevious(lrp.l);
- if (lrp.def === undefined || lrp.def.newBlockMarker || lrp.def.optionality || lrp.def.optionalQuantifier) {
- complete = true;
- for (var i = 0; i <= aml; i++) {
- var test = getTestTemplate(i).match;
- if ((test.fn !== null && getMaskSet().validPositions[i] === undefined && test.optionality !== true && test.optionalQuantifier !== true) || (test.fn === null && buffer[i] !== getPlaceholder(i, test))) {
- complete = false;
- break;
- }
- }
- }
- return complete;
- }
- function isSelection(begin, end) {
- return isRTL ? (begin - end) > 1 || ((begin - end) === 1 && opts.insertMode) :
- (end - begin) > 1 || ((end - begin) === 1 && opts.insertMode);
- }
- var EventRuler = {
- on: function(input, eventName, eventHandler) {
- var ev = function(e) {
- // console.log("triggered " + e.type);
- if (this.inputmask === undefined && this.nodeName !== "FORM") { //happens when cloning an object with jquery.clone
- var imOpts = $.data(this, "_inputmask_opts");
- if (imOpts)(new Inputmask(imOpts)).mask(this);
- else EventRuler.off(this);
- } else if (e.type !== "setvalue" && (this.disabled || (this.readOnly && !(e.type === "keydown" && (e.ctrlKey && e.keyCode === 67) || (opts.tabThrough === false && e.keyCode === Inputmask.keyCode.TAB))))) {
- e.preventDefault();
- } else {
- switch (e.type) {
- case "input":
- if (skipInputEvent === true) {
- skipInputEvent = false;
- return e.preventDefault();
- }
- break;
- case "keydown":
- //Safari 5.1.x - modal dialog fires keypress twice workaround
- skipKeyPressEvent = false;
- skipInputEvent = false;
- break;
- case "keypress":
- if (skipKeyPressEvent === true) {
- return e.preventDefault();
- }
- skipKeyPressEvent = true;
- break;
- case "click":
- if (iemobile) {
- var that = this;
- setTimeout(function() {
- eventHandler.apply(that, arguments);
- }, 0);
- return false;
- }
- break;
- }
- // console.log("executed " + e.type);
- var returnVal = eventHandler.apply(this, arguments);
- if (returnVal === false) {
- e.preventDefault();
- e.stopPropagation();
- }
- return returnVal;
- }
- };
- //keep instance of the event
- input.inputmask.events[eventName] = input.inputmask.events[eventName] || [];
- input.inputmask.events[eventName].push(ev);
- if ($.inArray(eventName, ["submit", "reset"]) !== -1) {
- if (input.form != null) $(input.form).on(eventName, ev);
- } else {
- $(input).on(eventName, ev);
- }
- },
- off: function(input, event) {
- if (input.inputmask && input.inputmask.events) {
- var events;
- event ? (events = [], events[event] = input.inputmask.events[event]) : events = input.inputmask.events;
- $.each(events, function(eventName, evArr) {
- while (evArr.length > 0) {
- var ev = evArr.pop();
- if ($.inArray(eventName, ["submit", "reset"]) !== -1) {
- if (input.form != null) $(input.form).off(eventName, ev);
- } else {
- $(input).off(eventName, ev);
- }
- }
- delete input.inputmask.events[eventName];
- })
- }
- }
- }
- function patchValueProperty(npt) {
- var valueGet;
- var valueSet;
- function patchValhook(type) {
- if ($.valHooks && ($.valHooks[type] === undefined || $.valHooks[type].inputmaskpatch !== true)) {
- var valhookGet = $.valHooks[type] && $.valHooks[type].get ? $.valHooks[type].get : function(elem) {
- return elem.value;
- };
- var valhookSet = $.valHooks[type] && $.valHooks[type].set ? $.valHooks[type].set : function(elem, value) {
- elem.value = value;
- return elem;
- };
- $.valHooks[type] = {
- get: function(elem) {
- if (elem.inputmask) {
- if (elem.inputmask.opts.autoUnmask) {
- return elem.inputmask.unmaskedvalue();
- } else {
- var result = valhookGet(elem),
- maskset = elem.inputmask.maskset,
- bufferTemplate = maskset._buffer;
- bufferTemplate = bufferTemplate ? bufferTemplate.join("") : "";
- return result !== bufferTemplate ? result : "";
- }
- } else return valhookGet(elem);
- },
- set: function(elem, value) {
- var $elem = $(elem),
- result;
- result = valhookSet(elem, value);
- if (elem.inputmask) {
- $elem.trigger("setvalue");
- }
- return result;
- },
- inputmaskpatch: true
- };
- }
- }
- function getter() {
- if (this.inputmask) {
- return this.inputmask.opts.autoUnmask ?
- this.inputmask.unmaskedvalue() :
- (valueGet.call(this) !== getBufferTemplate().join("") ?
- (document.activeElement === this && opts.clearMaskOnLostFocus ?
- (isRTL ? clearOptionalTail(getBuffer().slice()).reverse() : clearOptionalTail(getBuffer().slice())).join("") :
- valueGet.call(this)) :
- "");
- } else return valueGet.call(this);
- }
- function setter(value) {
- valueSet.call(this, value);
- if (this.inputmask) {
- $(this).trigger("setvalue");
- }
- }
- function installNativeValueSetFallback(npt) {
- EventRuler.on(npt, "mouseenter", function(event) {
- var $input = $(this),
- input = this,
- value = input.inputmask._valueGet();
- if (value !== getBuffer().join("") /*&& getLastValidPosition() > 0*/) {
- $input.trigger("setvalue");
- }
- });
- }
- if (!npt.inputmask.__valueGet) {
- if (Object.getOwnPropertyDescriptor) {
- var valueProperty = Object.getOwnPropertyDescriptor(Object.getPrototypeOf(npt), "value");
- if (valueProperty && valueProperty.get && valueProperty.set) {
- valueGet = valueProperty.get;
- valueSet = valueProperty.set;
- Object.defineProperty(npt, "value", {
- get: getter,
- set: setter,
- configurable: true
- });
- } else {
- if (npt.tagName !== "INPUT") {
- valueGet = function() {
- return this.textContent;
- };
- valueSet = function(value) {
- this.textContent = value;
- };
- Object.defineProperty(npt, "value", {
- get: getter,
- set: setter,
- configurable: true
- });
- }
- }
- } else if (document.__lookupGetter__ && npt.__lookupGetter__("value")) {
- valueGet = npt.__lookupGetter__("value");
- valueSet = npt.__lookupSetter__("value");
- npt.__defineGetter__("value", getter);
- npt.__defineSetter__("value", setter);
- }
- if (valueGet === undefined) { //jquery.val
- valueGet = function() {
- return npt.value;
- };
- valueSet = function(value) {
- npt.value = value;
- };
- patchValhook(npt.type);
- installNativeValueSetFallback(npt);
- }
- npt.inputmask.__valueGet = valueGet; //store native property getter
- npt.inputmask._valueGet = function(overruleRTL) {
- return isRTL && overruleRTL !== true ? valueGet.call(this.el).split("").reverse().join("") : valueGet.call(this.el);
- };
- npt.inputmask.__valueSet = valueSet; //store native property setter
- npt.inputmask._valueSet = function(value, overruleRTL) { //null check is needed for IE8 => otherwise converts to "null"
- valueSet.call(this.el, (value === null || value === undefined) ? "" : ((overruleRTL !== true && isRTL) ? value.split("").reverse().join("") : value));
- };
- }
- }
- function handleRemove(input, k, pos, strict) {
- function generalize() {
- if (opts.keepStatic) {
- resetMaskSet(true);
- var validInputs = [],
- lastAlt, positionsClone = $.extend(true, {}, getMaskSet().validPositions);
- //find last alternation
- for (lastAlt = getLastValidPosition(); lastAlt >= 0; lastAlt--) {
- var validPos = getMaskSet().validPositions[lastAlt];
- if (validPos) {
- if (validPos.match.fn != null) {
- validInputs.push(validPos.input);
- }
- delete getMaskSet().validPositions[lastAlt];
- if (validPos.alternation !== undefined && validPos.locator[validPos.alternation] === getTestTemplate(lastAlt).locator[validPos.alternation]) {
- break;
- }
- }
- }
- if (lastAlt > -1) {
- while (validInputs.length > 0) {
- getMaskSet().p = seekNext(getLastValidPosition());
- var keypress = new $.Event("keypress");
- keypress.which = validInputs.pop().charCodeAt(0);
- keypressEvent.call(input, keypress, true, false, false, getMaskSet().p);
- }
- } else getMaskSet().validPositions = $.extend(true, {}, positionsClone); //restore original positions
- }
- }
- if (opts.numericInput || isRTL) {
- if (k === Inputmask.keyCode.BACKSPACE) {
- k = Inputmask.keyCode.DELETE;
- } else if (k === Inputmask.keyCode.DELETE) {
- k = Inputmask.keyCode.BACKSPACE;
- }
- if (isRTL) {
- var pend = pos.end;
- pos.end = pos.begin;
- pos.begin = pend;
- }
- }
- if (k === Inputmask.keyCode.BACKSPACE && (pos.end - pos.begin < 1 || opts.insertMode === false)) {
- pos.begin = seekPrevious(pos.begin);
- if (getMaskSet().validPositions[pos.begin] !== undefined && (getMaskSet().validPositions[pos.begin].input === opts.groupSeparator || getMaskSet().validPositions[pos.begin].input === opts.radixPoint)) {
- pos.begin--;
- }
- } else if (k === Inputmask.keyCode.DELETE && pos.begin === pos.end) {
- pos.end = isMask(pos.end) ? pos.end + 1 : seekNext(pos.end) + 1;
- if (getMaskSet().validPositions[pos.begin] !== undefined && (getMaskSet().validPositions[pos.begin].input === opts.groupSeparator || getMaskSet().validPositions[pos.begin].input === opts.radixPoint)) {
- pos.end++;
- }
- }
- stripValidPositions(pos.begin, pos.end, false, strict);
- if (strict !== true) {
- generalize(); //revert the alternation
- }
- var lvp = getLastValidPosition(pos.begin);
- if (lvp < pos.begin) {
- if (lvp === -1) resetMaskSet();
- getMaskSet().p = seekNext(lvp);
- } else if (strict !== true) {
- getMaskSet().p = pos.begin;
- }
- }
- function keydownEvent(e) {
- var input = this,
- $input = $(input),
- k = e.keyCode,
- pos = caret(input);
- //backspace, delete, and escape get special treatment
- 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
- e.preventDefault(); //stop default action but allow propagation
- handleRemove(input, k, pos);
- writeBuffer(input, getBuffer(), getMaskSet().p, e, undoValue !== getBuffer().join(""));
- if (input.inputmask._valueGet() === getBufferTemplate().join("")) {
- $input.trigger("cleared");
- } else if (isComplete(getBuffer()) === true) {
- $input.trigger("complete");
- }
- if (opts.showTooltip) { //update tooltip
- input.title = opts.tooltip || getMaskSet().mask;
- }
- } else if (k === Inputmask.keyCode.END || k === Inputmask.keyCode.PAGE_DOWN) { //when END or PAGE_DOWN pressed set position at lastmatch
- e.preventDefault();
- var caretPos = seekNext(getLastValidPosition());
- if (!opts.insertMode && caretPos === getMaskLength() && !e.shiftKey) caretPos--;
- caret(input, e.shiftKey ? pos.begin : caretPos, caretPos, true);
- } else if ((k === Inputmask.keyCode.HOME && !e.shiftKey) || k === Inputmask.keyCode.PAGE_UP) { //Home or page_up
- e.preventDefault();
- caret(input, 0, e.shiftKey ? pos.begin : 0, true);
- } else if (((opts.undoOnEscape && k === Inputmask.keyCode.ESCAPE) || (k === 90 && e.ctrlKey)) && e.altKey !== true) { //escape && undo && #762
- checkVal(input, true, false, undoValue.split(""));
- $input.trigger("click");
- } else if (k === Inputmask.keyCode.INSERT && !(e.shiftKey || e.ctrlKey)) { //insert
- opts.insertMode = !opts.insertMode;
- caret(input, !opts.insertMode && pos.begin === getMaskLength() ? pos.begin - 1 : pos.begin);
- } else if (opts.tabThrough === true && k === Inputmask.keyCode.TAB) {
- if (e.shiftKey === true) {
- if (getTest(pos.begin).fn === null) {
- pos.begin = seekNext(pos.begin);
- }
- pos.end = seekPrevious(pos.begin, true);
- pos.begin = seekPrevious(pos.end, true);
- } else {
- pos.begin = seekNext(pos.begin, true);
- pos.end = seekNext(pos.begin, true);
- if (pos.end < getMaskLength()) pos.end--;
- }
- if (pos.begin < getMaskLength()) {
- e.preventDefault();
- caret(input, pos.begin, pos.end);
- }
- } else if (opts.insertMode === false && !e.shiftKey) {
- if (k === Inputmask.keyCode.RIGHT) {
- setTimeout(function() {
- var caretPos = caret(input);
- caret(input, caretPos.begin);
- }, 0);
- } else if (k === Inputmask.keyCode.LEFT) {
- setTimeout(function() {
- var caretPos = caret(input);
- caret(input, isRTL ? caretPos.begin + 1 : caretPos.begin - 1);
- }, 0);
- }
- }
- opts.onKeyDown.call(this, e, getBuffer(), caret(input).begin, opts);
- ignorable = $.inArray(k, opts.ignorables) !== -1;
- }
- function keypressEvent(e, checkval, writeOut, strict, ndx) {
- var input = this,
- $input = $(input),
- k = e.which || e.charCode || e.keyCode;
- if (checkval !== true && (!(e.ctrlKey && e.altKey) && (e.ctrlKey || e.metaKey || ignorable))) {
- if (k === Inputmask.keyCode.ENTER && undoValue !== getBuffer().join("")) {
- undoValue = getBuffer().join("");
- // e.preventDefault();
- setTimeout(function() {
- $input.trigger("change");
- }, 0);
- }
- return true;
- } else {
- if (k) {
- //special treat the decimal separator
- if (k === 46 && e.shiftKey === false && opts.radixPoint === ",") k = 44;
- var pos = checkval ? {
- begin: ndx,
- end: ndx
- } : caret(input),
- forwardPosition, c = String.fromCharCode(k);
- //should we clear a possible selection??
- var isSlctn = isSelection(pos.begin, pos.end);
- if (isSlctn) {
- getMaskSet().undoPositions = $.extend(true, {}, getMaskSet().validPositions); //init undobuffer for recovery when not valid
- handleRemove(input, Inputmask.keyCode.DELETE, pos, true);
- pos.begin = getMaskSet().p;
- if (!opts.insertMode) { //preserve some space
- opts.insertMode = !opts.insertMode;
- setValidPosition(pos.begin, strict);
- opts.insertMode = !opts.insertMode;
- }
- isSlctn = !opts.multi;
- }
- getMaskSet().writeOutBuffer = true;
- var p = isRTL && !isSlctn ? pos.end : pos.begin;
- var valResult = isValid(p, c, strict);
- if (valResult !== false) {
- if (valResult !== true) {
- p = valResult.pos !== undefined ? valResult.pos : p; //set new position from isValid
- c = valResult.c !== undefined ? valResult.c : c; //set new char from isValid
- }
- resetMaskSet(true);
- if (valResult.caret !== undefined) {
- forwardPosition = valResult.caret;
- } else {
- var vps = getMaskSet().validPositions;
- if (!opts.keepStatic && (vps[p + 1] !== undefined && getTests(p + 1, vps[p].locator.slice(), p).length > 1 || vps[p].alternation !== undefined)) {
- forwardPosition = p + 1;
- } else forwardPosition = seekNext(p);
- }
- getMaskSet().p = forwardPosition; //needed for checkval
- }
- if (writeOut !== false) {
- var self = this;
- setTimeout(function() {
- opts.onKeyValidation.call(self, k, valResult, opts);
- }, 0);
- if (getMaskSet().writeOutBuffer && valResult !== false) {
- var buffer = getBuffer();
- writeBuffer(input, buffer, (opts.numericInput && valResult.caret === undefined) ? seekPrevious(forwardPosition) : forwardPosition, e, checkval !== true);
- if (checkval !== true) {
- setTimeout(function() { //timeout needed for IE
- if (isComplete(buffer) === true) $input.trigger("complete");
- }, 0);
- }
- } else if (isSlctn) {
- getMaskSet().buffer = undefined;
- getMaskSet().validPositions = getMaskSet().undoPositions;
- }
- } else if (isSlctn) {
- getMaskSet().buffer = undefined;
- getMaskSet().validPositions = getMaskSet().undoPositions;
- }
- if (opts.showTooltip) { //update tooltip
- input.title = opts.tooltip || getMaskSet().mask;
- }
- if (checkval && $.isFunction(opts.onBeforeWrite)) {
- var result = opts.onBeforeWrite(e, getBuffer(), forwardPosition, opts);
- if (result && result.refreshFromBuffer) {
- var refresh = result.refreshFromBuffer;
- refreshFromBuffer(refresh === true ? refresh : refresh.start, refresh.end, result.buffer);
- resetMaskSet(true);
- if (result.caret) {
- getMaskSet().p = result.caret;
- }
- }
- }
- e.preventDefault();
- if (checkval) {
- return valResult;
- }
- }
- }
- }
- function pasteEvent(e) {
- var input = this,
- ev = e.originalEvent || e,
- $input = $(input),
- inputValue = input.inputmask._valueGet(true),
- caretPos = caret(input);
- var valueBeforeCaret = inputValue.substr(0, caretPos.begin),
- valueAfterCaret = inputValue.substr(caretPos.end, inputValue.length);
- if (valueBeforeCaret === getBufferTemplate().slice(0, caretPos.begin).join("")) valueBeforeCaret = "";
- if (valueAfterCaret === getBufferTemplate().slice(caretPos.end).join("")) valueAfterCaret = "";
- if (window.clipboardData && window.clipboardData.getData) { // IE
- inputValue = valueBeforeCaret + window.clipboardData.getData("Text") + valueAfterCaret;
- } else if (ev.clipboardData && ev.clipboardData.getData) {
- inputValue = valueBeforeCaret + ev.clipboardData.getData("text/plain") + valueAfterCaret;
- }
- var pasteValue = inputValue;
- if ($.isFunction(opts.onBeforePaste)) {
- pasteValue = opts.onBeforePaste(inputValue, opts);
- if (pasteValue === false) {
- return e.preventDefault();
- }
- if (!pasteValue) {
- pasteValue = inputValue;
- }
- }
- checkVal(input, false, false, isRTL ? pasteValue.split("").reverse() : pasteValue.toString().split(""));
- writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()), e, true);
- if (isComplete(getBuffer()) === true) {
- $input.trigger("complete");
- }
- return e.preventDefault();
- }
- function inputFallBackEvent(e) { //fallback when keypress fails
- var input = this,
- inputValue = input.inputmask._valueGet();
- if (getBuffer().join("") !== inputValue) {
- var caretPos = caret(input);
- inputValue = inputValue.replace(new RegExp("(" + Inputmask.escapeRegex(getBufferTemplate().join("")) + ")*"), "");
- if (iemobile) { //iemobile just set the character at the end althought the caret position is correctly set
- var inputChar = inputValue.replace(getBuffer().join(""), "");
- if (inputChar.length === 1) {
- var keypress = new $.Event("keypress");
- keypress.which = inputChar.charCodeAt(0);
- keypressEvent.call(input, keypress, true, true, false, getMaskSet().validPositions[caretPos.begin - 1] ? caretPos.begin : caretPos.begin - 1);
- return false;
- }
- }
- if (caretPos.begin > inputValue.length) {
- caret(input, inputValue.length);
- caretPos = caret(input);
- }
- //detect & treat possible backspace
- if ((getBuffer().length - inputValue.length) === 1 && inputValue.charAt(caretPos.begin) !== getBuffer()[caretPos.begin] && inputValue.charAt(caretPos.begin + 1) !== getBuffer()[caretPos.begin] && !isMask(caretPos.begin)) {
- e.keyCode = Inputmask.keyCode.BACKSPACE;
- keydownEvent.call(input, e);
- } else {
- var lvp = getLastValidPosition() + 1;
- var bufferTemplate = getBuffer().slice(lvp).join('');
- while (inputValue.match(Inputmask.escapeRegex(bufferTemplate) + "$") === null) {
- bufferTemplate = bufferTemplate.slice(1);
- }
- inputValue = inputValue.replace(bufferTemplate, "");
- inputValue = inputValue.split("");
- checkVal(input, true, false, inputValue);
- if (isComplete(getBuffer()) === true) {
- $(input).trigger("complete");
- }
- }
- e.preventDefault();
- }
- }
- function setValueEvent(e) {
- var input = this,
- value = input.inputmask._valueGet();
- checkVal(input, true, false, ($.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask(value, opts) || value) : value).split(""));
- undoValue = getBuffer().join("");
- if ((opts.clearMaskOnLostFocus || opts.clearIncomplete) && input.inputmask._valueGet() === getBufferTemplate().join("")) {
- input.inputmask._valueSet("");
- }
- }
- function focusEvent(e) {
- var input = this,
- nptValue = input.inputmask._valueGet();
- if (opts.showMaskOnFocus && (!opts.showMaskOnHover || (opts.showMaskOnHover && nptValue === ""))) {
- if (input.inputmask._valueGet() !== getBuffer().join("")) {
- writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()));
- }
- } else if (mouseEnter === false) { //only executed on focus without mouseenter
- caret(input, seekNext(getLastValidPosition()));
- }
- if (opts.positionCaretOnTab === true) {
- setTimeout(function() {
- caret(input, seekNext(getLastValidPosition()));
- }, 0);
- }
- undoValue = getBuffer().join("");
- }
- function mouseleaveEvent(e) {
- var input = this;
- mouseEnter = false;
- if (opts.clearMaskOnLostFocus && document.activeElement !== input) {
- var buffer = getBuffer().slice(),
- nptValue = input.inputmask._valueGet();
- if (nptValue !== input.getAttribute("placeholder") && nptValue !== "") {
- if (getLastValidPosition() === -1 && nptValue === getBufferTemplate().join("")) {
- buffer = [];
- } else { //clearout optional tail of the mask
- clearOptionalTail(buffer);
- }
- writeBuffer(input, buffer);
- }
- }
- }
- function clickEvent(e) {
- function doRadixFocus(clickPos) {
- if (opts.radixFocus && opts.radixPoint !== "") {
- var vps = getMaskSet().validPositions;
- if (vps[clickPos] === undefined || (vps[clickPos].input === getPlaceholder(clickPos))) {
- if (clickPos < seekNext(-1)) return true;
- var radixPos = $.inArray(opts.radixPoint, getBuffer());
- if (radixPos !== -1) {
- for (var vp in vps) {
- if (radixPos < vp && vps[vp].input !== getPlaceholder(vp)) {
- return false;
- }
- }
- return true;
- }
- }
- }
- return false;
- }
- var input = this;
- if (document.activeElement === input) {
- var selectedCaret = caret(input);
- if (selectedCaret.begin === selectedCaret.end) {
- if (doRadixFocus(selectedCaret.begin)) {
- caret(input, opts.numericInput ? seekNext($.inArray(opts.radixPoint, getBuffer())) : $.inArray(opts.radixPoint, getBuffer()));
- } else {
- var clickPosition = selectedCaret.begin,
- lvclickPosition = getLastValidPosition(clickPosition),
- lastPosition = seekNext(lvclickPosition);
- if (clickPosition < lastPosition) {
- caret(input, !isMask(clickPosition) && !isMask(clickPosition - 1) ? seekNext(clickPosition) : clickPosition);
- } else {
- if (getBuffer()[lastPosition] !== getPlaceholder(lastPosition) || (!isMask(lastPosition, true) && getTest(lastPosition).def === getPlaceholder(lastPosition))) {
- lastPosition = seekNext(lastPosition);
- }
- caret(input, lastPosition);
- }
- }
- }
- }
- }
- function dblclickEvent(e) {
- var input = this;
- setTimeout(function() {
- caret(input, 0, seekNext(getLastValidPosition()));
- }, 0);
- }
- function cutEvent(e) {
- var input = this,
- $input = $(input),
- pos = caret(input),
- ev = e.originalEvent || e;
- //correct clipboardData
- var clipboardData = window.clipboardData || ev.clipboardData,
- clipData = isRTL ? getBuffer().slice(pos.end, pos.begin) : getBuffer().slice(pos.begin, pos.end);
- clipboardData.setData("text", isRTL ? clipData.reverse().join("") : clipData.join(""));
- if (document.execCommand) document.execCommand("copy"); // copy selected content to system clipbaord
- handleRemove(input, Inputmask.keyCode.DELETE, pos);
- writeBuffer(input, getBuffer(), getMaskSet().p, e, undoValue !== getBuffer().join(""));
- if (input.inputmask._valueGet() === getBufferTemplate().join("")) {
- $input.trigger("cleared");
- }
- if (opts.showTooltip) { //update tooltip
- input.title = opts.tooltip || getMaskSet().mask;
- }
- }
- function blurEvent(e) {
- var $input = $(this),
- input = this;
- if (input.inputmask) {
- var nptValue = input.inputmask._valueGet(),
- buffer = getBuffer().slice();
- if (undoValue !== buffer.join("")) {
- setTimeout(function() { //change event should be triggered after the other buffer manipulations on blur
- $input.trigger("change");
- undoValue = buffer.join("");
- }, 0);
- }
- if (nptValue !== "") {
- if (opts.clearMaskOnLostFocus) {
- if (getLastValidPosition() === -1 && nptValue === getBufferTemplate().join("")) {
- buffer = [];
- } else { //clearout optional tail of the mask
- clearOptionalTail(buffer);
- }
- }
- if (isComplete(buffer) === false) {
- setTimeout(function() {
- $input.trigger("incomplete");
- }, 0);
- if (opts.clearIncomplete) {
- resetMaskSet();
- if (opts.clearMaskOnLostFocus) {
- buffer = [];
- } else {
- buffer = getBufferTemplate().slice();
- }
- }
- }
- writeBuffer(input, buffer, undefined, e);
- }
- }
- }
- function mouseenterEvent(e) {
- var input = this;
- mouseEnter = true;
- if (document.activeElement !== input && opts.showMaskOnHover) {
- if (input.inputmask._valueGet() !== getBuffer().join("")) {
- writeBuffer(input, getBuffer());
- }
- }
- }
- function submitEvent(e) { //trigger change on submit if any
- if (undoValue !== getBuffer().join("")) {
- $el.trigger("change");
- }
- if (opts.clearMaskOnLostFocus && getLastValidPosition() === -1 && el.inputmask._valueGet && el.inputmask._valueGet() === getBufferTemplate().join("")) {
- el.inputmask._valueSet(""); //clear masktemplete on submit and still has focus
- }
- if (opts.removeMaskOnSubmit) {
- el.inputmask._valueSet(el.inputmask.unmaskedvalue(), true);
- setTimeout(function() {
- writeBuffer(el, getBuffer());
- }, 0);
- }
- }
- function resetEvent(e) {
- setTimeout(function() {
- $el.trigger("setvalue");
- }, 0);
- }
- function mask(elem) {
- el = elem;
- $el = $(el);
- //show tooltip
- if (opts.showTooltip) {
- el.title = opts.tooltip || getMaskSet().mask;
- }
- if (el.dir === "rtl" || opts.rightAlign) {
- el.style.textAlign = "right";
- }
- if (el.dir === "rtl" || opts.numericInput) {
- el.dir = "ltr";
- el.removeAttribute("dir");
- el.inputmask.isRTL = true;
- isRTL = true;
- }
- //unbind all events - to make sure that no other mask will interfere when re-masking
- EventRuler.off(el);
- patchValueProperty(el);
- if (isElementTypeSupported(el, opts)) {
- //bind events
- EventRuler.on(el, "submit", submitEvent);
- EventRuler.on(el, "reset", resetEvent);
- EventRuler.on(el, "mouseenter", mouseenterEvent);
- EventRuler.on(el, "blur", blurEvent);
- EventRuler.on(el, "focus", focusEvent);
- EventRuler.on(el, "mouseleave", mouseleaveEvent);
- EventRuler.on(el, "click", clickEvent);
- EventRuler.on(el, "dblclick", dblclickEvent);
- EventRuler.on(el, "paste", pasteEvent);
- EventRuler.on(el, "dragdrop", pasteEvent);
- EventRuler.on(el, "drop", pasteEvent);
- EventRuler.on(el, "cut", cutEvent);
- EventRuler.on(el, "complete", opts.oncomplete);
- EventRuler.on(el, "incomplete", opts.onincomplete);
- EventRuler.on(el, "cleared", opts.oncleared);
- EventRuler.on(el, "keydown", keydownEvent);
- EventRuler.on(el, "keypress", keypressEvent);
- EventRuler.on(el, "input", inputFallBackEvent);
- }
- EventRuler.on(el, "setvalue", setValueEvent);
- //apply mask
- if (el.inputmask._valueGet() !== "" || opts.clearMaskOnLostFocus === false) {
- var initialValue = $.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask(el.inputmask._valueGet(), opts) || el.inputmask._valueGet()) : el.inputmask._valueGet();
- checkVal(el, true, false, initialValue.split(""));
- var buffer = getBuffer().slice();
- undoValue = buffer.join("");
- // Wrap document.activeElement in a try/catch block since IE9 throw "Unspecified error" if document.activeElement is undefined when we are in an IFrame.
- if (isComplete(buffer) === false) {
- if (opts.clearIncomplete) {
- resetMaskSet();
- }
- }
- if (opts.clearMaskOnLostFocus) {
- if (buffer.join("") === getBufferTemplate().join("")) {
- buffer = [];
- } else {
- clearOptionalTail(buffer);
- }
- }
- writeBuffer(el, buffer);
- if (document.activeElement === el) { //position the caret when in focus
- caret(el, seekNext(getLastValidPosition()));
- }
- }
- }
- //action object
- var valueBuffer;
- if (actionObj !== undefined) {
- switch (actionObj.action) {
- case "isComplete":
- el = actionObj.el;
- return isComplete(getBuffer());
- case "unmaskedvalue":
- el = actionObj.el;
- if (el !== undefined && el.inputmask !== undefined) {
- maskset = el.inputmask.maskset;
- opts = el.inputmask.opts;
- isRTL = el.inputmask.isRTL;
- } else {
- valueBuffer = actionObj.value;
- if (opts.numericInput) {
- isRTL = true;
- }
- valueBuffer = ($.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask(valueBuffer, opts) || valueBuffer) : valueBuffer).split("");
- checkVal(undefined, false, false, isRTL ? valueBuffer.reverse() : valueBuffer);
- if ($.isFunction(opts.onBeforeWrite)) opts.onBeforeWrite(undefined, getBuffer(), 0, opts);
- }
- return unmaskedvalue(el);
- case "mask":
- el = actionObj.el;
- maskset = el.inputmask.maskset;
- opts = el.inputmask.opts;
- isRTL = el.inputmask.isRTL;
- undoValue = getBuffer().join("");
- mask(el);
- break;
- case "format":
- if (opts.numericInput) {
- isRTL = true;
- }
- valueBuffer = ($.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask(actionObj.value, opts) || actionObj.value) : actionObj.value).split("");
- checkVal(undefined, false, false, isRTL ? valueBuffer.reverse() : valueBuffer);
- if ($.isFunction(opts.onBeforeWrite)) opts.onBeforeWrite(undefined, getBuffer(), 0, opts);
- if (actionObj.metadata) {
- return {
- value: isRTL ? getBuffer().slice().reverse().join("") : getBuffer().join(""),
- metadata: maskScope({
- "action": "getmetadata"
- }, maskset, opts)
- };
- }
- return isRTL ? getBuffer().slice().reverse().join("") : getBuffer().join("");
- case "isValid":
- if (opts.numericInput) {
- isRTL = true;
- }
- if (actionObj.value) {
- valueBuffer = actionObj.value.split("");
- checkVal(undefined, false, true, isRTL ? valueBuffer.reverse() : valueBuffer);
- } else {
- actionObj.value = getBuffer().join("");
- }
- var buffer = getBuffer();
- var rl = determineLastRequiredPosition(),
- lmib = buffer.length - 1;
- for (; lmib > rl; lmib--) {
- if (isMask(lmib)) break;
- }
- buffer.splice(rl, lmib + 1 - rl);
- return isComplete(buffer) && actionObj.value === getBuffer().join("");
- case "getemptymask":
- return getBufferTemplate();
- case "remove":
- el = actionObj.el;
- $el = $(el);
- maskset = el.inputmask.maskset;
- opts = el.inputmask.opts;
- //writeout the unmaskedvalue
- el.inputmask._valueSet(unmaskedvalue(el));
- //unbind all events
- EventRuler.off(el);
- //restore the value property
- var valueProperty;
- if (Object.getOwnPropertyDescriptor) {
- valueProperty = Object.getOwnPropertyDescriptor(Object.getPrototypeOf(el), "value");
- if (valueProperty) {
- if (el.inputmask.__valueGet) {
- Object.defineProperty(el, "value", {
- get: el.inputmask.__valueGet,
- set: el.inputmask.__valueSet,
- configurable: true
- });
- }
- }
- } else if (document.__lookupGetter__ && el.__lookupGetter__("value")) {
- if (el.inputmask.__valueGet) {
- el.__defineGetter__("value", el.inputmask.__valueGet);
- el.__defineSetter__("value", el.inputmask.__valueSet);
- }
- }
- //clear data
- el.inputmask = undefined;
- break;
- case "getmetadata":
- if ($.isArray(maskset.metadata)) {
- //find last alternation
- var alternation, lvp = getLastValidPosition();
- for (var firstAlt = lvp; firstAlt >= 0; firstAlt--) {
- if (getMaskSet().validPositions[firstAlt] && getMaskSet().validPositions[firstAlt].alternation !== undefined) {
- alternation = getMaskSet().validPositions[firstAlt].alternation;
- break;
- }
- }
- if (alternation !== undefined) {
- return maskset.metadata[getMaskSet().validPositions[lvp].locator[alternation]];
- } else return maskset.metadata[0];
- }
- return maskset.metadata;
- }
- }
- }
- //make inputmask available
- window.Inputmask = Inputmask;
- return Inputmask;
- }));
|