Skip to content
Snippets Groups Projects
Commit 45c2874c authored by rhenck's avatar rhenck
Browse files

Fix element ID initialization

There were some cases where elements could end up without an ID.
Also just in case an error is thrown when no ID is present.
parent d458e13c
No related branches found
No related tags found
No related merge requests found
Pipeline #38405 canceled
......@@ -28,7 +28,6 @@ export abstract class UIElement {
constructor(element: Partial<UIElement>, ...args: unknown[]) {
if (!element.type) throw Error('Element has no type!');
this.type = element.type;
if (element.id) this.id = element.id;
// IDManager is an optional parameter. When given, check/repair and register the ID.
if (args[0]) {
......@@ -37,9 +36,14 @@ export abstract class UIElement {
this.id = idManager.getNewID(element.type as string);
} else if (!IDManager.getInstance().isIdAvailable(element.id)) {
this.id = idManager.getNewID(element.type as string);
} else {
this.id = element.id;
}
idManager.addID(this.id);
this.height = 1000;
} else if (element.id) {
this.id = element.id;
} else {
throw Error('No ID for element!');
}
if (element.width) this.width = element.width;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment