Sha256: 324ea815a619885ae55f04eb06ac2e3fa9975fcc2d48effb3784f72ea54420f3

Contents?: true

Size: 1.53 KB

Versions: 1

Compression:

Stored size: 1.53 KB

Contents

I"(function() {
  var extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
    hasProp = {}.hasOwnProperty;

  App.Validators.Vulgarity = (function(superClass) {
    extend(Vulgarity, superClass);

    function Vulgarity() {
      Vulgarity.__super__.constructor.apply(this, arguments);
    }

    Vulgarity.prototype.validate = function() {
      var vulgarWord;
      if (this.val == null) {
        return;
      }
      switch (typeof this.val) {
        case 'string':
          vulgarWord = this._getVulgarWord();
          if (/#{vulgarWord}/i.exec(this.val)) {
            return this._addErrorMessage();
          } else {

          }
          break;
        default:
          throw new TypeError("Vulgarity validator is applicable only for strings and " + this.attr + " isn't.");
      }
    };

    Vulgarity.prototype._addErrorMessage = function() {
      var message;
      message = App.I18n[App.Env.loco.getLocale()].errors.messages.vulgarity;
      return this.obj.addErrorMessage(message, {
        "for": this.attr
      });
    };

    Vulgarity.prototype._getVulgarWord = function() {
      switch (App.Env.loco.getLocale()) {
        case 'pl':
          return 'kurwa';
        case 'en':
          return 'fuck';
      }
    };

    return Vulgarity;

  })(App.Validators.Base);

}).call(this);
:ET

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
loco-rails-0.0.1 test/dummy/tmp/cache/assets/development/sprockets/v3.0/-Ym0gDgwfv53QgCWZCY4z8Fs4yluy5ehR-08S7iR7HM.cache