mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-22 06:37:56 +01:00
Add control for errors.
This commit is contained in:
parent
3a505224f6
commit
0246851f41
@ -5,9 +5,9 @@ Cypress.on('window:before:load', (win) => {
|
||||
cy.spy(win.console, 'warn');
|
||||
});
|
||||
|
||||
// // afterEach(() => {
|
||||
// // cy.window().then((win) => {
|
||||
// // expect(win.console.error).to.have.callCount(0);
|
||||
// // expect(win.console.warn).to.have.callCount(0);
|
||||
// // });
|
||||
// afterEach(() => {
|
||||
// cy.window().then((win) => {
|
||||
// expect(win.console.error).to.have.callCount(0);
|
||||
// expect(win.console.warn).to.have.callCount(0);
|
||||
// });
|
||||
// });
|
||||
|
@ -88,7 +88,7 @@ const Editor = ({
|
||||
model.registerEvents(setCanvasUpdate, capability);
|
||||
})
|
||||
.catch((e) => {
|
||||
console.error(e);
|
||||
console.error(JSON.stringify(e));
|
||||
window.newrelic?.noticeError(
|
||||
new Error(`Unexpected error loading map ${mapInfo.getId()} = ${JSON.stringify(e)}`),
|
||||
);
|
||||
|
@ -494,18 +494,22 @@ class XMLSerializerTango implements XMLMindmapSerializer {
|
||||
|
||||
const model = mindmap.createRelationship(srcId, destId);
|
||||
model.setLineType(lineType);
|
||||
const spoint = Point.fromString(srcCtrlPoint);
|
||||
if (spoint) {
|
||||
model.setSrcCtrlPoint(spoint);
|
||||
} else {
|
||||
console.error(`srcCtrlPoint could not be parsed: ${srcCtrlPoint}`);
|
||||
if (srcCtrlPoint) {
|
||||
const spoint = Point.fromString(srcCtrlPoint);
|
||||
if (spoint) {
|
||||
model.setSrcCtrlPoint(spoint);
|
||||
} else {
|
||||
console.error(`srcCtrlPoint could not be parsed: ${srcCtrlPoint}`);
|
||||
}
|
||||
}
|
||||
|
||||
const dpoint = Point.fromString(destCtrlPoint);
|
||||
if (dpoint) {
|
||||
model.setDestCtrlPoint(dpoint);
|
||||
} else {
|
||||
console.error(`destCtrlPoint could not be parsed: ${destCtrlPoint}`);
|
||||
if (destCtrlPoint) {
|
||||
const dpoint = Point.fromString(destCtrlPoint);
|
||||
if (dpoint) {
|
||||
model.setDestCtrlPoint(dpoint);
|
||||
} else {
|
||||
console.error(`destCtrlPoint could not be parsed: ${destCtrlPoint}`);
|
||||
}
|
||||
}
|
||||
|
||||
model.setEndArrow(false);
|
||||
|
Loading…
Reference in New Issue
Block a user