2016-04-01 13:17:09 +00:00
|
|
|
/*
|
|
|
|
*
|
2019-01-17 13:05:03 +00:00
|
|
|
* (c) Copyright Ascensio System SIA 2010-2019
|
2016-04-01 13:17:09 +00:00
|
|
|
*
|
|
|
|
* This program is a free software product. You can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
|
|
|
* version 3 as published by the Free Software Foundation. In accordance with
|
|
|
|
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
|
|
|
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
|
|
|
* of any third-party rights.
|
|
|
|
*
|
|
|
|
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
|
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
|
|
|
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
|
|
|
*
|
2019-01-17 13:00:34 +00:00
|
|
|
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
|
|
|
* street, Riga, Latvia, EU, LV-1050.
|
2016-04-01 13:17:09 +00:00
|
|
|
*
|
|
|
|
* The interactive user interfaces in modified source and object code versions
|
|
|
|
* of the Program must display Appropriate Legal Notices, as required under
|
|
|
|
* Section 5 of the GNU AGPL version 3.
|
|
|
|
*
|
|
|
|
* Pursuant to Section 7(b) of the License you must retain the original Product
|
|
|
|
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
|
|
|
* grant you any rights under trademark law for use of our trademarks.
|
|
|
|
*
|
|
|
|
* All the Product's GUI elements, including illustrations and icon sets, as
|
|
|
|
* well as technical writing content are licensed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
|
|
|
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
|
|
|
*
|
|
|
|
*/
|
2016-03-11 00:48:53 +00:00
|
|
|
/**
|
|
|
|
* MetricSpinner.js
|
|
|
|
*
|
|
|
|
* Created by Julia Radzhabova on 1/21/14
|
2018-03-01 12:16:38 +00:00
|
|
|
* Copyright (c) 2018 Ascensio System SIA. All rights reserved.
|
2016-03-11 00:48:53 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* A text field with a pair of up/down spinner buttons and up/down arrow key event listeners attached for
|
|
|
|
* incrementing/decrementing the value by the {@link #step} value. Provides automatic numeric validation to limit
|
|
|
|
* the value to a range of valid numbers. The range of acceptable number values can be controlled by setting
|
|
|
|
* the {@link #minValue} and {@link #maxValue} configs.
|
|
|
|
*
|
|
|
|
* Example usage:
|
|
|
|
* new Common.UI.MetricSpinner({
|
|
|
|
* el: $('#id'),
|
|
|
|
* minValue : 0,
|
|
|
|
* maxValue : 100,
|
|
|
|
* step : 1,
|
|
|
|
* defaultUnit : 'px',
|
|
|
|
* allowAuto : false,
|
|
|
|
* autoText : 'Auto'
|
|
|
|
* });
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @property {String} defaultUnit
|
2016-04-07 12:13:16 +00:00
|
|
|
* Name of the unit of measurement. Can be px|em|%|en|ex|pt|"|cm|mm|pc|s|ms|см|мм|пт|сек|мс.
|
2016-03-11 00:48:53 +00:00
|
|
|
*
|
|
|
|
* defaultUnit: 'px',
|
|
|
|
*
|
|
|
|
* @property {Boolean} allowAuto
|
|
|
|
* True to enable additional field value {@link #autoText}. {@link #autoText} appears when number value of the field
|
|
|
|
* is {@link #minValue} and the user pressed down spinner button or down arrow key.
|
|
|
|
*
|
|
|
|
* allowAuto: false,
|
|
|
|
*
|
|
|
|
* @property {String} autoText
|
|
|
|
* Used when {@link #allowAuto} is true.
|
|
|
|
*
|
|
|
|
* autoText: 'Auto',
|
|
|
|
*
|
|
|
|
* @property {Boolean} disabled
|
|
|
|
* True if this spinner is disabled.
|
|
|
|
*
|
|
|
|
* disabled: false,
|
|
|
|
*
|
|
|
|
* @property {Boolean} hold
|
|
|
|
* If true this spinner fires a mouse down/arrow key down event while the mouse/key is pressed.
|
|
|
|
* The interval between firings depends on {@link #speed} .
|
|
|
|
*
|
|
|
|
* hold: true,
|
|
|
|
*
|
|
|
|
* @property {String} speed
|
|
|
|
* Used when {@link #hold} is true. Can be 'slow', 'medium', 'fast'.
|
|
|
|
*
|
|
|
|
* speed: 'medium',
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (Common === undefined)
|
|
|
|
var Common = {};
|
|
|
|
|
|
|
|
define([
|
|
|
|
'common/main/lib/component/BaseView'
|
|
|
|
], function () {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
Common.UI.MetricSpinner = Common.UI.BaseView.extend({
|
|
|
|
options : {
|
|
|
|
minValue : 0,
|
|
|
|
maxValue : 100,
|
|
|
|
step : 1,
|
|
|
|
defaultUnit : "px",
|
|
|
|
allowAuto : false,
|
|
|
|
autoText : 'Auto',
|
|
|
|
hold : true,
|
|
|
|
speed : 'medium',
|
|
|
|
width : 90,
|
|
|
|
allowDecimal: true
|
|
|
|
},
|
|
|
|
|
|
|
|
disabled : false,
|
|
|
|
value : '0 px',
|
|
|
|
rendered : false,
|
|
|
|
|
|
|
|
template :
|
2019-03-25 14:05:05 +00:00
|
|
|
'<input type="text" class="form-control" spellcheck="false">' +
|
2016-03-11 00:48:53 +00:00
|
|
|
'<div class="spinner-buttons">' +
|
2020-12-22 12:45:06 +00:00
|
|
|
'<button type="button" class="spinner-up"><i class="arrow"></i></button>' +
|
|
|
|
'<button type="button" class="spinner-down"><i class="arrow"></i></button>' +
|
2016-03-11 00:48:53 +00:00
|
|
|
'</div>',
|
|
|
|
|
|
|
|
initialize : function(options) {
|
|
|
|
Common.UI.BaseView.prototype.initialize.call(this, options);
|
|
|
|
|
|
|
|
var me = this,
|
2019-07-29 11:24:20 +00:00
|
|
|
el = me.$el || $(this.el);
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
el.addClass('spinner');
|
|
|
|
|
|
|
|
el.on('mousedown', '.spinner-up', _.bind(this.onMouseDown, this, true));
|
|
|
|
el.on('mousedown', '.spinner-down', _.bind(this.onMouseDown, this, false));
|
|
|
|
el.on('mouseup', '.spinner-up', _.bind(this.onMouseUp, this, true));
|
|
|
|
el.on('mouseup', '.spinner-down', _.bind(this.onMouseUp, this, false));
|
|
|
|
el.on('mouseover', '.spinner-up, .spinner-down', _.bind(this.onMouseOver, this));
|
|
|
|
el.on('mouseout', '.spinner-up, .spinner-down', _.bind(this.onMouseOut, this));
|
|
|
|
el.on('keydown', '.form-control', _.bind(this.onKeyDown, this));
|
|
|
|
el.on('keyup', '.form-control', _.bind(this.onKeyUp, this));
|
|
|
|
el.on('blur', '.form-control', _.bind(this.onBlur, this));
|
|
|
|
el.on('input', '.form-control', _.bind(this.onInput, this));
|
|
|
|
if (!this.options.allowDecimal)
|
|
|
|
el.on('keypress', '.form-control', _.bind(this.onKeyPress, this));
|
2019-12-06 11:55:53 +00:00
|
|
|
el.on('focus', 'input.form-control', function() {
|
2019-12-10 09:13:52 +00:00
|
|
|
setTimeout(function(){me.$input && me.$input.select();}, 1);
|
|
|
|
});
|
|
|
|
Common.Utils.isGecko && el.on('blur', 'input.form-control', function() {
|
|
|
|
setTimeout(function(){
|
|
|
|
me.$input && (me.$input[0].selectionStart = me.$input[0].selectionEnd = 0);
|
|
|
|
}, 1);
|
2019-12-06 11:55:53 +00:00
|
|
|
});
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
this.switches = {
|
|
|
|
count: 1,
|
|
|
|
enabled: true,
|
|
|
|
fromKeyDown: false
|
|
|
|
};
|
|
|
|
|
|
|
|
if (this.options.speed === 'medium') { this.switches.speed = 300; }
|
|
|
|
else if (this.options.speed === 'fast') { this.switches.speed = 100; }
|
|
|
|
else { this.switches.speed = 500; }
|
|
|
|
|
|
|
|
this.render();
|
|
|
|
|
|
|
|
if (this.options.disabled)
|
|
|
|
this.setDisabled(this.options.disabled);
|
|
|
|
|
|
|
|
if (this.options.value!==undefined)
|
|
|
|
this.value = this.options.value;
|
|
|
|
this.setRawValue(this.value);
|
|
|
|
|
|
|
|
if (this.options.width) {
|
2019-07-29 11:24:20 +00:00
|
|
|
el.width(this.options.width);
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.options.defaultValue===undefined)
|
|
|
|
this.options.defaultValue = this.options.minValue;
|
|
|
|
|
|
|
|
this.oldValue = this.options.minValue;
|
|
|
|
this.lastValue = null;
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function () {
|
2019-07-29 11:24:20 +00:00
|
|
|
var el = this.$el || $(this.el);
|
2016-03-11 00:48:53 +00:00
|
|
|
el.html(this.template);
|
|
|
|
|
|
|
|
this.$input = el.find('.form-control');
|
|
|
|
this.rendered = true;
|
|
|
|
|
|
|
|
if (this.options.tabindex != undefined)
|
|
|
|
this.$input.attr('tabindex', this.options.tabindex);
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setDisabled: function(disabled) {
|
2019-07-29 11:24:20 +00:00
|
|
|
var el = this.$el || $(this.el);
|
2016-03-11 00:48:53 +00:00
|
|
|
if (disabled !== this.disabled) {
|
|
|
|
el.find('button').toggleClass('disabled', disabled);
|
|
|
|
el.toggleClass('disabled', disabled);
|
|
|
|
(disabled) ? this.$input.attr({disabled: disabled}) : this.$input.removeAttr('disabled');
|
|
|
|
}
|
|
|
|
|
|
|
|
this.disabled = disabled;
|
|
|
|
},
|
|
|
|
|
|
|
|
isDisabled: function() {
|
|
|
|
return this.disabled;
|
|
|
|
},
|
|
|
|
|
|
|
|
setDefaultUnit: function(unit){
|
|
|
|
if (this.options.defaultUnit != unit){
|
|
|
|
var oldUnit = this.options.defaultUnit;
|
|
|
|
this.options.defaultUnit = unit;
|
|
|
|
this.setMinValue(this._recalcUnits(this.options.minValue, oldUnit));
|
|
|
|
this.setMaxValue(this._recalcUnits(this.options.maxValue, oldUnit));
|
|
|
|
this.setValue(this._recalcUnits(this.getNumberValue(), oldUnit), true);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
setMinValue: function(unit){
|
|
|
|
this.options.minValue = unit;
|
|
|
|
},
|
|
|
|
|
|
|
|
setMaxValue: function(unit){
|
|
|
|
this.options.maxValue = unit;
|
|
|
|
},
|
|
|
|
|
|
|
|
setStep: function(step){
|
|
|
|
this.options.step = step;
|
|
|
|
},
|
|
|
|
|
|
|
|
getNumberValue: function(){
|
2020-10-30 17:15:50 +00:00
|
|
|
return this.checkAutoText(this.value) ? -1 : parseFloat(this.value);
|
2016-03-11 00:48:53 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
getUnitValue: function(){
|
|
|
|
return this.options.defaultUnit;
|
|
|
|
},
|
|
|
|
|
|
|
|
getValue: function(){
|
|
|
|
return this.value;
|
|
|
|
},
|
|
|
|
|
|
|
|
setRawValue: function (value) {
|
|
|
|
if (this.$input) this.$input.val(value);
|
|
|
|
},
|
|
|
|
|
2016-12-21 12:40:22 +00:00
|
|
|
getRawValue: function () {
|
|
|
|
return this.$input.val();
|
|
|
|
},
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
setValue: function(value, suspendchange) {
|
|
|
|
var showError = false;
|
|
|
|
this._fromKeyDown = false;
|
|
|
|
this.lastValue = this.value;
|
|
|
|
if ( typeof value === 'undefined' || value === ''){
|
|
|
|
this.value = '';
|
2020-10-30 17:15:50 +00:00
|
|
|
} else if (this.options.allowAuto && (Math.abs(Common.Utils.String.parseFloat(value)+1.)<0.0001 || this.checkAutoText(value))) {
|
2016-03-11 00:48:53 +00:00
|
|
|
this.value = this.options.autoText;
|
|
|
|
} else {
|
2020-03-31 13:49:33 +00:00
|
|
|
var number = this._add(Common.Utils.String.parseFloat(value), 0, (this.options.allowDecimal) ? 3 : 0);
|
2016-03-11 00:48:53 +00:00
|
|
|
if ( typeof value === 'undefined' || isNaN(number)) {
|
|
|
|
number = this.oldValue;
|
|
|
|
showError = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
var units = this.options.defaultUnit;
|
|
|
|
|
|
|
|
if ( typeof value.match !== 'undefined'){
|
2016-04-07 12:13:16 +00:00
|
|
|
var searchUnits = value.match(/(px|em|%|en|ex|pt|"|cm|mm|pc|s|ms|см|мм|пт|сек|мс)$/i);
|
2016-03-11 00:48:53 +00:00
|
|
|
if (null !== searchUnits && searchUnits[0]!=='undefined') {
|
|
|
|
units = searchUnits[0].toLowerCase();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-11 09:50:42 +00:00
|
|
|
if (this.options.defaultUnit !== units && !showError) {
|
2016-03-11 00:48:53 +00:00
|
|
|
number = this._recalcUnits(number, units);
|
|
|
|
}
|
|
|
|
if (number > this.options.maxValue) { number = this.options.maxValue; showError = true; }
|
|
|
|
if (number < this.options.minValue) { number = this.options.minValue; showError = true; }
|
|
|
|
|
|
|
|
this.value = (number + ' ' + this.options.defaultUnit).trim();
|
|
|
|
this.oldValue = number;
|
|
|
|
}
|
|
|
|
if (suspendchange !== true && this.lastValue !== this.value)
|
|
|
|
this.trigger('change', this, this.value, this.lastValue);
|
|
|
|
|
|
|
|
if (suspendchange !== true && showError)
|
|
|
|
this.trigger('inputerror', this, this.value);
|
|
|
|
|
|
|
|
if (this.rendered) {
|
|
|
|
this.setRawValue(this.value);
|
|
|
|
} else {
|
|
|
|
this.options.value = this.value;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-12-21 12:40:22 +00:00
|
|
|
setMask: function(value) {
|
|
|
|
this.options.maskExp = value;
|
|
|
|
},
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
onMouseDown: function (type, e) {
|
|
|
|
if ( this.disabled ) return;
|
|
|
|
|
|
|
|
if (e) $(e.currentTarget).addClass('active');
|
|
|
|
if (this.options.hold) {
|
|
|
|
this.switches.fromKeyDown = false;
|
|
|
|
this._startSpin(type, e);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onMouseUp: function (type, e) {
|
|
|
|
if ( this.disabled ) return;
|
|
|
|
|
|
|
|
$(e.currentTarget).removeClass('active');
|
|
|
|
if (this.options.hold)
|
|
|
|
this._stopSpin();
|
|
|
|
else
|
|
|
|
this._step(type);
|
|
|
|
},
|
|
|
|
|
|
|
|
onMouseOver: function (e) {
|
|
|
|
if ( this.disabled ) return;
|
|
|
|
|
|
|
|
$(e.currentTarget).addClass('over');
|
|
|
|
},
|
|
|
|
|
|
|
|
onMouseOut: function (e) {
|
|
|
|
if ( this.disabled ) return;
|
|
|
|
|
|
|
|
$(e.currentTarget).removeClass('active over');
|
|
|
|
if (this.options.hold)
|
|
|
|
this._stopSpin();
|
|
|
|
},
|
|
|
|
|
|
|
|
onKeyDown: function (e) {
|
|
|
|
if ( this.disabled ) return;
|
|
|
|
|
|
|
|
if (this.options.hold && ( e.keyCode==Common.UI.Keys.UP || e.keyCode==Common.UI.Keys.DOWN)) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
if (this.switches.timeout===undefined) {
|
|
|
|
this.switches.fromKeyDown = true;
|
|
|
|
this._startSpin(e.keyCode==Common.UI.Keys.UP, e);
|
|
|
|
}
|
|
|
|
} else if (e.keyCode==Common.UI.Keys.RETURN) {
|
|
|
|
if (this.options.defaultUnit && this.options.defaultUnit.length) {
|
2016-12-21 12:40:22 +00:00
|
|
|
var value = this.getRawValue();
|
2016-03-11 00:48:53 +00:00
|
|
|
if (this.value != value) {
|
|
|
|
this.onEnterValue();
|
2019-12-06 08:35:17 +00:00
|
|
|
this.trigger('inputleave', this);
|
2017-04-11 13:47:14 +00:00
|
|
|
return (this.value == value);
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.onEnterValue();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this._fromKeyDown = true;
|
|
|
|
}
|
2019-12-10 12:30:32 +00:00
|
|
|
|
|
|
|
if (e.keyCode == Common.UI.Keys.ESC)
|
|
|
|
this.setRawValue(this.value);
|
2019-12-06 08:35:17 +00:00
|
|
|
if (e.keyCode==Common.UI.Keys.RETURN || e.keyCode==Common.UI.Keys.ESC)
|
|
|
|
this.trigger('inputleave', this);
|
2016-03-11 00:48:53 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
onKeyUp: function (e) {
|
|
|
|
if ( this.disabled ) return;
|
|
|
|
|
|
|
|
if (e.keyCode==Common.UI.Keys.UP || e.keyCode==Common.UI.Keys.DOWN) {
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
(this.options.hold) ? this._stopSpin() : this._step(e.keyCode==Common.UI.Keys.UP);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onKeyPress: function (e) {
|
|
|
|
if ( this.disabled ) return;
|
|
|
|
|
|
|
|
var charCode = String.fromCharCode(e.charCode);
|
|
|
|
if (charCode=='.' || charCode==',') {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2018-11-30 14:04:47 +00:00
|
|
|
} else if(this.options.maskExp && !this.options.maskExp.test(charCode) && !e.ctrlKey && e.keyCode !== Common.UI.Keys.RETURN ){
|
2016-03-11 00:48:53 +00:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onInput: function(e, extra) {
|
|
|
|
if ( this.disabled || e.isDefaultPrevented() ) return;
|
|
|
|
this.trigger('changing', this, $(e.target).val(), e);
|
|
|
|
},
|
|
|
|
|
|
|
|
onEnterValue: function() {
|
|
|
|
if (this.$input) {
|
2016-12-21 12:40:22 +00:00
|
|
|
var val = this.getRawValue();
|
2016-03-11 00:48:53 +00:00
|
|
|
this.setValue((val==='') ? this.value : val );
|
|
|
|
this.trigger('entervalue', this);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onBlur: function(e){
|
|
|
|
if (this.$input) {
|
2016-12-21 12:40:22 +00:00
|
|
|
var val = this.getRawValue();
|
2016-03-11 00:48:53 +00:00
|
|
|
this.setValue((val==='') ? this.value : val );
|
|
|
|
if (this.options.hold && this.switches.fromKeyDown)
|
|
|
|
this._stopSpin();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_startSpin: function (type, e) {
|
|
|
|
if (!this.disabled) {
|
|
|
|
var divisor = this.switches.count;
|
|
|
|
|
|
|
|
if (divisor === 1) { this._step(type, true); divisor = 1; }
|
|
|
|
else if (divisor < 3) { divisor = 1.5; }
|
|
|
|
else if (divisor < 8) { divisor = 2.5; }
|
|
|
|
else { divisor = 6; }
|
|
|
|
|
|
|
|
this.switches.timeout = setTimeout($.proxy(function() {
|
|
|
|
this._step(type, true);
|
|
|
|
this._startSpin(type);
|
|
|
|
} ,this), this.switches.speed/divisor);
|
|
|
|
this.switches.count++;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_stopSpin: function (e) {
|
|
|
|
if(this.switches.timeout!==undefined){
|
|
|
|
clearTimeout(this.switches.timeout);
|
|
|
|
this.switches.timeout = undefined;
|
|
|
|
this.switches.count = 1;
|
|
|
|
this.trigger('change', this, this.value, this.lastValue);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_increase: function(suspend) {
|
|
|
|
var me = this;
|
|
|
|
if (!me.readOnly) {
|
|
|
|
var val = me.options.step;
|
|
|
|
if (me._fromKeyDown) {
|
2016-12-21 12:40:22 +00:00
|
|
|
val = this.getRawValue();
|
2020-03-31 13:49:33 +00:00
|
|
|
val = _.isEmpty(val) ? me.oldValue : Common.Utils.String.parseFloat(val);
|
2016-03-11 00:48:53 +00:00
|
|
|
} else if(me.getValue() !== '') {
|
2020-10-30 17:15:50 +00:00
|
|
|
if (me.checkAutoText(me.getValue())) {
|
2020-10-30 18:55:58 +00:00
|
|
|
val = me.options.defaultValue-me.options.step;
|
2016-03-11 00:48:53 +00:00
|
|
|
} else
|
2020-03-31 13:49:33 +00:00
|
|
|
val = Common.Utils.String.parseFloat(me.getValue());
|
2016-03-11 00:48:53 +00:00
|
|
|
if (isNaN(val))
|
|
|
|
val = this.oldValue;
|
|
|
|
} else {
|
2018-03-16 15:27:07 +00:00
|
|
|
val = me.options.defaultValue - me.options.step;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
me.setValue((this._add(val, me.options.step, (me.options.allowDecimal) ? 3 : 0) + ' ' + this.options.defaultUnit).trim(), suspend);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_decrease: function(suspend) {
|
|
|
|
var me = this;
|
|
|
|
if (!me.readOnly) {
|
|
|
|
var val = me.options.step;
|
|
|
|
if (me._fromKeyDown) {
|
2016-12-21 12:40:22 +00:00
|
|
|
val = this.getRawValue();
|
2020-03-31 13:49:33 +00:00
|
|
|
val = _.isEmpty(val) ? me.oldValue : Common.Utils.String.parseFloat(val);
|
2016-03-11 00:48:53 +00:00
|
|
|
} else if(me.getValue() !== '') {
|
2020-10-30 17:15:50 +00:00
|
|
|
if (me.checkAutoText(me.getValue())) {
|
2016-03-11 00:48:53 +00:00
|
|
|
val = me.options.minValue;
|
|
|
|
} else
|
2020-03-31 13:49:33 +00:00
|
|
|
val = Common.Utils.String.parseFloat(me.getValue());
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
if (isNaN(val))
|
|
|
|
val = this.oldValue;
|
|
|
|
if (me.options.allowAuto && this._add(val, -me.options.step, (me.options.allowDecimal) ? 3 : 0)<me.options.minValue) {
|
|
|
|
me.setValue(me.options.autoText, true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
val = me.options.defaultValue;
|
|
|
|
}
|
|
|
|
me.setValue((this._add(val, -me.options.step, (me.options.allowDecimal) ? 3 : 0) + ' ' + this.options.defaultUnit).trim(), suspend);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_step: function (type, suspend) {
|
|
|
|
(type) ? this._increase(suspend) : this._decrease(suspend);
|
2019-12-06 11:55:53 +00:00
|
|
|
if (this.options.hold && this.switches.fromKeyDown)
|
|
|
|
this.$input && this.$input.select();
|
2016-03-11 00:48:53 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
_add: function (a, b, precision) {
|
|
|
|
var x = Math.pow(10, precision || (this.options.allowDecimal) ? 2 : 0);
|
|
|
|
return (Math.round(a * x) + Math.round(b * x)) / x;
|
|
|
|
},
|
|
|
|
|
|
|
|
_recalcUnits: function(value, fromUnit){
|
2016-04-06 13:38:54 +00:00
|
|
|
if ( fromUnit.match(/(s|ms|сек|мс)$/i) && this.options.defaultUnit.match(/(s|ms|сек|мс)$/i) ) {
|
2016-03-11 00:48:53 +00:00
|
|
|
var v_out = value;
|
|
|
|
// to sec
|
2016-04-06 13:38:54 +00:00
|
|
|
if (fromUnit=='ms' || fromUnit=='мс')
|
2017-08-10 10:51:14 +00:00
|
|
|
v_out = parseFloat((v_out/1000.).toFixed(6));
|
2016-03-11 00:48:53 +00:00
|
|
|
// from sec
|
2016-04-06 13:38:54 +00:00
|
|
|
if (this.options.defaultUnit=='ms' || this.options.defaultUnit=='мс')
|
2017-08-10 10:51:14 +00:00
|
|
|
v_out = parseFloat((v_out*1000).toFixed(6));
|
2016-03-11 00:48:53 +00:00
|
|
|
return v_out;
|
|
|
|
}
|
|
|
|
|
2016-04-07 12:13:16 +00:00
|
|
|
if ( fromUnit.match(/(pt|"|cm|mm|pc|см|мм|пт)$/i)===null || this.options.defaultUnit.match(/(pt|"|cm|mm|pc|см|мм|пт)$/i)===null)
|
2016-03-11 00:48:53 +00:00
|
|
|
return value;
|
|
|
|
|
|
|
|
var v_out = value;
|
|
|
|
// to mm
|
2016-04-06 13:38:54 +00:00
|
|
|
if (fromUnit=='cm' || fromUnit=='см')
|
2016-03-11 00:48:53 +00:00
|
|
|
v_out = v_out*10;
|
2016-04-06 13:38:54 +00:00
|
|
|
else if (fromUnit=='pt' || fromUnit=='пт')
|
2016-03-11 00:48:53 +00:00
|
|
|
v_out = v_out * 25.4 / 72.0;
|
2016-04-06 15:17:40 +00:00
|
|
|
else if (fromUnit=='\"')
|
2016-03-11 00:48:53 +00:00
|
|
|
v_out = v_out * 25.4;
|
|
|
|
else if (fromUnit=='pc')
|
|
|
|
v_out = v_out * 25.4 / 6.0;
|
|
|
|
|
|
|
|
// from mm
|
2016-04-06 13:38:54 +00:00
|
|
|
if (this.options.defaultUnit=='cm' || this.options.defaultUnit=='см')
|
2017-08-10 10:51:14 +00:00
|
|
|
v_out = parseFloat((v_out/10.).toFixed(6));
|
2016-04-06 13:38:54 +00:00
|
|
|
else if (this.options.defaultUnit=='pt' || this.options.defaultUnit=='пт')
|
2016-03-11 00:48:53 +00:00
|
|
|
v_out = parseFloat((v_out * 72.0 / 25.4).toFixed(3));
|
2016-04-06 15:17:40 +00:00
|
|
|
else if (this.options.defaultUnit=='\"')
|
|
|
|
v_out = parseFloat((v_out / 25.4).toFixed(3));
|
2016-03-11 00:48:53 +00:00
|
|
|
else if (this.options.defaultUnit=='pc')
|
2017-08-10 10:51:14 +00:00
|
|
|
v_out = parseFloat((v_out * 6.0 / 25.4).toFixed(6));
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
return v_out;
|
2020-09-26 13:58:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
focus: function() {
|
|
|
|
if (this.$input) this.$input.focus();
|
2020-10-31 16:11:19 +00:00
|
|
|
},
|
|
|
|
|
2020-10-30 18:55:58 +00:00
|
|
|
setDefaultValue: function(value) {
|
|
|
|
this.options.defaultValue = value;
|
|
|
|
},
|
|
|
|
|
2020-10-30 17:15:50 +00:00
|
|
|
checkAutoText: function(value) {
|
|
|
|
if (this.options.allowAuto && typeof value == 'string') {
|
|
|
|
var val = value.toLowerCase();
|
|
|
|
return (val==this.options.autoText.toLowerCase() || val=='auto');
|
|
|
|
}
|
|
|
|
return false;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
});
|
2016-12-21 12:40:22 +00:00
|
|
|
|
|
|
|
Common.UI.CustomSpinner = Common.UI.MetricSpinner.extend(_.extend({
|
|
|
|
initialize : function(options) {
|
|
|
|
this.options.toCustomFormat = (options.toCustomFormat) ? options.toCustomFormat : function(value) { return value; };
|
|
|
|
this.options.fromCustomFormat = (options.fromCustomFormat) ? options.fromCustomFormat : function(value) { return value; };
|
|
|
|
|
|
|
|
Common.UI.MetricSpinner.prototype.initialize.call(this, options);
|
|
|
|
},
|
|
|
|
|
|
|
|
setRawValue: function (value) {
|
|
|
|
if (this.$input) this.$input.val(this.options.toCustomFormat(value));
|
|
|
|
},
|
|
|
|
|
|
|
|
getRawValue: function () {
|
|
|
|
return this.options.fromCustomFormat(this.$input.val());
|
|
|
|
}
|
|
|
|
|
|
|
|
}, Common.UI.CustomSpinner || {}));
|
2016-03-11 00:48:53 +00:00
|
|
|
});
|