gsoutz
How to test for is loaded for a create async source change
cursor path is always set to some value anyway, and it is saved in database. It's just shouldn't be set to a wrong path if the replay_tree is the old one. I am fully aware and familiar how async await or promises work. It's just tracking the control flow of these effects, which I have to use in order to build something functional with solid.js is getting worse.
10 replies
How to test for is loaded for a create async source change
I set a state variable is_replay_tree_just_loaded, set to false initially and set to true on this
then
clause of the async query to get the replay_tree.
so I can test against that to see if replay_tree is just loaded to be available for display.
I also do a state transition to a next state where tree is ready to be used.
I tried both setTimeout and queueMicrotask,
queueMicrotask, is too early to trigger replay_tree_is_just_loaded before the replay_tree is actually has the fresh value, so it throws in my code because code uses old replay_tree .
setTimeout however seemed to fix the issues.
However I am so troubled doing these things with so many caveats and hard to track down state flow.
I am not sure if it's the nature of solid.js or nature of using async data loading logic.10 replies
How to test for is loaded for a create async source change
Promise resolves a replay tree, when the replay tree is loaded, I want to set the cursor to a specific location, so it renders the correct path in the tree. As a solution I could tell to load the replay tree with the cursor set to correct location, but I just had to ask before I do that.
10 replies
can't setup a basic state machine interactive quiz type of game
Here's an example code showcasing how I achieved my success with this feature:
So this kind of system basically works with no bugs at least visually as far as I could test it under 1 hour.
11 replies
I need to run an effect when an async signal or a store signal, or another async signal are equal
there is 2 separate async data is loading, and they are changing over time, i want to display the view only when both data are loaded and in sync.
8 replies
query function invalidates the cache every 10 clicks
I completely understand your very detailed explanation. I think I have to keep a reference to the fetch results somewhere basically invent my own caching mechanism. Although It's not a main concern to me right now, since my app is all working local first.
34 replies
query function invalidates the cache every 10 clicks
But I don't have the list of id's 1 and 2 before hand to hardcode them like that. I don't see how this is useful to me. I just copied the example code from the real-world project. If you have a recent code repository on how to work out a real world example that would be great. https://github.com/solidjs/solid-realworld
34 replies
query function invalidates the cache every 10 clicks
I don't understand what you guys are talking about. Also your example is acting weird, not sure how it is supposed to work, but. Sometimes the
Result: time
value updates sometimes it doesn't update, each time I reload the example. and it never hit's the database again.34 replies
query function invalidates the cache every 10 clicks
oh ok thank you. Maybe mention that very important detail in the docs, and suggest an alternative, I used to use "cache" but the docs already says the use query instead. So what is the purpose of revalidate then if no long lived cache exists.
34 replies
What to do instead of loading a model with createMemo inside a createResource computation
As in data separate from behaviour. It was never meant to create "reactive objects"I did some research, and stumbled upon this: https://github.com/solidjs/solid-realworld/blob/main/src/store/createAuth.js What is the difference between this code and my code. What is wrong with putting setters and getters inside the same "array" or an "object".
7 replies
What to do instead of loading a model with createMemo inside a createResource computation
Here I created a playground, but I don't understand it is not giving the warning here.
https://playground.solidjs.com/anonymous/958d99b1-8bf7-4e99-9918-19d396435658
7 replies