Name check

This commit is contained in:
portree_kid 2020-05-13 18:53:23 +02:00
parent 6e87c3428b
commit a4d048c116

View File

@ -74,7 +74,7 @@ async function checkGroundnet(data) {
okNodes.push(parkingNode);
okNodes.push(runwayNode);
} else {
console.log(`No route from ${parkingNode} to ${runwayNode}`);
console.log(`No route from Parking ${parkingNode} to Runwaynode ${runwayNode}`);
}
this.postMessage(['progress', 1]);
});
@ -170,6 +170,17 @@ async function checkGroundnet(data) {
this.postMessage(['progress', 1]);
});
});
// Check for name
parkingNodes.forEach(parkingNode => {
if (!parkingNode.name) {
notOkNodes.push({ id: parkingNode.index, message: 'Name empty' });
this.postMessage(['progress', 1]);
}
if (!parkingNode.type) {
notOkNodes.push({ id: parkingNode.index, message: 'Parking type empty' });
this.postMessage(['progress', 1]);
}
});
// Check for intersecting radii
parkingNodes.forEach(parkingNode => {
if (!parkingNode.name || /^\s*$/.test(parkingNode.name)) {