mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
230 lines
8.1 KiB
JavaScript
230 lines
8.1 KiB
JavaScript
/*
|
|
* Copyright [2015] [wisemapping]
|
|
*
|
|
* 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.
|
|
*/
|
|
const web2D = require('@wismapping/web2d')
|
|
const web2d = web2D();
|
|
|
|
const Workspace = new Class({
|
|
initialize: function (screenManager, zoom) {
|
|
// Create a suitable container ...
|
|
$assert(screenManager, 'Div container can not be null');
|
|
$assert(zoom, 'zoom container can not be null');
|
|
|
|
this._zoom = zoom;
|
|
this._screenManager = screenManager;
|
|
|
|
var divContainer = screenManager.getContainer();
|
|
this._screenWidth = parseInt(divContainer.css('width'));
|
|
this._screenHeight = parseInt(divContainer.css('height'));
|
|
|
|
// Initialize web2d workspace.
|
|
var workspace = this._createWorkspace();
|
|
this._workspace = workspace;
|
|
|
|
// Append to the workspace...
|
|
workspace.addItAsChildTo(divContainer);
|
|
this.setZoom(zoom, true);
|
|
|
|
// Register drag events ...
|
|
this._registerDragEvents();
|
|
this._eventsEnabled = true;
|
|
},
|
|
|
|
_createWorkspace: function () {
|
|
// Initialize workspace ...
|
|
var coordOriginX = -(this._screenWidth / 2);
|
|
var coordOriginY = -(this._screenHeight / 2);
|
|
|
|
var workspaceProfile = {
|
|
width: this._screenWidth + "px",
|
|
height: this._screenHeight + "px",
|
|
coordSizeWidth: this._screenWidth,
|
|
coordSizeHeight: this._screenHeight,
|
|
coordOriginX: coordOriginX,
|
|
coordOriginY: coordOriginY,
|
|
fillColor: 'transparent',
|
|
strokeWidth: 0
|
|
};
|
|
web2d.Toolkit.init();
|
|
return new web2d.Workspace(workspaceProfile);
|
|
},
|
|
|
|
append: function (shape) {
|
|
if ($defined(shape.addToWorkspace)) {
|
|
shape.addToWorkspace(this);
|
|
} else {
|
|
this._workspace.append(shape);
|
|
}
|
|
},
|
|
|
|
removeChild: function (shape) {
|
|
// Element is a node, not a web2d element?
|
|
if ($defined(shape.removeFromWorkspace)) {
|
|
shape.removeFromWorkspace(this);
|
|
} else {
|
|
this._workspace.removeChild(shape);
|
|
}
|
|
},
|
|
|
|
addEvent: function (type, listener) {
|
|
this._workspace.addEvent(type, listener);
|
|
},
|
|
|
|
removeEvent: function (type, listener) {
|
|
$assert(type, 'type can not be null');
|
|
$assert(listener, 'listener can not be null');
|
|
this._workspace.removeEvent(type, listener);
|
|
},
|
|
|
|
getSize: function () {
|
|
return this._workspace.getCoordSize();
|
|
},
|
|
|
|
setZoom: function (zoom, center) {
|
|
this._zoom = zoom;
|
|
var workspace = this._workspace;
|
|
|
|
// Update coord scale...
|
|
var coordWidth = zoom * this._screenWidth;
|
|
var coordHeight = zoom * this._screenHeight;
|
|
workspace.setCoordSize(coordWidth, coordHeight);
|
|
|
|
// View port coords ...
|
|
if (this._viewPort) {
|
|
this._viewPort.width = this._viewPort.width * zoom;
|
|
this._viewPort.height = this._viewPort.height * zoom;
|
|
}
|
|
|
|
// Center topic....
|
|
var coordOriginX;
|
|
var coordOriginY;
|
|
|
|
if (center) {
|
|
if (this._viewPort) {
|
|
coordOriginX = -(this._viewPort.width / 2);
|
|
coordOriginY = -(this._viewPort.height / 2);
|
|
} else {
|
|
coordOriginX = -(coordWidth / 2);
|
|
coordOriginY = -(coordHeight / 2);
|
|
}
|
|
} else {
|
|
var coordOrigin = workspace.getCoordOrigin();
|
|
coordOriginX = coordOrigin.x;
|
|
coordOriginY = coordOrigin.y;
|
|
}
|
|
|
|
workspace.setCoordOrigin(coordOriginX, coordOriginY);
|
|
|
|
// Update screen.
|
|
this._screenManager.setOffset(coordOriginX, coordOriginY);
|
|
this._screenManager.setScale(zoom);
|
|
|
|
// Some changes in the screen. Let's fire an update event...
|
|
this._screenManager.fireEvent('update');
|
|
},
|
|
|
|
getScreenManager: function () {
|
|
return this._screenManager;
|
|
},
|
|
|
|
enableWorkspaceEvents: function (value) {
|
|
this._eventsEnabled = value;
|
|
},
|
|
|
|
isWorkspaceEventsEnabled: function () {
|
|
return this._eventsEnabled;
|
|
},
|
|
|
|
dumpNativeChart: function () {
|
|
return this._workspace.dumpNativeChart();
|
|
},
|
|
|
|
_registerDragEvents: function () {
|
|
var workspace = this._workspace;
|
|
var screenManager = this._screenManager;
|
|
var mWorkspace = this;
|
|
var mouseDownListener = function (event) {
|
|
if (!$defined(workspace._mouseMoveListener)) {
|
|
if (mWorkspace.isWorkspaceEventsEnabled()) {
|
|
mWorkspace.enableWorkspaceEvents(false);
|
|
|
|
var mouseDownPosition = screenManager.getWorkspaceMousePosition(event);
|
|
var originalCoordOrigin = workspace.getCoordOrigin();
|
|
|
|
var wasDragged = false;
|
|
workspace._mouseMoveListener = function (event) {
|
|
|
|
var currentMousePosition = screenManager.getWorkspaceMousePosition(event);
|
|
|
|
var offsetX = currentMousePosition.x - mouseDownPosition.x;
|
|
var coordOriginX = -offsetX + originalCoordOrigin.x;
|
|
|
|
var offsetY = currentMousePosition.y - mouseDownPosition.y;
|
|
var coordOriginY = -offsetY + originalCoordOrigin.y;
|
|
|
|
workspace.setCoordOrigin(coordOriginX, coordOriginY);
|
|
|
|
// Change cursor.
|
|
if (Browser.firefox) {
|
|
window.document.body.style.cursor = "-moz-grabbing";
|
|
} else {
|
|
window.document.body.style.cursor = "move";
|
|
}
|
|
event.preventDefault();
|
|
|
|
// Fire drag event ...
|
|
screenManager.fireEvent('update');
|
|
wasDragged = true;
|
|
|
|
|
|
};
|
|
screenManager.addEvent('mousemove', workspace._mouseMoveListener);
|
|
|
|
// Register mouse up listeners ...
|
|
workspace._mouseUpListener = function (event) {
|
|
|
|
screenManager.removeEvent('mousemove', workspace._mouseMoveListener);
|
|
screenManager.removeEvent('mouseup', workspace._mouseUpListener);
|
|
workspace._mouseUpListener = null;
|
|
workspace._mouseMoveListener = null;
|
|
window.document.body.style.cursor = 'default';
|
|
|
|
// Update screen manager offset.
|
|
var coordOrigin = workspace.getCoordOrigin();
|
|
screenManager.setOffset(coordOrigin.x, coordOrigin.y);
|
|
mWorkspace.enableWorkspaceEvents(true);
|
|
|
|
if (!wasDragged) {
|
|
screenManager.fireEvent('click');
|
|
}
|
|
};
|
|
screenManager.addEvent('mouseup', workspace._mouseUpListener);
|
|
}
|
|
} else {
|
|
workspace._mouseUpListener();
|
|
}
|
|
};
|
|
screenManager.addEvent('mousedown', mouseDownListener);
|
|
},
|
|
|
|
setViewPort: function (size) {
|
|
this._viewPort = size;
|
|
}
|
|
});
|
|
|
|
export default Workspace;
|