GithubHelp home page GithubHelp logo

Comments (2)

prainho avatar prainho commented on July 25, 2024

I've done a little changes to the plugin to fix the reported problem and other problems the plugin have.
Comments:
1º The method destroyEvents does el.off(); I've debugged the jquery off method and using it without parameters doesn't do anything.
2º You don't want to remove all events you only want to remove the events created by this plugin. As so the plugin must have it's own event namespace (http://api.jquery.com/event.namespace/)
3º Now the method destroyEvents clears only the plugin events
4º I'm intercepting the blur and focus event so that I only trigger the change event if any key is pressed
5º If you want you can add this changes to the plugin :)

/**

  • jquery.mask.js
  • @Version: v0.11.5
  • @author: Igor Escobar
    *
  • Created by Igor Escobar on 2012-03-10. Please report any bug at http://blog.igorescobar.com
    *
  • Copyright (c) 2012 Igor Escobar http://blog.igorescobar.com
    *
  • The MIT License (http://www.opensource.org/licenses/mit-license.php)
    *
  • Permission is hereby granted, free of charge, to any person
  • obtaining a copy of this software and associated documentation
  • files (the "Software"), to deal in the Software without
  • restriction, including without limitation the rights to use,
  • copy, modify, merge, publish, distribute, sublicense, and/or sell
  • copies of the Software, and to permit persons to whom the
  • Software is furnished to do so, subject to the following
  • conditions:
    *
  • The above copyright notice and this permission notice shall be
  • included in all copies or substantial portions of the Software.
    *
  • THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  • EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  • OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  • NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  • HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  • WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  • FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  • OTHER DEALINGS IN THE SOFTWARE.
    */

(function ($) {
"use strict";
var Mask = function (el, mask, options) {
var jMask = this,
el = $(el), hasChanged = false;

    jMask.init = function () {
        options = options || {};

        jMask.byPassKeys = [8, 9, 37, 38, 39, 40, 46];
        jMask.maskChars = { ':': ':', '-': '-', '.': '\\\.', '(': '\\(', ')': '\\)', '/': '\/', ',': ',', '_': '_', ' ': '\\s', '+': '\\\+' };
        jMask.translationNumbers = { 0: '\\d', 1: '\\d', 2: '\\d', 3: '\\d', 4: '\\d', 5: '\\d', 6: '\\d', 7: '\\d', 8: '\\d', 9: '\\d' };
        jMask.translation = { 'A': '[a-zA-Z0-9]', 'S': '[a-zA-Z]' };

        jMask.translation = $.extend({}, jMask.translation, jMask.translationNumbers);
        jMask = $.extend(true, {}, jMask, options);
        jMask.specialChars = $.extend({}, jMask.maskChars, jMask.translation);

        el.each(function () {
            mask = p.resolveMask();
            mask = p.fixRangeMask(mask);

            el.attr('maxlength', mask.length).attr('autocomplete', 'off');
            p.destroyEvents();
            p.focus();
            p.blur();
            p.keyUp();
            p.paste();
        });
    };

    var p = {
        paste: function () {
            el.on("paste.mask", function () {
                setTimeout(function () {
                    el.trigger('keyup.mask');
                }, 100);
            });
        },
        focus: function () {
            el.on("focus.mask", function () {
                hasChanged = false;
            });
        },
        blur: function () {
            el.on("blur.mask", function () {
                if (hasChanged == true) {
                    el.trigger("change");
                    hasChanged = false;
                }
            });
        },
        keyUp: function () {
            el.on('keyup.mask', p.maskBehaviour).trigger('keyup.mask');
        },
        destroyEvents: function () {
            el.off("focus.mask");
            el.off("blur.mask");
            el.off("paste.mask");
            el.off("keyup.mask");
        },
        resolveMask: function () {
            return typeof mask == "function" ? mask(p.val(), options) : mask;
        },
        val: function (v) {
            var input = el.get(0).tagName.toLowerCase() === "input";
            return arguments.length > 0 ? (input ? el.val(v) : el.text(v)) : (input ? el.val() : el.text());
        },
        specialChar: function (mask, pos) {
            return jMask.specialChars[mask.charAt(pos)];
        },
        maskChar: function (mask, pos) {
            return jMask.maskChars[mask.charAt(pos)];
        },
        maskBehaviour: function (e) {
            e = e || window.event;
            var keyCode = e.keyCode || e.which,
                newVal = p.applyMask(mask);

            hasChanged = true;

            if ($.inArray(keyCode, jMask.byPassKeys) > -1)
                return p.seekCallbacks(e, newVal);

            if (newVal !== p.val())
                p.val(newVal);

            return p.seekCallbacks(e, newVal);
        },
        applyMask: function (mask) {
            if (p.val() === "") return;

            var hasMore = function (entries, i) {
                while (i < entries.length) {
                    if (entries[i] !== undefined) return true;
                    i++;
                }
                return false;
            },
            getMatches = function (v) {
                v = (typeof v === "string") ? v : v.join("");
                var matches = v.match(new RegExp(p.maskToRegex(mask))) || [];
                matches.shift();
                return matches;
            },
            val = p.val(),
            mask = p.getMask(val, mask),
            val = options.reverse ? p.removeMaskChars(val) : val, cDigitCharRegex,
            matches = getMatches(val);

            // cleaning
            while (matches.join("").length < p.removeMaskChars(val).length) {
                matches = matches.join("").split("");
                val = p.removeMaskChars(matches.join("") + val.substring(matches.length + 1));
                mask = p.getMask(val, mask);
                matches = getMatches(val);
            }

            // masking
            for (var k = 0; k < matches.length; k++) {
                cDigitCharRegex = p.specialChar(mask, k);

                if (p.maskChar(mask, k) && hasMore(matches, k)) {
                    matches[k] = mask.charAt(k);
                } else {
                    if (cDigitCharRegex) {
                        if (matches[k] !== undefined) {
                            if (matches[k].match(new RegExp(cDigitCharRegex)) === null)
                                break;
                        } else {
                            if ("".match(new RegExp(cDigitCharRegex)) === null) {
                                matches = matches.slice(0, k);
                                break;
                            }
                        }
                    }
                }
            }
            return matches.join('');
        },
        getMask: function (cleanVal) {
            var reverseMask = function (oVal) {
                oVal = p.removeMaskChars(oVal);
                var startMask = 0, endMask = 0, m = 0, mLength = mask.length;
                startMask = (mLength >= 1) ? mLength : mLength - 1;
                endMask = startMask;

                while (m < oVal.length) {
                    while (p.maskChar(mask, endMask - 1))
                        endMask--;
                    endMask--;
                    m++;
                }

                endMask = (mask.length >= 1) ? endMask : endMask - 1;
                return mask.substring(startMask, endMask);
            };

            return options.reverse ? reverseMask(cleanVal) : mask;
        },
        maskToRegex: function (mask) {
            var specialChar;
            for (var i = 0, regex = ''; i < mask.length; i++) {
                specialChar = p.specialChar(mask, i);
                if (specialChar) regex += "(" + specialChar + ")?";
            }

            return regex;
        },
        fixRangeMask: function (mask) {
            var repeat = function (str, num) {
                return new Array(num + 1).join(str);
            },
            rangeRegex = /([A-Z0-9])\{(\d+)?,(\d+)\}/g;

            return mask.replace(rangeRegex, function () {
                var match = arguments,
                    mask = [],
                    charStr = (jMask.translationNumbers[match[1]]) ?
                                String.fromCharCode(parseInt("6" + match[1], 16)) : match[1].toLowerCase();

                mask[0] = match[1];
                mask[1] = repeat(match[1], match[2] - 1);
                mask[2] = repeat(charStr, match[3] - match[2]).toLowerCase();

                jMask.specialChars[charStr] = p.specialChar(match[1]) + "?";

                return mask.join("");
            });
        },
        removeMaskChars: function (string) {
            $.each(jMask.maskChars, function (k, v) {
                string = string.replace(new RegExp("(" + jMask.maskChars[k] + ")?", 'g'), '')
            });
            return string;
        },
        seekCallbacks: function (e, newVal) {
            if (options.onKeyPress && e.isTrigger === undefined &&
                typeof options.onKeyPress == "function")
                options.onKeyPress(newVal, e, el, options);

            if (options.onComplete && e.isTrigger === undefined &&
                newVal.length === mask.length && typeof options.onComplete == "function")
                options.onComplete(newVal, e, el, options);
        }
    };

    // qunit private methods testing
    if (typeof QUNIT === "boolean") jMask.p = p;

    // public methods
    jMask.remove = function () {
        p.destroyEvents();
        p.val(p.removeMaskChars(p.val())).removeAttr('maxlength');
    };

    // get value without mask
    jMask.getCleanVal = function () {
        return p.removeMaskChars(p.val());
    };

    jMask.init();
};

$.fn.mask = function (mask, options) {
    return this.each(function () {
        $(this).data('mask', new Mask(this, mask, options));
    });
};

// looking for inputs with data-mask attribute
$('input[data-mask]').each(function () {
    $(this).mask($(this).attr('data-mask'));
});

})(window.jQuery || window.Zepto);

from jquery-mask-plugin.

igorescobar avatar igorescobar commented on July 25, 2024

@prainho jquery mask plugin are on version 1.0.2 there is a lot of changes since version 0.11.5

from jquery-mask-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.