/* * * (c) Copyright Ascensio System SIA 2010-2019 * * 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 * * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha * street, Riga, Latvia, EU, LV-1050. * * 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 * */ /** * Slider.js * * Created by Julia Radzhabova on 2/18/14 * Copyright (c) 2018 Ascensio System SIA. All rights reserved. * */ /** * Example usage: * new Common.UI.SingleSlider({ * el: $('#id'), * minValue : 0, * maxValue : 100, * value : 100 * }); * * * @property {Boolean} enableKeyEvents * If true slider increase/decrease its value by {@link #step} when arrow key Up/Down or Right/Left is pressed. * * enableKeyEvents: false, * * * * Example usage: * new Common.UI.MultiSlider({ * el: $('#id'), * minValue : 0, * maxValue : 100, * values : [0, 100] * }); * */ if (Common === undefined) var Common = {}; define([ 'common/main/lib/component/BaseView', 'underscore' ], function (base, _) { 'use strict'; Common.UI.SingleSlider = Common.UI.BaseView.extend({ options : { width: 100, minValue: 0, maxValue: 100, step: 1, value: 100, enableKeyEvents: false }, disabled: false, template : _.template([ '
' ].join('')), initialize : function(options) { Common.UI.BaseView.prototype.initialize.call(this, options); var me = this; me.width = me.options.width; me.minValue = me.options.minValue; me.maxValue = me.options.maxValue; me.delta = 100/(me.maxValue - me.minValue); me.step = me.options.step; if (me.options.el) { me.render(); } this.setValue(me.options.value); }, render : function(parentEl) { var me = this; if (!me.rendered) { this.cmpEl = $(this.template({ })); if (parentEl) { this.setElement(parentEl, false); parentEl.html(this.cmpEl); } else { me.$el.html(this.cmpEl); } } else { this.cmpEl = me.$el; } this.cmpEl.find('.track-center').width(me.options.width - 14); this.cmpEl.width(me.options.width); this.thumb = this.cmpEl.find('.thumb'); var onMouseUp = function (e) { e.preventDefault(); e.stopPropagation(); var pos = Math.max(0, Math.min(100, (Math.round((e.pageX*Common.Utils.zoom() - me.cmpEl.offset().left - me._dragstart) / me.width * 100)))); me.setThumbPosition(pos); me.lastValue = me.value; me.value = pos/me.delta + me.minValue; me.thumb.removeClass('active'); $(document).off('mouseup', onMouseUp); $(document).off('mousemove', onMouseMove); me._dragstart = undefined; me.trigger('changecomplete', me, me.value, me.lastValue); }; var onMouseMove = function (e) { if ( me.disabled ) return; if ( me._dragstart===undefined ) return; e.preventDefault(); e.stopPropagation(); var pos = Math.max(0, Math.min(100, (Math.round((e.pageX*Common.Utils.zoom() - me.cmpEl.offset().left - me._dragstart) / me.width * 100)))); me.setThumbPosition(pos); me.lastValue = me.value; me.value = pos/me.delta + me.minValue; if (Math.abs(me.value-me.lastValue)>0.001) me.trigger('change', me, me.value, me.lastValue); }; var onMouseDown = function (e) { if ( me.disabled ) return; me._dragstart = e.pageX*Common.Utils.zoom() - me.thumb.offset().left - 7; me.thumb.addClass('active'); $(document).on('mouseup', onMouseUp); $(document).on('mousemove', onMouseMove); if (me.options.enableKeyEvents) setTimeout(function() {me.input.focus();}, 10); }; var onTrackMouseDown = function (e) { if ( me.disabled ) return; var pos = Math.max(0, Math.min(100, (Math.round((e.pageX*Common.Utils.zoom() - me.cmpEl.offset().left) / me.width * 100)))); me.setThumbPosition(pos); me.lastValue = me.value; me.value = pos/me.delta + me.minValue; me.trigger('change', me, me.value, me.lastValue); me.trigger('changecomplete', me, me.value, me.lastValue); }; var updateslider; var moveThumb = function(increase) { me.lastValue = me.value; me.value = Math.max(me.minValue, Math.min(me.maxValue, me.value + ((increase) ? me.step : -me.step))); me.setThumbPosition(Math.round((me.value-me.minValue)*me.delta)); me.trigger('change', me, me.value, me.lastValue); }; var onKeyDown = function (e) { if ( me.disabled ) return; if (e.keyCode==Common.UI.Keys.UP || e.keyCode==Common.UI.Keys.DOWN || e.keyCode==Common.UI.Keys.LEFT || e.keyCode==Common.UI.Keys.RIGHT) { e.preventDefault(); e.stopPropagation(); el.off('keydown', 'input', onKeyDown); updateslider = setInterval(_.bind(moveThumb, me, e.keyCode==Common.UI.Keys.UP || e.keyCode==Common.UI.Keys.RIGHT), 100); } }; var onKeyUp = function (e) { if ( me.disabled ) return; if (e.keyCode==Common.UI.Keys.UP || e.keyCode==Common.UI.Keys.DOWN || Common.UI.Keys.LEFT || Common.UI.Keys.RIGHT) { e.stopPropagation(); e.preventDefault(); clearInterval(updateslider); moveThumb(e.keyCode==Common.UI.Keys.UP || e.keyCode==Common.UI.Keys.RIGHT); el.on('keydown', 'input', onKeyDown); me.trigger('changecomplete', me, me.value, me.lastValue); } }; if (!me.rendered) { var el = me.cmpEl; el.on('mousedown', '.thumb', onMouseDown); el.on('mousedown', '.track', onTrackMouseDown); if (this.options.enableKeyEvents) { el.on('keydown', 'input', onKeyDown); el.on('keyup', 'input', onKeyUp); } } me.rendered = true; return this; }, setThumbPosition: function(x) { this.thumb.css({left: x + '%'}); }, setValue: function(value) { this.lastValue = this.value; this.value = Math.max(this.minValue, Math.min(this.maxValue, value)); this.setThumbPosition(Math.round((value-this.minValue)*this.delta)); }, getValue: function() { return this.value; }, setDisabled: function(disabled) { if (disabled !== this.disabled) this.cmpEl.toggleClass('disabled', disabled); this.disabled = disabled; } }); Common.UI.MultiSlider = Common.UI.BaseView.extend({ options : { width: 100, minValue: 0, maxValue: 100, values: [0, 100], thumbTemplate: '' }, disabled: false, template : _.template([ ' ' ].join('')), initialize : function(options) { Common.UI.BaseView.prototype.initialize.call(this, options); var me = this; me.width = me.options.width; me.minValue = me.options.minValue; me.maxValue = me.options.maxValue; me.delta = 100/(me.maxValue - me.minValue); me.thumbs = []; if (me.options.el) { me.render(); } }, render : function(parentEl) { var me = this; if (!me.rendered) { this.cmpEl = $(this.template({ items: this.options.values, thumbTemplate: this.options.thumbTemplate })); if (parentEl) { this.setElement(parentEl, false); parentEl.html(this.cmpEl); } else { this.$el.html(this.cmpEl); } } else { this.cmpEl = this.$el; } var el = this.cmpEl; el.find('.track-center').width(me.options.width - 14); el.width(me.options.width); var onMouseUp = function (e) { e.preventDefault(); e.stopPropagation(); var index = e.data.index, lastValue = me.thumbs[index].value, minValue = (index-1<0) ? 0 : me.thumbs[index-1].position, maxValue = (index+1