1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-27 07:45:08 +02:00
keeweb/app/scripts/mixins/resizable.js

72 lines
2.2 KiB
JavaScript
Raw Normal View History

2015-10-17 23:49:24 +02:00
'use strict';
var Backbone = require('backbone');
var Resizable = {
listenDrag: function(dragView) {
this.listenTo(dragView, 'dragstart', this.dragStart);
this.listenTo(dragView, 'drag', this.drag);
this.listenTo(dragView, 'autosize', this.autoSize);
},
dragStart: function(e) {
this._dragInfo = this.getDragInfo(e.coord);
},
drag: function(e) {
var dragInfo = this._dragInfo;
var size = dragInfo.startSize + e.offset;
size = Math.max(dragInfo.min, Math.min(dragInfo.max, size));
this.$el[dragInfo.prop](size);
2015-11-11 19:58:29 +01:00
this.trigger('view-resize', size);
2015-10-17 23:49:24 +02:00
Backbone.trigger('page-geometry', { source: 'resizable' });
},
autoSize: function(e) {
var dragInfo = this.getDragInfo(e.coord);
if (dragInfo.auto !== undefined) {
this.$el.css(dragInfo.prop, dragInfo.auto);
} else {
this.$el.css(dragInfo.prop, 'auto');
}
this.fixSize(dragInfo);
2015-11-11 19:58:29 +01:00
this.trigger('view-resize', null);
2015-10-17 23:49:24 +02:00
Backbone.trigger('page-geometry', { source: 'resizable' });
},
fixSize: function(cfg) {
var size = this.$el[cfg.prop]();
var newSize = Math.max(cfg.min, Math.min(cfg.max, size));
if (newSize !== size) {
this.$el[cfg.prop](size);
}
},
// TODO: check size on window resize
//checkSize: function() {
// if (this.maxWidth) {
// this.fixSize(this.getDragInfo('x'));
// }
// if (this.maxHeight) {
// this.fixSize(this.getDragInfo('y'));
// }
//},
getDragInfo: function(coord) {
var prop = coord === 'x' ? 'Width' : 'Height',
propLower = prop.toLowerCase(),
min = this.getSizeProp('min' + prop),
max = this.getSizeProp('max' + prop),
auto = this.getSizeProp('auto' + prop) || 'auto',
startSize = this.$el[propLower]();
return { startSize: startSize, prop: propLower, min: min, max: max, auto: auto };
},
getSizeProp: function(prop) {
var member = this[prop];
return typeof member === 'function' ? member.call(this) : member;
}
};
module.exports = Resizable;