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
|
|
|
/**
|
|
|
|
* DimensionPicker.js
|
|
|
|
*
|
|
|
|
* Created by Alexander Yuzhin on 1/29/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
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (Common === undefined)
|
|
|
|
var Common = {};
|
|
|
|
|
|
|
|
define([
|
|
|
|
'common/main/lib/component/BaseView'
|
|
|
|
], function () {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
Common.UI.DimensionPicker = Common.UI.BaseView.extend((function(){
|
|
|
|
return {
|
|
|
|
options: {
|
|
|
|
itemSize : 18,
|
|
|
|
minRows : 5,
|
|
|
|
minColumns : 5,
|
|
|
|
maxRows : 20,
|
|
|
|
maxColumns : 20
|
|
|
|
},
|
|
|
|
|
|
|
|
template:_.template([
|
|
|
|
'<div style="width: 100%; height: 100%;">',
|
|
|
|
'<div class="dimension-picker-status">0x0</div>',
|
|
|
|
'<div class="dimension-picker-observecontainer">',
|
|
|
|
'<div class="dimension-picker-mousecatcher"></div>',
|
|
|
|
'<div class="dimension-picker-unhighlighted"></div>',
|
|
|
|
'<div class="dimension-picker-highlighted"></div>',
|
|
|
|
'</div>',
|
|
|
|
'</div>'
|
|
|
|
].join('')),
|
|
|
|
|
|
|
|
initialize : function(options) {
|
|
|
|
Common.UI.BaseView.prototype.initialize.call(this, options);
|
|
|
|
|
2019-11-27 08:17:15 +00:00
|
|
|
var me = this;
|
|
|
|
|
|
|
|
this.render();
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2019-11-27 08:17:15 +00:00
|
|
|
this.cmpEl = me.$el || $(this.el);
|
|
|
|
|
|
|
|
var rootEl = this.cmpEl;
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
me.itemSize = me.options.itemSize;
|
|
|
|
me.minRows = me.options.minRows;
|
|
|
|
me.minColumns = me.options.minColumns;
|
|
|
|
me.maxRows = me.options.maxRows;
|
|
|
|
me.maxColumns = me.options.maxColumns;
|
|
|
|
|
2019-11-27 08:17:15 +00:00
|
|
|
me.curColumns = 0;
|
|
|
|
me.curRows = 0;
|
|
|
|
|
|
|
|
var onMouseMove = function(event){
|
|
|
|
me.setTableSize(
|
|
|
|
Math.ceil((event.offsetX === undefined ? event.originalEvent.layerX : event.offsetX*Common.Utils.zoom()) / me.itemSize),
|
|
|
|
Math.ceil((event.offsetY === undefined ? event.originalEvent.layerY : event.offsetY*Common.Utils.zoom()) / me.itemSize),
|
|
|
|
event
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
var onMouseLeave = function(event){
|
|
|
|
me.setTableSize(0, 0, event);
|
|
|
|
};
|
|
|
|
|
|
|
|
var onHighLightedMouseClick = function(e){
|
|
|
|
me.trigger('select', me, me.curColumns, me.curRows, e);
|
|
|
|
};
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
if (rootEl){
|
2019-11-27 08:17:15 +00:00
|
|
|
var areaMouseCatcher = rootEl.find('.dimension-picker-mousecatcher');
|
|
|
|
me.areaUnHighLighted = rootEl.find('.dimension-picker-unhighlighted');
|
|
|
|
me.areaHighLighted = rootEl.find('.dimension-picker-highlighted');
|
|
|
|
me.areaStatus = rootEl.find('.dimension-picker-status');
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
rootEl.css({width: me.minColumns + 'em'});
|
|
|
|
areaMouseCatcher.css('z-index', 1);
|
|
|
|
areaMouseCatcher.width(me.maxColumns + 'em').height(me.maxRows + 'em');
|
2019-11-27 08:17:15 +00:00
|
|
|
me.areaUnHighLighted.width(me.minColumns + 'em').height(me.minRows + 'em');
|
|
|
|
me.areaStatus.html(me.curColumns + ' x ' + me.curRows);
|
|
|
|
me.areaStatus.width(me.areaUnHighLighted.width());
|
|
|
|
|
|
|
|
areaMouseCatcher.on('mousemove', onMouseMove);
|
|
|
|
me.areaHighLighted.on('mousemove', onMouseMove);
|
|
|
|
me.areaUnHighLighted.on('mousemove', onMouseMove);
|
|
|
|
areaMouseCatcher.on('mouseleave', onMouseLeave);
|
|
|
|
me.areaHighLighted.on('mouseleave', onMouseLeave);
|
|
|
|
me.areaUnHighLighted.on('mouseleave', onMouseLeave);
|
|
|
|
areaMouseCatcher.on('click', onHighLightedMouseClick);
|
|
|
|
me.areaHighLighted.on('click', onHighLightedMouseClick);
|
|
|
|
me.areaUnHighLighted.on('click', onHighLightedMouseClick);
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2019-07-29 11:24:20 +00:00
|
|
|
(this.$el || $(this.el)).html(this.template());
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setTableSize: function(columns, rows, event){
|
|
|
|
if (columns > this.maxColumns) columns = this.maxColumns;
|
|
|
|
if (rows > this.maxRows) rows = this.maxRows;
|
|
|
|
|
2019-11-27 08:17:15 +00:00
|
|
|
if (this.curColumns != columns || this.curRows != rows){
|
|
|
|
this.curColumns = columns;
|
|
|
|
this.curRows = rows;
|
|
|
|
|
|
|
|
this.areaHighLighted.width(this.curColumns + 'em').height(this.curRows + 'em');
|
|
|
|
this.areaUnHighLighted.width(
|
|
|
|
((this.curColumns < this.minColumns)
|
|
|
|
? this.minColumns
|
|
|
|
: ((this.curColumns + 1 > this.maxColumns)
|
|
|
|
? this.maxColumns
|
|
|
|
: this.curColumns + 1)) + 'em'
|
|
|
|
).height(((this.curRows < this.minRows)
|
|
|
|
? this.minRows
|
|
|
|
: ((this.curRows + 1 > this.maxRows)
|
|
|
|
? this.maxRows
|
|
|
|
: this.curRows + 1)) + 'em'
|
2016-03-11 00:48:53 +00:00
|
|
|
);
|
|
|
|
|
2019-11-27 08:17:15 +00:00
|
|
|
this.cmpEl.width(this.areaUnHighLighted.width());
|
|
|
|
this.areaStatus.html(this.curColumns + ' x ' + this.curRows);
|
|
|
|
this.areaStatus.width(this.areaUnHighLighted.width());
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2019-11-27 08:17:15 +00:00
|
|
|
this.trigger('change', this, this.curColumns, this.curRows, event);
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
getColumnsCount: function() {
|
2019-11-27 08:17:15 +00:00
|
|
|
return this.curColumns;
|
2016-03-11 00:48:53 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
getRowsCount: function() {
|
2019-11-27 08:17:15 +00:00
|
|
|
return this.curRows;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})())
|
|
|
|
});
|