我可以使用joint.shapes.devs.Model
将端口添加到矩形,但同样不适用于圆圈。
以下是我尝试将端口添加到圈子中的内容:
var circle1 = new joint.shapes.basic.Circle({
position: {x: 100, y: 225},
size: {width: 51, height: 51},
outPorts: [''],
attrs: {
'.': {magnet: true},
'.label': {text: '', 'ref-x': .4, 'ref-y': .2},
'.inPorts circle': {type: 'input'},
'.outPorts circle': {type: 'output'},
'.port-body': {r: 4}
}
});
graph.addCell(circle1);
我可以看到Circle已创建,但没有端口。我找不到任何关于此的文件。任何帮助,将不胜感激。感谢
答案 0 :(得分:4)
下面的示例显示了如何使用矩形端口定义圆形元素。
joint.shapes.devs.CircleModel = joint.shapes.devs.Model.extend({
markup: '<g class="rotatable"><g class="scalable"><circle class="body"/></g><text class="label"/><g class="inPorts"/><g class="outPorts"/></g>',
portMarkup: '<g class="port port<%= id %>"><rect class="port-body"/><text class="port-label"/></g>',
defaults: joint.util.deepSupplement({
type: 'devs.CircleModel',
attrs: {
'.body': { r: 50, cx: 50, stroke: 'blue', fill: 'lightblue' },
'.label': { text: 'Circle Model', 'ref-y': 0.5, 'y-alignment': 'middle' },
'.port-body': { width: 10, height: 10, x: -5, stroke: 'gray', fill: 'lightgray', magnet: 'active' }
}
}, joint.shapes.devs.Model.prototype.defaults)
});
重要的是告诉论文不要使用默认dia.ElementView
进行渲染,而是使用devs.ModelView
。为此,只需在与相关模型相同的命名空间中定义视图,并在模型名称的末尾添加"View"
。
joint.shapes.devs.CircleModelView = joint.shapes.devs.ModelView;
用法示例:
var circleModel = new joint.shapes.devs.CircleModel({
position: { x: 500, y: 100 },
size: { width: 100, height: 100 },
inPorts: ['a'],
outPorts: ['b']
});
graph.addCell(circleModel);
JS小提琴: