mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
58 lines
1.5 KiB
JavaScript
58 lines
1.5 KiB
JavaScript
|
import $ from '@libraries/jquery-2.1.0';
|
||
|
import {
|
||
|
Toolkit, Workspace, Text,
|
||
|
} from '../../src';
|
||
|
|
||
|
global.$ = $;
|
||
|
|
||
|
function multiline(text, family, elemId) {
|
||
|
const workspace = new Workspace();
|
||
|
workspace.setSize('200px', '240px');
|
||
|
workspace.setCoordSize('200', '240');
|
||
|
workspace.setCoordOrigin(0, 0);
|
||
|
|
||
|
[6, 8, 10, 15].forEach((size, i) => {
|
||
|
const wText = new Text();
|
||
|
workspace.append(wText);
|
||
|
|
||
|
wText.setText(text);
|
||
|
wText.setFont(family, size, 'bold');
|
||
|
wText.setPosition(30, 50 * i);
|
||
|
wText.setColor('blue');
|
||
|
});
|
||
|
|
||
|
workspace.addItAsChildTo($(`#${elemId}`));
|
||
|
}
|
||
|
|
||
|
function alignments(text, family, elemId) {
|
||
|
const overflowWorkspace = new Workspace();
|
||
|
overflowWorkspace.setSize('260px', '240px');
|
||
|
overflowWorkspace.setCoordSize('260', '240');
|
||
|
overflowWorkspace.setCoordOrigin(0, 0);
|
||
|
|
||
|
['center', 'left', 'right'].forEach((align, i) => {
|
||
|
const wText = new Text();
|
||
|
overflowWorkspace.append(wText);
|
||
|
|
||
|
wText.setText(text);
|
||
|
wText.setFont(family, 8, 'bold');
|
||
|
wText.setPosition(30, 80 * i);
|
||
|
wText.setColor('green');
|
||
|
wText.setTextAlignment(align);
|
||
|
});
|
||
|
|
||
|
overflowWorkspace.addItAsChildTo($(`#${elemId}`));
|
||
|
}
|
||
|
|
||
|
Toolkit.init();
|
||
|
|
||
|
// Multine tests ...
|
||
|
['Arial', 'Tahoma', 'Verdana', 'Times'].forEach((family, i) => {
|
||
|
multiline('This multine text.\nLine 1 :)\nLine2', family, `multi${i}`);
|
||
|
});
|
||
|
|
||
|
// Multine tests and alingments .. ...
|
||
|
['Arial', 'Tahoma', 'Verdana', 'Times'].forEach((family, i) => {
|
||
|
alignments('This multine text.\nThis is the long line just because :)\nShort line', family, `amulti${i}`);
|
||
|
});
|