2018-10-17 09:38:25 +00:00
|
|
|
/*
|
|
|
|
Copyright 2018 New Vector Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2018-10-16 13:16:10 +00:00
|
|
|
import {Sizer} from "./sizer";
|
|
|
|
|
|
|
|
/*
|
|
|
|
classNames:
|
|
|
|
// class on resize-handle
|
|
|
|
handle: string
|
|
|
|
// class on resize-handle
|
|
|
|
reverse: string
|
|
|
|
// class on resize-handle
|
|
|
|
vertical: string
|
|
|
|
// class on container
|
|
|
|
resizing: string
|
|
|
|
*/
|
|
|
|
|
|
|
|
export class Resizer {
|
|
|
|
constructor(container, distributorCtor, distributorCfg, sizerCtor = Sizer) {
|
|
|
|
this.container = container;
|
|
|
|
this.distributorCtor = distributorCtor;
|
|
|
|
this.distributorCfg = distributorCfg;
|
|
|
|
this.sizerCtor = sizerCtor;
|
|
|
|
this.classNames = {
|
|
|
|
handle: "resizer-handle",
|
|
|
|
reverse: "resizer-reverse",
|
|
|
|
vertical: "resizer-vertical",
|
|
|
|
resizing: "resizer-resizing",
|
|
|
|
};
|
2018-10-19 13:15:49 +00:00
|
|
|
this._onMouseDown = this._onMouseDown.bind(this);
|
2018-10-16 13:16:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setClassNames(classNames) {
|
|
|
|
this.classNames = classNames;
|
|
|
|
}
|
|
|
|
|
|
|
|
attach() {
|
2018-10-19 13:15:49 +00:00
|
|
|
this.container.addEventListener("mousedown", this._onMouseDown, false);
|
2018-10-16 13:16:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
detach() {
|
2018-10-19 13:15:49 +00:00
|
|
|
this.container.removeEventListener("mousedown", this._onMouseDown, false);
|
2018-10-16 13:16:10 +00:00
|
|
|
}
|
|
|
|
|
2018-10-17 11:45:56 +00:00
|
|
|
/**
|
|
|
|
Gives the distributor for a specific resize handle, as if you would have started
|
|
|
|
to drag that handle. Can be used to manipulate the size of an item programmatically.
|
|
|
|
@param {number} handleIndex the index of the resize handle in the container
|
|
|
|
@return {Distributor} a new distributor for the given handle
|
|
|
|
*/
|
2018-10-16 15:22:12 +00:00
|
|
|
forHandleAt(handleIndex) {
|
|
|
|
const handles = this._getResizeHandles();
|
|
|
|
const handle = handles[handleIndex];
|
2018-11-26 15:46:27 +00:00
|
|
|
if (handle) {
|
|
|
|
const {distributor} = this._createSizerAndDistributor(handle);
|
|
|
|
return distributor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
forHandleWithId(id) {
|
|
|
|
const handles = this._getResizeHandles();
|
|
|
|
const handle = handles.find((h) => h.getAttribute("data-id") === id);
|
|
|
|
if (handle) {
|
|
|
|
const {distributor} = this._createSizerAndDistributor(handle);
|
|
|
|
return distributor;
|
|
|
|
}
|
2018-10-16 15:22:12 +00:00
|
|
|
}
|
|
|
|
|
2018-10-16 13:16:10 +00:00
|
|
|
_isResizeHandle(el) {
|
|
|
|
return el && el.classList.contains(this.classNames.handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onMouseDown(event) {
|
|
|
|
const target = event.target;
|
|
|
|
if (!this._isResizeHandle(target) || target.parentElement !== this.container) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// prevent starting a drag operation
|
|
|
|
event.preventDefault();
|
2018-11-26 15:46:27 +00:00
|
|
|
|
2018-10-16 13:16:10 +00:00
|
|
|
// mark as currently resizing
|
|
|
|
if (this.classNames.resizing) {
|
|
|
|
this.container.classList.add(this.classNames.resizing);
|
|
|
|
}
|
|
|
|
|
2018-10-16 15:22:12 +00:00
|
|
|
const {sizer, distributor} = this._createSizerAndDistributor(target);
|
2018-10-16 13:16:10 +00:00
|
|
|
|
|
|
|
const onMouseMove = (event) => {
|
|
|
|
const offset = sizer.offsetFromEvent(event);
|
2018-11-26 15:42:58 +00:00
|
|
|
distributor.resizeFromContainerOffset(offset);
|
2018-10-16 13:16:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const body = document.body;
|
|
|
|
const onMouseUp = (event) => {
|
|
|
|
if (this.classNames.resizing) {
|
|
|
|
this.container.classList.remove(this.classNames.resizing);
|
|
|
|
}
|
|
|
|
body.removeEventListener("mouseup", onMouseUp, false);
|
|
|
|
body.removeEventListener("mousemove", onMouseMove, false);
|
|
|
|
};
|
|
|
|
body.addEventListener("mouseup", onMouseUp, false);
|
|
|
|
body.addEventListener("mousemove", onMouseMove, false);
|
|
|
|
}
|
2018-10-16 14:25:00 +00:00
|
|
|
|
2018-10-16 15:22:12 +00:00
|
|
|
_createSizerAndDistributor(resizeHandle) {
|
|
|
|
const vertical = resizeHandle.classList.contains(this.classNames.vertical);
|
|
|
|
const reverse = resizeHandle.classList.contains(this.classNames.reverse);
|
|
|
|
|
2018-10-17 11:36:15 +00:00
|
|
|
// eslint-disable-next-line new-cap
|
2018-10-16 15:22:12 +00:00
|
|
|
const sizer = new this.sizerCtor(this.container, vertical, reverse);
|
|
|
|
|
|
|
|
const items = this._getResizableItems();
|
|
|
|
const prevItem = resizeHandle.previousElementSibling;
|
|
|
|
// if reverse, resize the item after the handle instead of before, so + 1
|
|
|
|
const itemIndex = items.indexOf(prevItem) + (reverse ? 1 : 0);
|
|
|
|
const item = items[itemIndex];
|
2018-11-26 15:46:27 +00:00
|
|
|
const id = resizeHandle.getAttribute("data-id");
|
2018-10-17 11:36:15 +00:00
|
|
|
// eslint-disable-next-line new-cap
|
2018-10-16 15:22:12 +00:00
|
|
|
const distributor = new this.distributorCtor(
|
2018-11-26 15:46:27 +00:00
|
|
|
sizer, item, id, this.distributorCfg,
|
2018-10-16 15:22:12 +00:00
|
|
|
items, this.container);
|
|
|
|
return {sizer, distributor};
|
|
|
|
}
|
|
|
|
|
2018-10-16 14:25:00 +00:00
|
|
|
_getResizableItems() {
|
|
|
|
return Array.from(this.container.children).filter(el => {
|
|
|
|
return !this._isResizeHandle(el) && (
|
|
|
|
this._isResizeHandle(el.previousElementSibling) ||
|
|
|
|
this._isResizeHandle(el.nextElementSibling));
|
|
|
|
});
|
|
|
|
}
|
2018-10-16 15:22:12 +00:00
|
|
|
|
|
|
|
_getResizeHandles() {
|
|
|
|
return Array.from(this.container.children).filter(el => {
|
|
|
|
return this._isResizeHandle(el);
|
|
|
|
});
|
|
|
|
}
|
2018-10-16 13:16:10 +00:00
|
|
|
}
|