Vladislav Lipatov
Vladislav Lipatov
Would it be better to improve directives syntax instead? Some time ago solid supported `className` field. It means that it's possible to make a solid field called `use={[directivesArrayHere]}`. IMO this...
Unfortunately, it's quite difficult to "ignore" TS because the majority of projects uses typescript.
Actually, I think, this should be done also for Mobx, because mobx also has flows, so this is an update for flow and not for MST.
Please, merge this PR
This was solved here: https://discord.com/channels/722131463138705510/1229910798135066716/1230151418569298052
Looks like the problem somewhere here: https://github.com/nksaraf/vinxi/blob/6f3d81beabc8cf003c0095eb9b44198ed02f2784/packages/vinxi-solid/lazy-route.jsx or in function `appendStyles`
I do want to fix this, because it makes development really difficult and buggy, especially when you do solid-start for work. @nksaraf how can I help with that? It's difficult...
Investigating: the order of styles is described here: https://github.com/nksaraf/vinxi/blob/6f3d81beabc8cf003c0095eb9b44198ed02f2784/packages/vinxi/lib/manifest/collect-styles.js#L4 Maybe the problem should be fixed here.
The same thing is when you trigger a resource inside data function when searchParams are being changed.  When you do navigation `createEffect(() => console.log(comments.state));` is always `ready` 
Oh, interesting thing when I do `createComputed(() => console.log(comments.state));` I see `refresing` `ready` I suppose this is because of transition happening in the router. However I need to reflect this...