Vladislav Lipatov

Results 19 comments of 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. ![image](https://github.com/solidjs/solid/assets/13636224/efdda460-5b0c-4b56-8ac3-78898c446011) When you do navigation `createEffect(() => console.log(comments.state));` is always `ready` ![image](https://github.com/solidjs/solid/assets/13636224/27756102-d1f1-46ab-979c-de8b0e4d9214)

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...