Newer
Older
ez-indexation / app / node_modules / rd-teeft / lib / defaultfilter.js
@kieffer kieffer on 7 Mar 2017 1 KB v0.0.0
/* global module */
/* jslint node: true */
/* jslint indent: 2 */
'use strict';

var Backbone = require('backbone');

module.exports = Backbone.Model.extend({

  defaults: {
    singleStrengthMinOccur: 10,
    noLimitStrength: 2,
    lengthSteps: {
      values: [{
        lim: 3000,
        value: 4
      }],
      min: {
        lim: 1000,
        value: 1
      },
      max: {
        lim: 6000,
        value: 7
      }
    }
  },

  call: function(occur, strength) {
    return ((strength == 1 && occur >= this.get('singleStrengthMinOccur')) ||
      (strength >= this.get('noLimitStrength')));
  },

  configure: function(length) {
    if (!isNaN(length)) {
      if (length < this.get('lengthSteps').min.lim) {
        this.set('singleStrengthMinOccur', this.get('lengthSteps').min.value);
        return this.get('lengthSteps').min.value;
      }
      for (var i = 0; i < this.get('lengthSteps').values.length; i++) {
        if (length < this.get('lengthSteps').values[i].lim) {
          this.set('singleStrengthMinOccur', this.get('lengthSteps').values[i].value);
          return this.get('lengthSteps').values[i].value;
        }
      }
      this.set('singleStrengthMinOccur', this.get('lengthSteps').max.value);
      return this.get('lengthSteps').max.value;
    }
    return null;
  }
});