mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-14 03:07:57 +01:00
84 lines
2.1 KiB
JavaScript
84 lines
2.1 KiB
JavaScript
/* eslint-disable import/prefer-default-export */
|
|
// eslint-disable-next-line import/prefer-default-export
|
|
import PolyLine from '../../../src/components/PolyLine';
|
|
import Ellipse from '../../../src/components/Ellipse';
|
|
import Workspace from '../../../src/components/Workspace';
|
|
|
|
export const createPolyline = ({
|
|
backgroundColor: fillColor,
|
|
strokeColor,
|
|
strokeWidth,
|
|
strokeStyle,
|
|
style,
|
|
}) => {
|
|
const divElem = document.createElement('div');
|
|
|
|
const workspace = new Workspace();
|
|
workspace.setSize('400px', '400px');
|
|
workspace.setCoordSize(400, 400);
|
|
workspace.setCoordOrigin(-200, -200);
|
|
|
|
// Add referene point ...
|
|
const e1 = new Ellipse();
|
|
e1.setSize(10, 10);
|
|
e1.setPosition(0, 0);
|
|
workspace.append(e1);
|
|
|
|
const e2 = new Ellipse();
|
|
e2.setPosition(-100, -100);
|
|
e2.setSize(10, 10);
|
|
workspace.append(e2);
|
|
|
|
const e3 = new Ellipse();
|
|
e3.setPosition(100, 100);
|
|
e3.setSize(10, 10);
|
|
workspace.append(e3);
|
|
|
|
const e4 = new Ellipse();
|
|
e4.setPosition(-100, 100);
|
|
e4.setSize(10, 10);
|
|
workspace.append(e4);
|
|
|
|
const e5 = new Ellipse();
|
|
e5.setPosition(100, -100);
|
|
e5.setSize(10, 10);
|
|
workspace.append(e5);
|
|
|
|
// Line 1 ...
|
|
const line1 = new PolyLine();
|
|
line1.setFrom(0, 0);
|
|
line1.setTo(100, 100);
|
|
line1.setStyle(style);
|
|
line1.setStroke(strokeWidth, strokeStyle, strokeColor, 1);
|
|
line1.setFill(fillColor, 1);
|
|
workspace.append(line1);
|
|
|
|
const line2 = new PolyLine();
|
|
line2.setFrom(0, 0);
|
|
line2.setTo(-100, -100);
|
|
line2.setStyle(style);
|
|
line2.setStroke(strokeWidth, strokeStyle, strokeColor, 1);
|
|
line2.setFill(fillColor, 1);
|
|
workspace.append(line2);
|
|
|
|
const line3 = new PolyLine();
|
|
line3.setFrom(0, 0);
|
|
line3.setTo(100, -100);
|
|
line3.setStyle(style);
|
|
line3.setStroke(strokeWidth, strokeStyle, strokeColor, 1);
|
|
line3.setFill(fillColor, 1);
|
|
workspace.append(line3);
|
|
|
|
const line4 = new PolyLine();
|
|
line4.setFrom(0, 0);
|
|
line4.setTo(-100, 100);
|
|
line4.setStyle(style);
|
|
line4.setStroke(strokeWidth, strokeStyle, strokeColor, 1);
|
|
line4.setFill(fillColor, 1);
|
|
workspace.append(line4);
|
|
|
|
workspace.addItAsChildTo(divElem);
|
|
|
|
return divElem;
|
|
};
|