Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG]incorrect display OPC UA server nodes #1628

Open
Rainproof opened this issue Feb 27, 2025 · 3 comments
Open

[BUG]incorrect display OPC UA server nodes #1628

Rainproof opened this issue Feb 27, 2025 · 3 comments
Labels
need investigation need investigation

Comments

@Rainproof
Copy link

Rainproof commented Feb 27, 2025

Environment

  • FUXA version: 1.2.3
  • Node.js version: v18.19.1
  • npm version: v10.2.4
  • Platform/OS: Windows 10
  • Browser: Google Chrome

When I click on the node "cepn1", then the node "cepn116" opens.
When I click on the node "cepn116", then the node "cepn116" opens again.
When I click on the node "lent10", then the node "lent104" opens.
When I click on the node "lent104", then the node "lent104" opens again.

in UaExpert the nodes open correctly.

Details in the attached gif files.

UaExpert
Image

FUXA 1.2..3
Image

@Rainproof Rainproof changed the title [BUG]incorrect display of nodes ops ua server [BUG]incorrect display of nodes OPC UA server Feb 27, 2025
@Rainproof Rainproof changed the title [BUG]incorrect display of nodes OPC UA server [BUG]incorrect display OPC UA server nodes Feb 27, 2025
@rusanz
Copy link

rusanz commented Feb 27, 2025

Same error on WebAPI. The addTreeNodes method doesn’t work.
In my case, I had to modify this method to handle deeply nested JSON structures.

For some reason, "x = potato", if a node has a parent and a grandparent (parent.parent), and that grandparent is an array, the node type is set to Item—just because.

So if that node is a primitive value, oh sorry, you can’t select that node.

Image

@Rainproof
Copy link
Author

Rainproof commented Mar 3, 2025

I couldn't do anything better so far:
I corrected the line
return result.sort((a, b) => (a.path > b.path) ? 1 : -1);
to
return result.sort((a, b) => a.id.localeCompare(b.id));
or to
return result.sort((a, b) => (a.id > b.id) ? 1 : -1);

in the file
client\src\app\gui-helpers\treetable\treetable.component.ts

I got this result:

Image

Now the subnodes open correctly in their nodes.
But the subnodes of Objects open not under Objects.
I don't know how to fix this yet.

@unocelli
Copy link
Member

unocelli commented Mar 9, 2025

Hi, Thanks for the report.
is it possible to reproduce it with the UaCPPServer (my test bench)?

@unocelli unocelli added the need investigation need investigation label Mar 9, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
need investigation need investigation
Projects
None yet
Development

No branches or pull requests

3 participants