Add control for errors.

This commit is contained in:
Paulo Gustavo Veiga 2022-12-04 22:03:55 -08:00
parent 3a505224f6
commit 0246851f41
3 changed files with 20 additions and 16 deletions

View File

@ -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);
// });
// });

View File

@ -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)}`),
);

View File

@ -494,19 +494,23 @@ class XMLSerializerTango implements XMLMindmapSerializer {
const model = mindmap.createRelationship(srcId, destId);
model.setLineType(lineType);
if (srcCtrlPoint) {
const spoint = Point.fromString(srcCtrlPoint);
if (spoint) {
model.setSrcCtrlPoint(spoint);
} else {
console.error(`srcCtrlPoint could not be parsed: ${srcCtrlPoint}`);
}
}
if (destCtrlPoint) {
const dpoint = Point.fromString(destCtrlPoint);
if (dpoint) {
model.setDestCtrlPoint(dpoint);
} else {
console.error(`destCtrlPoint could not be parsed: ${destCtrlPoint}`);
}
}
model.setEndArrow(false);
model.setStartArrow(true);