Add alternative arrow types [#20]
27
README.md
|
@ -40,25 +40,26 @@ terminators box
|
|||
```
|
||||
title Connection Types
|
||||
|
||||
begin Foo, Bar, Baz
|
||||
|
||||
Foo -> Bar: Simple arrow
|
||||
Foo --> Bar: Dashed arrow
|
||||
Bar --> Baz: Dashed arrow
|
||||
Foo <- Bar: Reversed arrow
|
||||
Foo <-- Bar: Reversed dashed arrow
|
||||
Bar <-- Baz: Reversed & dashed
|
||||
Foo <-> Bar: Double arrow
|
||||
Foo <--> Bar: Double dashed arrow
|
||||
Bar <--> Baz: Double dashed arrow
|
||||
|
||||
# An arrow with no label:
|
||||
Foo -> Bar
|
||||
|
||||
Foo -> Foo: Foo talks to itself
|
||||
Bar ->> Baz: Different arrow
|
||||
Foo <<--> Bar: Mix of arrows
|
||||
|
||||
Bar -> Bar: Bar talks to itself
|
||||
|
||||
Foo -> +Bar: Foo asks Bar
|
||||
-Bar --> Foo: and Bar replies
|
||||
|
||||
# * and ! cause agents to be created and destroyed inline
|
||||
Bar -> *Baz
|
||||
Bar <- !Baz
|
||||
|
||||
# Arrows leaving on the left and right of the diagram
|
||||
[ -> Foo: From the left
|
||||
[ <- Foo: To the left
|
||||
|
@ -139,12 +140,18 @@ too!'
|
|||
```
|
||||
title "Baz doesn't live long"
|
||||
|
||||
Foo -> Bar
|
||||
note over Foo, Bar: Using begin / end
|
||||
|
||||
begin Baz
|
||||
Bar -> Baz
|
||||
Baz -> Foo
|
||||
end Baz
|
||||
Foo -> Bar
|
||||
|
||||
note over Foo, Bar: Using * / !
|
||||
|
||||
# * and ! cause agents to be created and destroyed inline
|
||||
Bar -> *Baz: make Baz
|
||||
Foo <- !Baz: end Baz
|
||||
|
||||
# Foo and Bar end with black bars
|
||||
terminators bar
|
||||
|
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 49 KiB |
|
@ -56,6 +56,27 @@ define(() => {
|
|||
return list[list.length - 1];
|
||||
}
|
||||
|
||||
function combineRecur(parts, position, str, target) {
|
||||
if(position >= parts.length) {
|
||||
target.push(str);
|
||||
return;
|
||||
}
|
||||
const choices = parts[position];
|
||||
if(!Array.isArray(choices)) {
|
||||
combineRecur(parts, position + 1, str + choices, target);
|
||||
return;
|
||||
}
|
||||
for(let i = 0; i < choices.length; ++ i) {
|
||||
combineRecur(parts, position + 1, str + choices[i], target);
|
||||
}
|
||||
}
|
||||
|
||||
function combine(parts) {
|
||||
const target = [];
|
||||
combineRecur(parts, 0, '', target);
|
||||
return target;
|
||||
}
|
||||
|
||||
return {
|
||||
indexOf,
|
||||
mergeSets,
|
||||
|
@ -63,5 +84,6 @@ define(() => {
|
|||
removeAll,
|
||||
remove,
|
||||
last,
|
||||
combine,
|
||||
};
|
||||
});
|
||||
|
|
|
@ -169,4 +169,21 @@ defineDescribe('ArrayUtilities', ['./ArrayUtilities'], (array) => {
|
|||
expect(array.last([])).toEqual(undefined);
|
||||
});
|
||||
});
|
||||
|
||||
describe('.combine', () => {
|
||||
it('returns all combinations of the given arguments', () => {
|
||||
const list = array.combine([
|
||||
['Aa', 'Bb'],
|
||||
['Cc', 'Dd'],
|
||||
'Ee',
|
||||
['Ff'],
|
||||
]);
|
||||
expect(list).toEqual([
|
||||
'AaCcEeFf',
|
||||
'AaDdEeFf',
|
||||
'BbCcEeFf',
|
||||
'BbDdEeFf',
|
||||
]);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -7,11 +7,12 @@ define(['core/ArrayUtilities'], (array) => {
|
|||
const end = {type: '', suggest: '\n', then: {}};
|
||||
const hiddenEnd = {type: '', then: {}};
|
||||
|
||||
const ARROWS = [
|
||||
'->', '-->',
|
||||
'<-', '<--',
|
||||
'<->', '<-->',
|
||||
];
|
||||
const ARROWS = array.combine([
|
||||
['', '<', '<<'],
|
||||
['-', '--'],
|
||||
['', '>', '>>'],
|
||||
]);
|
||||
array.removeAll(ARROWS, ['-', '--']);
|
||||
|
||||
const textToEnd = {type: 'string', then: {'': 0, '\n': end}};
|
||||
const aliasListToEnd = {type: 'variable', suggest: 'Agent', then: {
|
||||
|
|
|
@ -52,8 +52,8 @@ defineDescribe('Sequence Generator', ['./Generator'], (Generator) => {
|
|||
connect: (agentNames, {
|
||||
label = '',
|
||||
line = '',
|
||||
left = false,
|
||||
right = false,
|
||||
left = 0,
|
||||
right = 0,
|
||||
} = {}) => {
|
||||
return {
|
||||
type: 'connect',
|
||||
|
@ -288,8 +288,8 @@ defineDescribe('Sequence Generator', ['./Generator'], (Generator) => {
|
|||
PARSED.connect(['A', 'B'], {
|
||||
label: 'foo',
|
||||
line: 'bar',
|
||||
left: true,
|
||||
right: false,
|
||||
left: 1,
|
||||
right: 0,
|
||||
}),
|
||||
]});
|
||||
expect(sequence.stages).toEqual([
|
||||
|
@ -297,8 +297,8 @@ defineDescribe('Sequence Generator', ['./Generator'], (Generator) => {
|
|||
GENERATED.connect(['A', 'B'], {
|
||||
label: 'foo',
|
||||
line: 'bar',
|
||||
left: true,
|
||||
right: false,
|
||||
left: 1,
|
||||
right: 0,
|
||||
}),
|
||||
jasmine.anything(),
|
||||
]);
|
||||
|
|
|
@ -12,18 +12,28 @@ define([
|
|||
const BLOCK_TYPES = {
|
||||
'if': {type: 'block begin', mode: 'if', skip: []},
|
||||
'else': {type: 'block split', mode: 'else', skip: ['if']},
|
||||
'elif': {type: 'block split', mode: 'else', skip: []},
|
||||
'repeat': {type: 'block begin', mode: 'repeat', skip: []},
|
||||
};
|
||||
|
||||
const CONNECT_TYPES = {
|
||||
'->': {line: 'solid', left: false, right: true},
|
||||
'<-': {line: 'solid', left: true, right: false},
|
||||
'<->': {line: 'solid', left: true, right: true},
|
||||
'-->': {line: 'dash', left: false, right: true},
|
||||
'<--': {line: 'dash', left: true, right: false},
|
||||
'<-->': {line: 'dash', left: true, right: true},
|
||||
};
|
||||
const CONNECT_TYPES = ((() => {
|
||||
const lTypes = ['', '<', '<<'];
|
||||
const mTypes = ['-', '--'];
|
||||
const rTypes = ['', '>', '>>'];
|
||||
const arrows = array.combine([lTypes, mTypes, rTypes]);
|
||||
array.removeAll(arrows, mTypes);
|
||||
|
||||
const types = new Map();
|
||||
|
||||
arrows.forEach((arrow) => {
|
||||
types.set(arrow, {
|
||||
line: arrow.includes('--') ? 'dash' : 'solid',
|
||||
left: lTypes.indexOf(arrow.substr(0, arrow.indexOf('-'))),
|
||||
right: rTypes.indexOf(arrow.substr(arrow.lastIndexOf('-') + 1)),
|
||||
});
|
||||
});
|
||||
|
||||
return types;
|
||||
})());
|
||||
|
||||
const CONNECT_AGENT_FLAGS = {
|
||||
'*': 'begin',
|
||||
|
@ -323,7 +333,7 @@ define([
|
|||
let typePos = -1;
|
||||
let options = null;
|
||||
for(let j = 0; j < line.length; ++ j) {
|
||||
const opts = CONNECT_TYPES[tokenKeyword(line[j])];
|
||||
const opts = CONNECT_TYPES.get(tokenKeyword(line[j]));
|
||||
if(opts) {
|
||||
typePos = j;
|
||||
options = opts;
|
||||
|
|
|
@ -200,45 +200,40 @@ defineDescribe('Sequence Parser', ['./Parser'], (Parser) => {
|
|||
'A <-> B\n' +
|
||||
'A --> B\n' +
|
||||
'A <-- B\n' +
|
||||
'A <--> B\n'
|
||||
'A <--> B\n' +
|
||||
'A ->> B\n' +
|
||||
'A <<- B\n' +
|
||||
'A <<->> B\n' +
|
||||
'A <->> B\n' +
|
||||
'A <<-> B\n' +
|
||||
'A -->> B\n' +
|
||||
'A <<-- B\n' +
|
||||
'A <<-->> B\n' +
|
||||
'A <-->> B\n' +
|
||||
'A <<--> B\n'
|
||||
);
|
||||
expect(parsed.stages).toEqual([
|
||||
PARSED.connect(['A', 'B'], {
|
||||
line: 'solid',
|
||||
left: false,
|
||||
right: true,
|
||||
label: '',
|
||||
}),
|
||||
PARSED.connect(['A', 'B'], {
|
||||
line: 'solid',
|
||||
left: true,
|
||||
right: false,
|
||||
label: '',
|
||||
}),
|
||||
PARSED.connect(['A', 'B'], {
|
||||
line: 'solid',
|
||||
left: true,
|
||||
right: true,
|
||||
label: '',
|
||||
}),
|
||||
PARSED.connect(['A', 'B'], {
|
||||
line: 'dash',
|
||||
left: false,
|
||||
right: true,
|
||||
label: '',
|
||||
}),
|
||||
PARSED.connect(['A', 'B'], {
|
||||
line: 'dash',
|
||||
left: true,
|
||||
right: false,
|
||||
label: '',
|
||||
}),
|
||||
PARSED.connect(['A', 'B'], {
|
||||
line: 'dash',
|
||||
left: true,
|
||||
right: true,
|
||||
left: 0,
|
||||
right: 1,
|
||||
label: '',
|
||||
}),
|
||||
PARSED.connect(['A', 'B'], {line: 'solid', left: 1, right: 0}),
|
||||
PARSED.connect(['A', 'B'], {line: 'solid', left: 1, right: 1}),
|
||||
PARSED.connect(['A', 'B'], {line: 'dash', left: 0, right: 1}),
|
||||
PARSED.connect(['A', 'B'], {line: 'dash', left: 1, right: 0}),
|
||||
PARSED.connect(['A', 'B'], {line: 'dash', left: 1, right: 1}),
|
||||
PARSED.connect(['A', 'B'], {line: 'solid', left: 0, right: 2}),
|
||||
PARSED.connect(['A', 'B'], {line: 'solid', left: 2, right: 0}),
|
||||
PARSED.connect(['A', 'B'], {line: 'solid', left: 2, right: 2}),
|
||||
PARSED.connect(['A', 'B'], {line: 'solid', left: 1, right: 2}),
|
||||
PARSED.connect(['A', 'B'], {line: 'solid', left: 2, right: 1}),
|
||||
PARSED.connect(['A', 'B'], {line: 'dash', left: 0, right: 2}),
|
||||
PARSED.connect(['A', 'B'], {line: 'dash', left: 2, right: 0}),
|
||||
PARSED.connect(['A', 'B'], {line: 'dash', left: 2, right: 2}),
|
||||
PARSED.connect(['A', 'B'], {line: 'dash', left: 1, right: 2}),
|
||||
PARSED.connect(['A', 'B'], {line: 'dash', left: 2, right: 1}),
|
||||
]);
|
||||
});
|
||||
|
||||
|
@ -250,14 +245,14 @@ defineDescribe('Sequence Parser', ['./Parser'], (Parser) => {
|
|||
expect(parsed.stages).toEqual([
|
||||
PARSED.connect(['A', 'B'], {
|
||||
line: 'solid',
|
||||
left: true,
|
||||
right: false,
|
||||
left: 1,
|
||||
right: 0,
|
||||
label: 'B -> A',
|
||||
}),
|
||||
PARSED.connect(['A', 'B'], {
|
||||
line: 'solid',
|
||||
left: false,
|
||||
right: true,
|
||||
left: 0,
|
||||
right: 1,
|
||||
label: 'B <- A',
|
||||
}),
|
||||
]);
|
||||
|
|
|
@ -33,8 +33,8 @@ defineDescribe('Sequence Renderer', [
|
|||
label,
|
||||
options: {
|
||||
line: 'solid',
|
||||
left: false,
|
||||
right: true,
|
||||
left: 0,
|
||||
right: 1,
|
||||
},
|
||||
};
|
||||
},
|
||||
|
|
|
@ -22,8 +22,17 @@ define([
|
|||
));
|
||||
}
|
||||
|
||||
function getArrowShort(theme) {
|
||||
const arrow = theme.connect.arrow;
|
||||
class Arrowhead {
|
||||
constructor(propName) {
|
||||
this.propName = propName;
|
||||
}
|
||||
|
||||
getConfig(theme) {
|
||||
return theme.connect.arrow[this.propName];
|
||||
}
|
||||
|
||||
short(theme) {
|
||||
const arrow = this.getConfig(theme);
|
||||
const join = arrow.attrs['stroke-linejoin'] || 'miter';
|
||||
const t = arrow.attrs['stroke-width'] * 0.5;
|
||||
const lineStroke = theme.agentLineAttrs['stroke-width'] * 0.5;
|
||||
|
@ -37,16 +46,63 @@ define([
|
|||
}
|
||||
}
|
||||
|
||||
render(layer, theme, {x, y, dir}) {
|
||||
const config = this.getConfig(theme);
|
||||
drawHorizontalArrowHead(layer, {
|
||||
x: x + this.short(theme) * dir,
|
||||
y,
|
||||
dx: config.width * dir,
|
||||
dy: config.height / 2,
|
||||
attrs: config.attrs,
|
||||
});
|
||||
}
|
||||
|
||||
width(theme) {
|
||||
return this.short(theme) + this.getConfig(theme).width;
|
||||
}
|
||||
|
||||
height(theme) {
|
||||
return this.getConfig(theme).height;
|
||||
}
|
||||
|
||||
lineGap(theme, lineAttrs) {
|
||||
const arrow = this.getConfig(theme);
|
||||
const short = this.short(theme);
|
||||
if(arrow.attrs.fill === 'none') {
|
||||
const h = arrow.height / 2;
|
||||
const w = arrow.width;
|
||||
const safe = short + (lineAttrs['stroke-width'] / 2) * (w / h);
|
||||
return (short + safe) / 2;
|
||||
} else {
|
||||
return short + arrow.width / 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const ARROWHEADS = [
|
||||
{
|
||||
render: () => {},
|
||||
width: () => 0,
|
||||
height: () => 0,
|
||||
lineGap: () => 0,
|
||||
},
|
||||
new Arrowhead('single'),
|
||||
new Arrowhead('double'),
|
||||
];
|
||||
|
||||
class Connect extends BaseComponent {
|
||||
separation({agentNames, label}, env) {
|
||||
separation({label, agentNames, options}, env) {
|
||||
const config = env.theme.connect;
|
||||
|
||||
const labelWidth = (
|
||||
env.textSizer.measure(config.label.attrs, label).width +
|
||||
config.label.padding * 2
|
||||
);
|
||||
const lArrow = ARROWHEADS[options.left];
|
||||
const rArrow = ARROWHEADS[options.right];
|
||||
|
||||
const short = getArrowShort(env.theme);
|
||||
let labelWidth = (
|
||||
env.textSizer.measure(config.label.attrs, label).width
|
||||
);
|
||||
if(labelWidth > 0) {
|
||||
labelWidth += config.label.padding * 2;
|
||||
}
|
||||
|
||||
const info1 = env.agentInfos.get(agentNames[0]);
|
||||
if(agentNames[0] === agentNames[1]) {
|
||||
|
@ -54,9 +110,10 @@ define([
|
|||
left: 0,
|
||||
right: (
|
||||
info1.currentMaxRad +
|
||||
labelWidth +
|
||||
config.arrow.width +
|
||||
short +
|
||||
Math.max(
|
||||
labelWidth + lArrow.width(env.theme),
|
||||
rArrow.width(env.theme)
|
||||
) +
|
||||
config.loopbackRadius
|
||||
),
|
||||
});
|
||||
|
@ -69,8 +126,10 @@ define([
|
|||
info1.currentMaxRad +
|
||||
info2.currentMaxRad +
|
||||
labelWidth +
|
||||
config.arrow.width * 2 +
|
||||
short * 2
|
||||
Math.max(
|
||||
lArrow.width(env.theme),
|
||||
rArrow.width(env.theme)
|
||||
) * 2
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -79,9 +138,8 @@ define([
|
|||
const config = env.theme.connect;
|
||||
const from = env.agentInfos.get(agentNames[0]);
|
||||
|
||||
const dx = config.arrow.width;
|
||||
const dy = config.arrow.height / 2;
|
||||
const short = getArrowShort(env.theme);
|
||||
const lArrow = ARROWHEADS[options.left];
|
||||
const rArrow = ARROWHEADS[options.right];
|
||||
|
||||
const height = (
|
||||
env.textSizer.measureHeight(config.label.attrs, label) +
|
||||
|
@ -93,9 +151,8 @@ define([
|
|||
const y0 = env.primaryY;
|
||||
const x0 = (
|
||||
lineX +
|
||||
short +
|
||||
dx +
|
||||
config.label.padding
|
||||
lArrow.width(env.theme) +
|
||||
(label ? config.label.padding : 0)
|
||||
);
|
||||
|
||||
const renderedText = SVGShapes.renderBoxedText(label, {
|
||||
|
@ -108,48 +165,32 @@ define([
|
|||
labelLayer: env.labelLayer,
|
||||
SVGTextBlockClass: env.SVGTextBlockClass,
|
||||
});
|
||||
const r = config.loopbackRadius;
|
||||
const x1 = (
|
||||
x0 +
|
||||
const labelW = (label ? (
|
||||
renderedText.width +
|
||||
config.label.padding -
|
||||
config.mask.padding.left -
|
||||
config.mask.padding.right
|
||||
);
|
||||
) : 0);
|
||||
const r = config.loopbackRadius;
|
||||
const x1 = Math.max(lineX + rArrow.width(env.theme), x0 + labelW);
|
||||
const y1 = y0 + r * 2;
|
||||
|
||||
const space = short + dx / 2;
|
||||
|
||||
const lineAttrs = config.lineAttrs[options.line];
|
||||
env.shapeLayer.appendChild(svg.make('path', Object.assign({
|
||||
'd': (
|
||||
'M ' + (lineX + (options.left ? space : 0)) + ' ' + y0 +
|
||||
'M ' + (lineX + lArrow.lineGap(env.theme, lineAttrs)) +
|
||||
' ' + y0 +
|
||||
' L ' + x1 + ' ' + y0 +
|
||||
' A ' + r + ' ' + r + ' 0 0 1 ' + x1 + ' ' + y1 +
|
||||
' L ' + (lineX + (options.right ? space : 0)) + ' ' + y1
|
||||
' L ' + (lineX + rArrow.lineGap(env.theme, lineAttrs)) +
|
||||
' ' + y1
|
||||
),
|
||||
}, config.lineAttrs[options.line])));
|
||||
}, lineAttrs)));
|
||||
|
||||
if(options.left) {
|
||||
drawHorizontalArrowHead(env.shapeLayer, {
|
||||
x: lineX + short,
|
||||
y: y0,
|
||||
dx,
|
||||
dy,
|
||||
attrs: config.arrow.attrs,
|
||||
});
|
||||
}
|
||||
lArrow.render(env.shapeLayer, env.theme, {x: lineX, y: y0, dir: 1});
|
||||
rArrow.render(env.shapeLayer, env.theme, {x: lineX, y: y1, dir: 1});
|
||||
|
||||
if(options.right) {
|
||||
drawHorizontalArrowHead(env.shapeLayer, {
|
||||
x: lineX + short,
|
||||
y: y1,
|
||||
dx,
|
||||
dy,
|
||||
attrs: config.arrow.attrs,
|
||||
});
|
||||
}
|
||||
|
||||
return y1 + dy + env.theme.actionMargin;
|
||||
return y1 + rArrow.height(env.theme) / 2 + env.theme.actionMargin;
|
||||
}
|
||||
|
||||
renderSimpleConnect({label, agentNames, options}, env) {
|
||||
|
@ -157,10 +198,10 @@ define([
|
|||
const from = env.agentInfos.get(agentNames[0]);
|
||||
const to = env.agentInfos.get(agentNames[1]);
|
||||
|
||||
const dx = config.arrow.width;
|
||||
const dy = config.arrow.height / 2;
|
||||
const lArrow = ARROWHEADS[options.left];
|
||||
const rArrow = ARROWHEADS[options.right];
|
||||
|
||||
const dir = (from.x < to.x) ? 1 : -1;
|
||||
const short = getArrowShort(env.theme);
|
||||
|
||||
const height = (
|
||||
env.textSizer.measureHeight(config.label.attrs, label) +
|
||||
|
@ -183,50 +224,47 @@ define([
|
|||
SVGTextBlockClass: env.SVGTextBlockClass,
|
||||
});
|
||||
|
||||
const space = short + dx / 2;
|
||||
|
||||
const lineAttrs = config.lineAttrs[options.line];
|
||||
env.shapeLayer.appendChild(svg.make('line', Object.assign({
|
||||
'x1': x0 + (options.left ? space : 0) * dir,
|
||||
'x1': x0 + lArrow.lineGap(env.theme, lineAttrs) * dir,
|
||||
'y1': y,
|
||||
'x2': x1 - (options.right ? space : 0) * dir,
|
||||
'x2': x1 - rArrow.lineGap(env.theme, lineAttrs) * dir,
|
||||
'y2': y,
|
||||
}, config.lineAttrs[options.line])));
|
||||
}, lineAttrs)));
|
||||
|
||||
if(options.left) {
|
||||
drawHorizontalArrowHead(env.shapeLayer, {
|
||||
x: x0 + short * dir,
|
||||
y,
|
||||
dx: dx * dir,
|
||||
dy,
|
||||
attrs: config.arrow.attrs,
|
||||
});
|
||||
lArrow.render(env.shapeLayer, env.theme, {x: x0, y, dir});
|
||||
rArrow.render(env.shapeLayer, env.theme, {x: x1, y, dir: -dir});
|
||||
|
||||
return (
|
||||
y +
|
||||
Math.max(
|
||||
lArrow.height(env.theme),
|
||||
rArrow.height(env.theme)
|
||||
) / 2 +
|
||||
env.theme.actionMargin
|
||||
);
|
||||
}
|
||||
|
||||
if(options.right) {
|
||||
drawHorizontalArrowHead(env.shapeLayer, {
|
||||
x: x1 - short * dir,
|
||||
y,
|
||||
dx: -dx * dir,
|
||||
dy,
|
||||
attrs: config.arrow.attrs,
|
||||
});
|
||||
}
|
||||
|
||||
return y + dy + env.theme.actionMargin;
|
||||
}
|
||||
|
||||
renderPre({label, agentNames}, env) {
|
||||
renderPre({label, agentNames, options}, env) {
|
||||
const config = env.theme.connect;
|
||||
|
||||
const lArrow = ARROWHEADS[options.left];
|
||||
const rArrow = ARROWHEADS[options.right];
|
||||
|
||||
const height = (
|
||||
env.textSizer.measureHeight(config.label.attrs, label) +
|
||||
config.label.margin.top +
|
||||
config.label.margin.bottom
|
||||
);
|
||||
|
||||
let arrowH = lArrow.height(env.theme);
|
||||
if(agentNames[0] !== agentNames[1]) {
|
||||
arrowH = Math.max(arrowH, rArrow.height(env.theme));
|
||||
}
|
||||
|
||||
return {
|
||||
agentNames,
|
||||
topShift: Math.max(config.arrow.height / 2, height),
|
||||
topShift: Math.max(arrowH / 2, height),
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -72,6 +72,7 @@ define(['core/ArrayUtilities', 'svg/SVGShapes'], (array, SVGShapes) => {
|
|||
},
|
||||
},
|
||||
arrow: {
|
||||
single: {
|
||||
width: 5,
|
||||
height: 10,
|
||||
attrs: {
|
||||
|
@ -80,6 +81,17 @@ define(['core/ArrayUtilities', 'svg/SVGShapes'], (array, SVGShapes) => {
|
|||
'stroke-linejoin': 'miter',
|
||||
},
|
||||
},
|
||||
double: {
|
||||
width: 4,
|
||||
height: 6,
|
||||
attrs: {
|
||||
'fill': 'none',
|
||||
'stroke': '#000000',
|
||||
'stroke-width': 1,
|
||||
'stroke-linejoin': 'miter',
|
||||
},
|
||||
},
|
||||
},
|
||||
label: {
|
||||
padding: 6,
|
||||
margin: {top: 2, bottom: 1},
|
||||
|
|
|
@ -78,6 +78,7 @@ define(['core/ArrayUtilities', 'svg/SVGShapes'], (array, SVGShapes) => {
|
|||
},
|
||||
},
|
||||
arrow: {
|
||||
single: {
|
||||
width: 10,
|
||||
height: 12,
|
||||
attrs: {
|
||||
|
@ -87,8 +88,20 @@ define(['core/ArrayUtilities', 'svg/SVGShapes'], (array, SVGShapes) => {
|
|||
'stroke-linejoin': 'round',
|
||||
},
|
||||
},
|
||||
double: {
|
||||
width: 10,
|
||||
height: 12,
|
||||
attrs: {
|
||||
'fill': 'none',
|
||||
'stroke': '#000000',
|
||||
'stroke-width': 3,
|
||||
'stroke-linejoin': 'round',
|
||||
'stroke-linecap': 'round',
|
||||
},
|
||||
},
|
||||
},
|
||||
label: {
|
||||
padding: 6,
|
||||
padding: 7,
|
||||
margin: {top: 2, bottom: 3},
|
||||
attrs: {
|
||||
'font-family': 'sans-serif',
|
||||
|
|