mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-25 23:54:55 +01:00
Apply eslint --fix
This commit is contained in:
parent
6cb88b9303
commit
38f4144c67
@ -18,7 +18,6 @@
|
|||||||
import Icon from './Icon';
|
import Icon from './Icon';
|
||||||
|
|
||||||
class ActionIcon extends Icon {
|
class ActionIcon extends Icon {
|
||||||
|
|
||||||
constructor(topic, url) {
|
constructor(topic, url) {
|
||||||
super(url);
|
super(url);
|
||||||
this._node = topic;
|
this._node = topic;
|
||||||
|
@ -172,12 +172,6 @@ class Designer extends Events {
|
|||||||
this._actionDispatcher.addTopics([model], [centralTopic.getId()]);
|
this._actionDispatcher.addTopics([model], [centralTopic.getId()]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Register mouse drag and drop event ...
|
|
||||||
function noopHandler(evt) {
|
|
||||||
evt.stopPropagation();
|
|
||||||
evt.preventDefault();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,8 +16,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
import { $assert } from '@wisemapping/core-js';
|
import { $assert } from '@wisemapping/core-js';
|
||||||
import Keyboard from './Keyboard';
|
|
||||||
import $ from 'jquery';
|
import $ from 'jquery';
|
||||||
|
import Keyboard from './Keyboard';
|
||||||
|
|
||||||
class DesignerKeyboard extends Keyboard {
|
class DesignerKeyboard extends Keyboard {
|
||||||
constructor(designer) {
|
constructor(designer) {
|
||||||
|
@ -103,7 +103,6 @@ class DragConnector {
|
|||||||
_isVerticallyAligned(targetSize, targetPosition, sourcePosition) {
|
_isVerticallyAligned(targetSize, targetPosition, sourcePosition) {
|
||||||
return Math.abs(sourcePosition.y - targetPosition.y) < targetSize.height / 2;
|
return Math.abs(sourcePosition.y - targetPosition.y) < targetSize.height / 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
DragConnector.MAX_VERTICAL_CONNECTION_TOLERANCE = 80;
|
DragConnector.MAX_VERTICAL_CONNECTION_TOLERANCE = 80;
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
import { $assert } from "@wisemapping/core-js";
|
import { $assert } from '@wisemapping/core-js';
|
||||||
import * as web2d from '@wisemapping/web2d';
|
import * as web2d from '@wisemapping/web2d';
|
||||||
|
|
||||||
class Icon {
|
class Icon {
|
||||||
|
@ -19,7 +19,6 @@ import { $assert, innerXML } from '@wisemapping/core-js';
|
|||||||
import XMLSerializerFactory from './persistence/XMLSerializerFactory';
|
import XMLSerializerFactory from './persistence/XMLSerializerFactory';
|
||||||
|
|
||||||
class PersistenceManager {
|
class PersistenceManager {
|
||||||
|
|
||||||
save(mindmap, editorProperties, saveHistory, events, sync) {
|
save(mindmap, editorProperties, saveHistory, events, sync) {
|
||||||
$assert(mindmap, 'mindmap can not be null');
|
$assert(mindmap, 'mindmap can not be null');
|
||||||
$assert(editorProperties, 'editorProperties can not be null');
|
$assert(editorProperties, 'editorProperties can not be null');
|
||||||
|
@ -262,6 +262,4 @@ class StandaloneActionDispatcher extends ActionDispatcher {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export default StandaloneActionDispatcher;
|
||||||
|
|
||||||
export default StandaloneActionDispatcher ;
|
|
||||||
|
@ -26,8 +26,7 @@ const TopicEvent = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
class TopicEventDispatcher extends Events {
|
class TopicEventDispatcher extends Events {
|
||||||
constructor(readOnly)
|
constructor(readOnly) {
|
||||||
{
|
|
||||||
super();
|
super();
|
||||||
this._readOnly = readOnly;
|
this._readOnly = readOnly;
|
||||||
this._activeEditor = null;
|
this._activeEditor = null;
|
||||||
|
@ -67,6 +67,7 @@ const TopicFeature = {
|
|||||||
$assert(attributes, 'attributes can not be null');
|
$assert(attributes, 'attributes can not be null');
|
||||||
|
|
||||||
const { model } = TopicFeature._featuresMetadataById.filter((elem) => elem.id === type)[0];
|
const { model } = TopicFeature._featuresMetadataById.filter((elem) => elem.id === type)[0];
|
||||||
|
// eslint-disable-next-line new-cap
|
||||||
return new model(attributes);
|
return new model(attributes);
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -83,6 +84,7 @@ const TopicFeature = {
|
|||||||
$assert(model, 'model can not be null');
|
$assert(model, 'model can not be null');
|
||||||
|
|
||||||
const { icon } = TopicFeature._featuresMetadataById.filter((elem) => elem.id === model.getType())[0];
|
const { icon } = TopicFeature._featuresMetadataById.filter((elem) => elem.id === model.getType())[0];
|
||||||
|
// eslint-disable-next-line new-cap
|
||||||
return new icon(topic, model, readOnly);
|
return new icon(topic, model, readOnly);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -80,9 +80,9 @@ class GenericFunctionCommand extends Command {
|
|||||||
if (this.applied) {
|
if (this.applied) {
|
||||||
const topics = commandContext.findTopics(this._topicsId);
|
const topics = commandContext.findTopics(this._topicsId);
|
||||||
|
|
||||||
topics.forEach( ((topic, index) => {
|
topics.forEach(((topic, index) => {
|
||||||
this._commandFunc(topic, this._oldValues[index]);
|
this._commandFunc(topic, this._oldValues[index]);
|
||||||
}).bind(this));
|
}));
|
||||||
|
|
||||||
this.applied = false;
|
this.applied = false;
|
||||||
this._oldValues = [];
|
this._oldValues = [];
|
||||||
|
@ -86,7 +86,7 @@ class BalancedSorter extends AbstractBasicSorter {
|
|||||||
: right.length - left.length > 0
|
: right.length - left.length > 0
|
||||||
? 1
|
? 1
|
||||||
: 0;
|
: 0;
|
||||||
var direction = order % 2 == 0 ? 1 : -1;
|
const direction = order % 2 == 0 ? 1 : -1;
|
||||||
|
|
||||||
// Exclude the dragged node (if set)
|
// Exclude the dragged node (if set)
|
||||||
const children = this._getChildrenForOrder(parent, graph, order).filter((child) => child !== node);
|
const children = this._getChildrenForOrder(parent, graph, order).filter((child) => child !== node);
|
||||||
|
@ -100,7 +100,7 @@ class RootedTreeSet {
|
|||||||
const node = this.find(nodeId);
|
const node = this.find(nodeId);
|
||||||
$assert(node._parent, 'Node is not connected');
|
$assert(node._parent, 'Node is not connected');
|
||||||
|
|
||||||
node._parent._children = node._parent._children.filter((n)=> node !== n);
|
node._parent._children = node._parent._children.filter((n) => node !== n);
|
||||||
this._rootNodes.push(node);
|
this._rootNodes.push(node);
|
||||||
node._parent = null;
|
node._parent = null;
|
||||||
}
|
}
|
||||||
@ -429,9 +429,7 @@ class RootedTreeSet {
|
|||||||
// direct descendants of the root that do not contain the node and are on the same side
|
// direct descendants of the root that do not contain the node and are on the same side
|
||||||
// and on the direction of the offset
|
// and on the direction of the offset
|
||||||
const rootNode = this.getRootNode(node);
|
const rootNode = this.getRootNode(node);
|
||||||
const branches = this.getChildren(rootNode).filter(((child) => {
|
const branches = this.getChildren(rootNode).filter(((child) => this._find(node.getId(), child)));
|
||||||
return this._find(node.getId(), child);
|
|
||||||
}).bind(this));
|
|
||||||
|
|
||||||
const branch = branches[0];
|
const branch = branches[0];
|
||||||
const rootDescendants = this.getSiblings(branch).filter((sibling) => {
|
const rootDescendants = this.getSiblings(branch).filter((sibling) => {
|
||||||
|
@ -229,7 +229,7 @@ class SymmetricSorter extends AbstractBasicSorter {
|
|||||||
position: child.getPosition(),
|
position: child.getPosition(),
|
||||||
width: child.getSize().width,
|
width: child.getSize().width,
|
||||||
height: this._computeChildrenHeight(treeSet, child),
|
height: this._computeChildrenHeight(treeSet, child),
|
||||||
})).bind(this)).reverse();
|
}))).reverse();
|
||||||
|
|
||||||
// Compute the center of the branch ...
|
// Compute the center of the branch ...
|
||||||
let totalHeight = 0;
|
let totalHeight = 0;
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
|
import $ from 'jquery';
|
||||||
import Options from '../../Options';
|
import Options from '../../Options';
|
||||||
import { $msg } from '../../Messages';
|
import { $msg } from '../../Messages';
|
||||||
import $ from 'jquery';
|
|
||||||
|
|
||||||
class BootstrapDialog extends Options {
|
class BootstrapDialog extends Options {
|
||||||
|
|
||||||
constructor(title, options) {
|
constructor(title, options) {
|
||||||
super();
|
super();
|
||||||
this.options = {
|
this.options = {
|
||||||
@ -84,6 +83,7 @@ class BootstrapDialog extends Options {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onDialogShown() {}
|
onDialogShown() {}
|
||||||
|
|
||||||
onRemoveClick(event) {
|
onRemoveClick(event) {
|
||||||
throw 'Unsupported operation';
|
throw 'Unsupported operation';
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import BootstrapDialog from './BootstrapDialog';
|
|
||||||
import { $assert, $defined } from '@wisemapping/core-js';
|
import { $assert, $defined } from '@wisemapping/core-js';
|
||||||
|
import BootstrapDialog from './BootstrapDialog';
|
||||||
|
|
||||||
class BootstrapDialogRequest extends BootstrapDialog {
|
class BootstrapDialogRequest extends BootstrapDialog {
|
||||||
constructor(url, title, options) {
|
constructor(url, title, options) {
|
||||||
|
@ -46,7 +46,6 @@ class FeatureModel {
|
|||||||
|
|
||||||
/** */
|
/** */
|
||||||
setAttributes(attributes) {
|
setAttributes(attributes) {
|
||||||
|
|
||||||
Object.keys(attributes).forEach((attr) => {
|
Object.keys(attributes).forEach((attr) => {
|
||||||
const funName = `set${FeatureModel.capitalize(attr)}`;
|
const funName = `set${FeatureModel.capitalize(attr)}`;
|
||||||
const value = attributes[attr];
|
const value = attributes[attr];
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
import { $assert } from "@wisemapping/core-js";
|
import { $assert } from '@wisemapping/core-js';
|
||||||
import FeatureModel from './FeatureModel';
|
import FeatureModel from './FeatureModel';
|
||||||
|
|
||||||
class NoteModel extends FeatureModel {
|
class NoteModel extends FeatureModel {
|
||||||
|
@ -15,8 +15,8 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
import { $assert, $defined } from '@wisemapping/core-js';
|
||||||
import ConnectionLine from '../ConnectionLine';
|
import ConnectionLine from '../ConnectionLine';
|
||||||
import { $assert, $defined } from "@wisemapping/core-js";
|
|
||||||
|
|
||||||
class RelationshipModel {
|
class RelationshipModel {
|
||||||
constructor(sourceTopicId, targetTopicId) {
|
constructor(sourceTopicId, targetTopicId) {
|
||||||
|
@ -17,12 +17,12 @@
|
|||||||
*/
|
*/
|
||||||
import { $assert, $defined } from '@wisemapping/core-js';
|
import { $assert, $defined } from '@wisemapping/core-js';
|
||||||
import ModelCodeName from './ModelCodeName';
|
import ModelCodeName from './ModelCodeName';
|
||||||
import XMLSerializer_Pela from './XMLSerializer_Pela';
|
import XMLSerializer from './XMLSerializer_Pela';
|
||||||
|
|
||||||
class Beta2PelaMigrator {
|
class Beta2PelaMigrator {
|
||||||
constructor(betaSerializer) {
|
constructor(betaSerializer) {
|
||||||
this._betaSerializer = betaSerializer;
|
this._betaSerializer = betaSerializer;
|
||||||
this._pelaSerializer = new XMLSerializer_Pela();
|
this._pelaSerializer = new XMLSerializer();
|
||||||
}
|
}
|
||||||
|
|
||||||
toXML(mindmap) {
|
toXML(mindmap) {
|
||||||
|
@ -16,13 +16,13 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
import { $assert, $defined } from '@wisemapping/core-js';
|
import { $assert, $defined } from '@wisemapping/core-js';
|
||||||
import XMLSerializer_Tango from './XMLSerializer_Tango';
|
import XMLSerializer from './XMLSerializer_Tango';
|
||||||
import ModelCodeName from './ModelCodeName';
|
import ModelCodeName from './ModelCodeName';
|
||||||
|
|
||||||
class Pela2TangoMigrator {
|
class Pela2TangoMigrator {
|
||||||
constructor(pelaSerializer) {
|
constructor(pelaSerializer) {
|
||||||
this._pelaSerializer = pelaSerializer;
|
this._pelaSerializer = pelaSerializer;
|
||||||
this._tangoSerializer = new XMLSerializer_Tango();
|
this._tangoSerializer = new XMLSerializer();
|
||||||
}
|
}
|
||||||
|
|
||||||
toXML(mindmap) {
|
toXML(mindmap) {
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
import { $defined } from "@wisemapping/core-js";
|
import { $defined } from '@wisemapping/core-js';
|
||||||
import ModelCodeName from './ModelCodeName';
|
import ModelCodeName from './ModelCodeName';
|
||||||
import Beta2PelaMigrator from './Beta2PelaMigrator';
|
import Beta2PelaMigrator from './Beta2PelaMigrator';
|
||||||
import Pela2TangoMigrator from './Pela2TangoMigrator';
|
import Pela2TangoMigrator from './Pela2TangoMigrator';
|
||||||
|
@ -14,7 +14,9 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
import { $defined, $assert, createDocument, innerXML } from '@wisemapping/core-js';
|
import {
|
||||||
|
$defined, $assert, createDocument, innerXML,
|
||||||
|
} from '@wisemapping/core-js';
|
||||||
import ModelCodeName from './ModelCodeName';
|
import ModelCodeName from './ModelCodeName';
|
||||||
import Mindmap from '../model/Mindmap';
|
import Mindmap from '../model/Mindmap';
|
||||||
import INodeModel from '../model/INodeModel';
|
import INodeModel from '../model/INodeModel';
|
||||||
|
@ -23,7 +23,7 @@ import XMLSerializer_Pela from './XMLSerializer_Pela';
|
|||||||
* @class
|
* @class
|
||||||
* @extends mindplot.persistence.XMLSerializer_Pela
|
* @extends mindplot.persistence.XMLSerializer_Pela
|
||||||
*/
|
*/
|
||||||
class XMLSerializer_Tango extends XMLSerializer_Pela{
|
class XMLSerializer_Tango extends XMLSerializer_Pela {
|
||||||
};
|
}
|
||||||
|
|
||||||
export default XMLSerializer_Tango;
|
export default XMLSerializer_Tango;
|
||||||
|
@ -69,7 +69,7 @@ class FloatingTip extends Events {
|
|||||||
|
|
||||||
if (this.addEvent) {
|
if (this.addEvent) {
|
||||||
for (const option in options) {
|
for (const option in options) {
|
||||||
if (typeof (options[option]) != 'function' || !(/^on[A-Z]/).test(option)) {
|
if (typeof (options[option]) !== 'function' || !(/^on[A-Z]/).test(option)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
this.addEvent(option, options[option]);
|
this.addEvent(option, options[option]);
|
||||||
|
@ -15,8 +15,8 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
import ListToolbarPanel from './ListToolbarPanel';
|
|
||||||
import $ from 'jquery';
|
import $ from 'jquery';
|
||||||
|
import ListToolbarPanel from './ListToolbarPanel';
|
||||||
|
|
||||||
class FontSizePanel extends ListToolbarPanel {
|
class FontSizePanel extends ListToolbarPanel {
|
||||||
// eslint-disable-next-line class-methods-use-this
|
// eslint-disable-next-line class-methods-use-this
|
||||||
|
@ -34,8 +34,6 @@ class IconPanel extends ToolbarPaneItem {
|
|||||||
for (let i = 0; i < ImageIcon.prototype.ICON_FAMILIES.length; i += 1) {
|
for (let i = 0; i < ImageIcon.prototype.ICON_FAMILIES.length; i += 1) {
|
||||||
const familyIcons = ImageIcon.prototype.ICON_FAMILIES[i].icons;
|
const familyIcons = ImageIcon.prototype.ICON_FAMILIES[i].icons;
|
||||||
for (let j = 0; j < familyIcons.length; j += 1) {
|
for (let j = 0; j < familyIcons.length; j += 1) {
|
||||||
|
|
||||||
|
|
||||||
// @TODO: This is a bug, for some reason is working because is a var. This must change to let.
|
// @TODO: This is a bug, for some reason is working because is a var. This must change to let.
|
||||||
var familyContent;
|
var familyContent;
|
||||||
if ((count % 12) == 0) {
|
if ((count % 12) == 0) {
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
import { $assert } from "@wisemapping/core-js";
|
import { $assert } from '@wisemapping/core-js';
|
||||||
import $ from 'jquery';
|
import $ from 'jquery';
|
||||||
import { $msg } from '../Messages';
|
import { $msg } from '../Messages';
|
||||||
import FloatingTip from './FloatingTip';
|
import FloatingTip from './FloatingTip';
|
||||||
|
@ -225,8 +225,8 @@ class Menu extends IMenu {
|
|||||||
|
|
||||||
this._addButton('print', false, false, () => {
|
this._addButton('print', false, false, () => {
|
||||||
me.save(saveElem, designer, false);
|
me.save(saveElem, designer, false);
|
||||||
const baseUrl = window.location.href.substring(0, window.location.href.lastIndexOf('c/maps/'));
|
const url = window.location.href.substring(0, window.location.href.lastIndexOf('c/maps/'));
|
||||||
window.open(`${baseUrl}c/maps/${mapId}/print`);
|
window.open(`${url}c/maps/${mapId}/print`);
|
||||||
});
|
});
|
||||||
|
|
||||||
Menu._registerTooltip('print', $msg('PRINT'));
|
Menu._registerTooltip('print', $msg('PRINT'));
|
||||||
@ -479,7 +479,7 @@ class Menu extends IMenu {
|
|||||||
shortcut = navigator.appVersion.indexOf('Mac') !== -1 ? shortcut.replace('meta+', '⌘') : shortcut.replace('meta+', 'ctrl+');
|
shortcut = navigator.appVersion.indexOf('Mac') !== -1 ? shortcut.replace('meta+', '⌘') : shortcut.replace('meta+', 'ctrl+');
|
||||||
tooltip = `${tooltip} (${shortcut})`;
|
tooltip = `${tooltip} (${shortcut})`;
|
||||||
}
|
}
|
||||||
new KeyboardShortcutTooltip($(`#${buttonId}`), tooltip);
|
return new KeyboardShortcutTooltip($(`#${buttonId}`), tooltip);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,8 +16,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
import { $assert } from '@wisemapping/core-js';
|
import { $assert } from '@wisemapping/core-js';
|
||||||
import BootstrapDialog from '../libraries/bootstrap/BootstrapDialog';
|
|
||||||
import $ from 'jquery';
|
import $ from 'jquery';
|
||||||
|
import BootstrapDialog from '../libraries/bootstrap/BootstrapDialog';
|
||||||
import { $msg } from '../Messages';
|
import { $msg } from '../Messages';
|
||||||
|
|
||||||
class NoteEditor extends BootstrapDialog {
|
class NoteEditor extends BootstrapDialog {
|
||||||
|
@ -513,12 +513,11 @@ class FreeTestSuite extends TestSuite {
|
|||||||
siblings.forEach((sibling) => {
|
siblings.forEach((sibling) => {
|
||||||
this._branchesOverlap(child, sibling, heightById);
|
this._branchesOverlap(child, sibling, heightById);
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
children.forEach(((child) => {
|
children.forEach(((child) => {
|
||||||
OriginalLayout._assertBranchCollision(treeSet, child, heightById);
|
OriginalLayout._assertBranchCollision(treeSet, child, heightById);
|
||||||
}).bind(this));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
static _branchesOverlap(branchA, branchB, heightById) {
|
static _branchesOverlap(branchA, branchB, heightById) {
|
||||||
|
@ -20,6 +20,7 @@ import $ from 'jquery';
|
|||||||
import { $assert } from '@wisemapping/core-js';
|
import { $assert } from '@wisemapping/core-js';
|
||||||
import LayoutManager from '../../../src/components/layout/LayoutManager';
|
import LayoutManager from '../../../src/components/layout/LayoutManager';
|
||||||
import ChildrenSorterStrategy from '../../../src/components/layout/ChildrenSorterStrategy';
|
import ChildrenSorterStrategy from '../../../src/components/layout/ChildrenSorterStrategy';
|
||||||
|
|
||||||
class TestSuite extends ChildrenSorterStrategy {
|
class TestSuite extends ChildrenSorterStrategy {
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
@ -91,7 +92,7 @@ class TestSuite extends ChildrenSorterStrategy {
|
|||||||
manager.addNode(1, TestSuite.NODE_SIZE, position).connectNode(0, 1, 0);
|
manager.addNode(1, TestSuite.NODE_SIZE, position).connectNode(0, 1, 0);
|
||||||
manager.addNode(3, TestSuite.NODE_SIZE, position).connectNode(1, 3, 0);
|
manager.addNode(3, TestSuite.NODE_SIZE, position).connectNode(1, 3, 0);
|
||||||
manager.addNode(5, TestSuite.NODE_SIZE, position).connectNode(3, 5, 0);
|
manager.addNode(5, TestSuite.NODE_SIZE, position).connectNode(3, 5, 0);
|
||||||
manager.addNode(6, { width: 140, height: 130 } , position).connectNode(3, 6, 1);
|
manager.addNode(6, { width: 140, height: 130 }, position).connectNode(3, 6, 1);
|
||||||
manager.addNode(7, TestSuite.NODE_SIZE, position).connectNode(6, 7, 0);
|
manager.addNode(7, TestSuite.NODE_SIZE, position).connectNode(6, 7, 0);
|
||||||
manager.addNode(8, TestSuite.NODE_SIZE, position).connectNode(7, 8, 0);
|
manager.addNode(8, TestSuite.NODE_SIZE, position).connectNode(7, 8, 0);
|
||||||
manager.addNode(9, TestSuite.NODE_SIZE, position).connectNode(7, 9, 1);
|
manager.addNode(9, TestSuite.NODE_SIZE, position).connectNode(7, 9, 1);
|
||||||
@ -105,10 +106,10 @@ class TestSuite extends ChildrenSorterStrategy {
|
|||||||
manager.addNode(17, TestSuite.NODE_SIZE, position).connectNode(7, 17, 9);
|
manager.addNode(17, TestSuite.NODE_SIZE, position).connectNode(7, 17, 9);
|
||||||
manager.addNode(29, TestSuite.NODE_SIZE, position).connectNode(6, 29, 1);
|
manager.addNode(29, TestSuite.NODE_SIZE, position).connectNode(6, 29, 1);
|
||||||
manager.addNode(30, TestSuite.NODE_SIZE, position).connectNode(6, 30, 2);
|
manager.addNode(30, TestSuite.NODE_SIZE, position).connectNode(6, 30, 2);
|
||||||
manager.addNode(31, { width: 100, height: 50 } , position).connectNode(6, 31, 3);
|
manager.addNode(31, { width: 100, height: 50 }, position).connectNode(6, 31, 3);
|
||||||
|
|
||||||
manager.addNode(4, TestSuite.NODE_SIZE, position).connectNode(1, 4, 1);
|
manager.addNode(4, TestSuite.NODE_SIZE, position).connectNode(1, 4, 1);
|
||||||
manager.addNode(18, { width: 80, height: 70 } , position).connectNode(4, 18, 0);
|
manager.addNode(18, { width: 80, height: 70 }, position).connectNode(4, 18, 0);
|
||||||
manager.addNode(19, TestSuite.NODE_SIZE, position).connectNode(18, 19, 0);
|
manager.addNode(19, TestSuite.NODE_SIZE, position).connectNode(18, 19, 0);
|
||||||
manager.addNode(20, TestSuite.NODE_SIZE, position).connectNode(19, 20, 0);
|
manager.addNode(20, TestSuite.NODE_SIZE, position).connectNode(19, 20, 0);
|
||||||
manager.addNode(21, TestSuite.NODE_SIZE, position).connectNode(20, 21, 0);
|
manager.addNode(21, TestSuite.NODE_SIZE, position).connectNode(20, 21, 0);
|
||||||
@ -117,11 +118,11 @@ class TestSuite extends ChildrenSorterStrategy {
|
|||||||
manager.addNode(22, TestSuite.NODE_SIZE, position).connectNode(2, 22, 0);
|
manager.addNode(22, TestSuite.NODE_SIZE, position).connectNode(2, 22, 0);
|
||||||
manager.addNode(24, TestSuite.NODE_SIZE, position).connectNode(22, 24, 0);
|
manager.addNode(24, TestSuite.NODE_SIZE, position).connectNode(22, 24, 0);
|
||||||
|
|
||||||
manager.addNode(23, { width: 80, height: 50 } , position).connectNode(2, 23, 1);
|
manager.addNode(23, { width: 80, height: 50 }, position).connectNode(2, 23, 1);
|
||||||
manager.addNode(25, { width: 80, height: 40 } , position).connectNode(23, 25, 0);
|
manager.addNode(25, { width: 80, height: 40 }, position).connectNode(23, 25, 0);
|
||||||
manager.addNode(26, { width: 80, height: 80 } , position).connectNode(25, 26, 0);
|
manager.addNode(26, { width: 80, height: 80 }, position).connectNode(25, 26, 0);
|
||||||
manager.addNode(27, TestSuite.NODE_SIZE, position).connectNode(26, 27, 0);
|
manager.addNode(27, TestSuite.NODE_SIZE, position).connectNode(26, 27, 0);
|
||||||
manager.addNode(28, { width: 80, height: 80 } , position).connectNode(27, 28, 0);
|
manager.addNode(28, { width: 80, height: 80 }, position).connectNode(27, 28, 0);
|
||||||
|
|
||||||
// manager.layout();
|
// manager.layout();
|
||||||
// manager.plot("testBaselineAligned1", {width:1600,height:800});
|
// manager.plot("testBaselineAligned1", {width:1600,height:800});
|
||||||
@ -135,7 +136,7 @@ class TestSuite extends ChildrenSorterStrategy {
|
|||||||
const manager = new LayoutManager(0, TestSuite.ROOT_NODE_SIZE);
|
const manager = new LayoutManager(0, TestSuite.ROOT_NODE_SIZE);
|
||||||
|
|
||||||
manager.addNode(1, TestSuite.NODE_SIZE, position).connectNode(0, 1, 0);
|
manager.addNode(1, TestSuite.NODE_SIZE, position).connectNode(0, 1, 0);
|
||||||
manager.addNode(2, { width: 130, height: 200 } , position).connectNode(1, 2, 0);
|
manager.addNode(2, { width: 130, height: 200 }, position).connectNode(1, 2, 0);
|
||||||
manager.addNode(3, TestSuite.NODE_SIZE, position).connectNode(2, 3, 0);
|
manager.addNode(3, TestSuite.NODE_SIZE, position).connectNode(2, 3, 0);
|
||||||
manager.addNode(4, TestSuite.NODE_SIZE, position).connectNode(2, 4, 1);
|
manager.addNode(4, TestSuite.NODE_SIZE, position).connectNode(2, 4, 1);
|
||||||
manager.addNode(5, TestSuite.NODE_SIZE, position).connectNode(2, 5, 2);
|
manager.addNode(5, TestSuite.NODE_SIZE, position).connectNode(2, 5, 2);
|
||||||
@ -431,17 +432,17 @@ class TestSuite extends ChildrenSorterStrategy {
|
|||||||
const position = { x: 0, y: 0 };
|
const position = { x: 0, y: 0 };
|
||||||
const manager = new LayoutManager(0, TestSuite.ROOT_NODE_SIZE);
|
const manager = new LayoutManager(0, TestSuite.ROOT_NODE_SIZE);
|
||||||
|
|
||||||
manager.addNode(1, { width: 60, height: 60 } ,position);
|
manager.addNode(1, { width: 60, height: 60 }, position);
|
||||||
manager.addNode(2, TestSuite.NODE_SIZE, position);
|
manager.addNode(2, TestSuite.NODE_SIZE, position);
|
||||||
manager.addNode(3, { width: 260, height: 30 } ,position);
|
manager.addNode(3, { width: 260, height: 30 }, position);
|
||||||
manager.addNode(4, TestSuite.NODE_SIZE, position);
|
manager.addNode(4, TestSuite.NODE_SIZE, position);
|
||||||
manager.addNode(5, TestSuite.NODE_SIZE, position);
|
manager.addNode(5, TestSuite.NODE_SIZE, position);
|
||||||
manager.addNode(7, { width: 80, height: 80 } ,position);
|
manager.addNode(7, { width: 80, height: 80 }, position);
|
||||||
manager.addNode(8, TestSuite.NODE_SIZE, position);
|
manager.addNode(8, TestSuite.NODE_SIZE, position);
|
||||||
manager.addNode(9, { width: 30, height: 30 } ,position);
|
manager.addNode(9, { width: 30, height: 30 }, position);
|
||||||
manager.addNode(10, TestSuite.NODE_SIZE, position);
|
manager.addNode(10, TestSuite.NODE_SIZE, position);
|
||||||
manager.addNode(11, TestSuite.NODE_SIZE, position);
|
manager.addNode(11, TestSuite.NODE_SIZE, position);
|
||||||
manager.addNode(12, { width: 100, height: 70 } ,position);
|
manager.addNode(12, { width: 100, height: 70 }, position);
|
||||||
manager.addNode(13, TestSuite.NODE_SIZE, position);
|
manager.addNode(13, TestSuite.NODE_SIZE, position);
|
||||||
manager.addNode(14, TestSuite.NODE_SIZE, position);
|
manager.addNode(14, TestSuite.NODE_SIZE, position);
|
||||||
manager.addNode(15, TestSuite.NODE_SIZE, position);
|
manager.addNode(15, TestSuite.NODE_SIZE, position);
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
|||||||
export function drawGrid (x, y, w, h, wv, hv, color) {
|
export function drawGrid(x, y, w, h, wv, hv, color) {
|
||||||
color = color || '#999';
|
color = color || '#999';
|
||||||
let path = ['M', x, y, 'L', x + w, y, x + w, y + h, x, y + h, x, y];
|
let path = ['M', x, y, 'L', x + w, y, x + w, y + h, x, y + h, x, y];
|
||||||
const rowHeight = h / hv;
|
const rowHeight = h / hv;
|
||||||
@ -26,4 +26,4 @@ export function drawGrid (x, y, w, h, wv, hv, color) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return this.path;
|
return this.path;
|
||||||
};
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@ -2,7 +2,6 @@ import Events from '../../src/components/Events';
|
|||||||
|
|
||||||
describe('Events class suite', () => {
|
describe('Events class suite', () => {
|
||||||
class TestClass extends Events {
|
class TestClass extends Events {
|
||||||
|
|
||||||
getEvents() {
|
getEvents() {
|
||||||
return this.$events;
|
return this.$events;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user