-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Fixing circular references Issue & Some Enhancement #3424
base: develop
Are you sure you want to change the base?
Conversation
I think this issue requires more discussion. In particular, is the only way forward is to not render logs having circular objects? I think this is rather limiting for the console, which is often used for debugging objects. All of p5 objects are also circular in nature. I am pretty sure that earlier it was possible to log such objects. Don't know if at that time redux was being used or not. I think we should first explore the feasibility of bringing back the old behaviour (being able to log circular objects). |
I've gone through the Immer documentation, and there's no issue related to Redux here. The problem was that the console feed was consoling the holding messages of redux directly which causing recurrence and stack overflow instead passing refernce of the same object. For your concern about logging circular objects, I used JSON.parse and JSON.stringify for serialization, and everything is working well. The PR is good to go |
The issue which caused the
Sorry, I somewhat misunderstood what the code was doing. According to my re-reading of the code, it seems to take any nested objects which is a reference to one of the parents, and replaces with a string message. However, what I meant was that ideally on logging an infinitely recursive object, one could expect a (virtually) infinite object rendered on the console which can be navigated throughout (the data staying intact, without anything being replaced). See this comment for an example for how that may work. So, I maintain my position that more discussion/exploration is needed for this issue. |
@dipamsen hey i found a solution in which i will try to pass the same object recursively without causing maximum stack error rather than replacing with string 'Circular reference '. I was pretty busy in some other issue i will fix it by tomorrow. |
Hey @dipamsen Thank you so much for you Review's and your suggestion it helps me very much i fixed all the required fixes as you can see |
This is a good solution. While not actually infinite, having a maximum depth of 10 should work for practical purposes. I am not sure if there are any other considerations to be taken into account (eg. Performance). I will let the maintainers continue this discussion. |
Fixes #3178
Changes:
Created a function safeStringify() that traverses the message before printing it.
It checks each key-value pair and replaces circular references with a "[Circular Reference]" message in JSON.
Added try-catch blocks for better error handling.
I have verified that this pull request:
npm run lint
)npm run test
)develop
branch.Fixes #123