Я использую angular 7 и joint.js, чтобы создать собственное определение формы. Например,
joint.shapes.devs.Model.define("devs.Type",
{
size: {
width: 300,
height: "auto"
}
});
joint.shapes.standard.Rectangle.define('examples.CustomRectangle', {
attrs: {
body: {
rx: 10, // add a corner radius
ry: 10,
strokeWidth: 1,
fill: 'cornflowerblue'
},
label: {
textAnchor: 'left', // align text to left
refX: 10, // offset text from right edge of model bbox
fill: 'white',
fontSize: 18
}
}
});
var rect2 = new joint.shapes.examples.CustomRectangle();
var a1 = new joint.shapes.devs.Type(node);
Компиляция кода дает мне две ошибки
Ошибка TS2339: свойство 'Тип' не существует в типе 'typeof devs' Ошибка TS2341: Примеры свойств ''не существует в типе' typeof shape '.
Как бы я решил эту проблему?
Более того, ссылка для клиента определяет метод transitionColor, но он может'не вызывается в paper.on ("link: mouseover", ...., ошибка
Свойство 'transitionColor' не существует для типа 'Link'.
joint.dia.Link.define(
"devs.Link",
{
attrs: {
line: {
connection: true
},
wrapper: {
connection: true,
strokeWidth: 2,
strokeLinejoin: "round"
}
}
},
{
markup: [
{
tagName: "path",
selector: "wrapper",
attributes: {
fill: "none",
cursor: "pointer",
stroke: "transparent"
}
},
{
tagName: "path",
selector: "line",
attributes: {
fill: "none",
"pointer-events": "none"
}
}
],
transitionAsync: function (...args) {
return new Promise(resolve => {
this.transition(...args);
this.on("transition:end", () => {
resolve();
});
});
},
transitionColor: function (color, { delay = 0, duration = 100 }) {
return this.prop("attrs/line/stroke", color);
},
transitionOpacity: function (opacity, { delay = 0, duration = 100 }) {
return this.prop("attrs/line/opacity", opacity);
}
}
);
paper.on("link:mouseover", (linkView: any) => {
const links = this.graph.getLinks();
links.map(link => {
if (link === linkView.model) {
return;
}
link.transitionColor(theme.colors.line.inactive, {duration:500});
link.toBack()
});
});