2021-07-16 16:41:58 +02:00
|
|
|
/*
|
2021-12-25 23:39:34 +01:00
|
|
|
* Copyright [2021] [wisemapping]
|
2021-07-16 16:41:58 +02:00
|
|
|
*
|
|
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
|
|
|
* "powered by wisemapping" text requirement on every single page;
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the license at
|
|
|
|
*
|
|
|
|
* http://www.wisemapping.org/license
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2021-12-03 19:58:25 +01:00
|
|
|
import { $assert } from '@wisemapping/core-js';
|
2021-12-19 17:31:29 +01:00
|
|
|
import { Point } from '@wisemapping/web2d';
|
2022-01-25 07:09:30 +01:00
|
|
|
import Topic from './Topic';
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-12-03 19:58:25 +01:00
|
|
|
class ScreenManager {
|
2022-01-10 19:52:11 +01:00
|
|
|
private _divContainer: JQuery;
|
2022-01-13 17:13:05 +01:00
|
|
|
|
2022-01-10 19:52:11 +01:00
|
|
|
private _padding: { x: number; y: number; };
|
2022-01-13 17:13:05 +01:00
|
|
|
|
2022-01-31 01:05:22 +01:00
|
|
|
private _clickEvents;
|
2022-01-13 17:13:05 +01:00
|
|
|
|
2022-01-10 19:52:11 +01:00
|
|
|
private _scale: number;
|
2022-01-09 19:43:04 +01:00
|
|
|
|
|
|
|
constructor(divElement: JQuery) {
|
2021-10-05 02:05:34 +02:00
|
|
|
$assert(divElement, 'can not be null');
|
|
|
|
this._divContainer = divElement;
|
|
|
|
this._padding = { x: 0, y: 0 };
|
|
|
|
|
|
|
|
// Ignore default click event propagation. Prevent 'click' event on drag.
|
|
|
|
this._clickEvents = [];
|
2022-01-09 19:43:04 +01:00
|
|
|
this._divContainer.bind('click', (event: { stopPropagation: () => void; }) => {
|
2021-10-05 02:05:34 +02:00
|
|
|
event.stopPropagation();
|
|
|
|
});
|
|
|
|
|
2022-01-09 19:43:04 +01:00
|
|
|
this._divContainer.bind('dblclick', (event: { stopPropagation: () => void; preventDefault: () => void; }) => {
|
2021-10-05 02:05:34 +02:00
|
|
|
event.stopPropagation();
|
|
|
|
event.preventDefault();
|
|
|
|
});
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-10-05 02:05:34 +02:00
|
|
|
|
2022-01-10 19:52:11 +01:00
|
|
|
/**
|
|
|
|
* Return the current visibile area in the browser.
|
|
|
|
*/
|
2022-01-25 07:09:30 +01:00
|
|
|
getVisibleBrowserSize(): { width: number, height: number } {
|
2022-01-10 19:52:11 +01:00
|
|
|
return {
|
|
|
|
width: window.innerWidth,
|
2022-01-10 21:12:15 +01:00
|
|
|
height: window.innerHeight - Number.parseInt(this._divContainer.css('top'), 10),
|
2022-01-13 17:13:05 +01:00
|
|
|
};
|
2022-01-10 19:52:11 +01:00
|
|
|
}
|
|
|
|
|
2022-01-09 19:43:04 +01:00
|
|
|
setScale(scale: number) {
|
2021-10-05 02:05:34 +02:00
|
|
|
$assert(scale, 'Screen scale can not be null');
|
|
|
|
this._scale = scale;
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-10-05 02:05:34 +02:00
|
|
|
|
2022-01-31 01:05:22 +01:00
|
|
|
addEvent(eventType: string, listener) {
|
2022-01-09 19:43:04 +01:00
|
|
|
if (eventType === 'click') this._clickEvents.push(listener);
|
|
|
|
else this._divContainer.bind(eventType, listener);
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-10-05 02:05:34 +02:00
|
|
|
|
2022-01-31 01:05:22 +01:00
|
|
|
removeEvent(event: string, listener) {
|
2021-12-02 01:41:56 +01:00
|
|
|
if (event === 'click') {
|
2021-10-05 02:05:34 +02:00
|
|
|
this._clickEvents.remove(listener);
|
|
|
|
} else {
|
|
|
|
this._divContainer.unbind(event, listener);
|
|
|
|
}
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-10-05 02:05:34 +02:00
|
|
|
|
2022-01-09 19:43:04 +01:00
|
|
|
fireEvent(type: string, event: UIEvent = null) {
|
2021-12-02 01:41:56 +01:00
|
|
|
if (type === 'click') {
|
2022-01-09 19:43:04 +01:00
|
|
|
this._clickEvents.forEach((listener: (arg0: any, arg1: any) => void) => {
|
2021-10-05 02:05:34 +02:00
|
|
|
listener(type, event);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this._divContainer.trigger(type, event);
|
|
|
|
}
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-10-05 02:05:34 +02:00
|
|
|
|
2022-01-25 07:09:30 +01:00
|
|
|
private _getElementPosition(elem: Topic) {
|
2021-10-05 02:05:34 +02:00
|
|
|
// Retrieve current element position.
|
|
|
|
const elementPosition = elem.getPosition();
|
|
|
|
let { x } = elementPosition;
|
|
|
|
let { y } = elementPosition;
|
|
|
|
|
|
|
|
// Add workspace offset.
|
|
|
|
x -= this._padding.x;
|
|
|
|
y -= this._padding.y;
|
|
|
|
|
|
|
|
// Scale coordinate in order to be relative to the workspace. That's coord/size;
|
|
|
|
x /= this._scale;
|
|
|
|
y /= this._scale;
|
|
|
|
|
|
|
|
// Remove decimal part..
|
|
|
|
return { x, y };
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-10-05 02:05:34 +02:00
|
|
|
|
2022-01-09 19:43:04 +01:00
|
|
|
getWorkspaceIconPosition(e: { getImage: () => any; getSize: () => any; getGroup: () => any; }) {
|
2021-10-05 02:05:34 +02:00
|
|
|
// Retrieve current icon position.
|
|
|
|
const image = e.getImage();
|
|
|
|
const elementPosition = image.getPosition();
|
|
|
|
const imageSize = e.getSize();
|
|
|
|
|
|
|
|
// Add group offset
|
|
|
|
const iconGroup = e.getGroup();
|
|
|
|
const group = iconGroup.getNativeElement();
|
|
|
|
const coordOrigin = group.getCoordOrigin();
|
|
|
|
const groupSize = group.getSize();
|
|
|
|
const coordSize = group.getCoordSize();
|
|
|
|
|
2021-12-02 01:41:56 +01:00
|
|
|
const scale = {
|
|
|
|
x: coordSize.width / parseInt(groupSize.width, 10),
|
|
|
|
y: coordSize.height / parseInt(groupSize.height, 10),
|
|
|
|
};
|
2021-10-05 02:05:34 +02:00
|
|
|
|
2021-12-02 01:41:56 +01:00
|
|
|
let x = (elementPosition.x - coordOrigin.x - parseInt(imageSize.width, 10) / 2) / scale.x;
|
|
|
|
let y = (elementPosition.y - coordOrigin.y - parseInt(imageSize.height, 10) / 2) / scale.y;
|
2021-10-05 02:05:34 +02:00
|
|
|
|
|
|
|
// Retrieve iconGroup Position
|
|
|
|
const groupPosition = iconGroup.getPosition();
|
|
|
|
x += groupPosition.x;
|
|
|
|
y += groupPosition.y;
|
|
|
|
|
|
|
|
// Retrieve topic Position
|
|
|
|
const topic = iconGroup.getTopic();
|
|
|
|
const topicPosition = this._getElementPosition(topic);
|
2021-12-02 01:41:56 +01:00
|
|
|
topicPosition.x -= parseInt(topic.getSize().width, 10) / 2;
|
2021-10-05 02:05:34 +02:00
|
|
|
|
|
|
|
// Remove decimal part..
|
|
|
|
return { x: x + topicPosition.x, y: y + topicPosition.y };
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-10-05 02:05:34 +02:00
|
|
|
|
2022-01-09 19:43:04 +01:00
|
|
|
getWorkspaceMousePosition(event: MouseEvent) {
|
2021-10-05 02:05:34 +02:00
|
|
|
// Retrieve current mouse position.
|
|
|
|
let x = event.clientX;
|
|
|
|
let y = event.clientY;
|
|
|
|
|
2022-01-09 19:43:04 +01:00
|
|
|
// Adjust the deviation of the container positioning ...
|
|
|
|
const containerPosition = this.getContainer().position();
|
2022-01-13 17:13:05 +01:00
|
|
|
x -= containerPosition.left;
|
|
|
|
y -= containerPosition.top;
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-10-05 02:05:34 +02:00
|
|
|
// Scale coordinate in order to be relative to the workspace. That's coordSize/size;
|
|
|
|
x *= this._scale;
|
|
|
|
y *= this._scale;
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-10-05 02:05:34 +02:00
|
|
|
// Add workspace offset.
|
|
|
|
x += this._padding.x;
|
|
|
|
y += this._padding.y;
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-10-05 02:05:34 +02:00
|
|
|
// Remove decimal part..
|
2021-12-19 17:31:29 +01:00
|
|
|
return new Point(x, y);
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-10-05 02:05:34 +02:00
|
|
|
getContainer() {
|
|
|
|
return this._divContainer;
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2022-01-09 19:43:04 +01:00
|
|
|
setOffset(x: number, y: number) {
|
2021-10-05 02:05:34 +02:00
|
|
|
this._padding.x = x;
|
|
|
|
this._padding.y = y;
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
|
|
|
}
|
2021-07-16 16:41:58 +02:00
|
|
|
|
|
|
|
export default ScreenManager;
|