Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

pawelblaszczyk5

pawelblaszczyk5 created a comment on an issue on remix-run/react-router
The given code sandbox is private. But I guess it’s related to the fact that for client side navigations React `startTransition` is used so that alters behavior of Suspense boundaries a bit

View on GitHub

pawelblaszczyk5 created a comment on a pull request on sveltejs/kit
> > I invite you to read the [docs on the handle hook](https://svelte.dev/docs/kit/hooks#Server-hooks-handle), which already give you this functionality. > > It doesn't. > > Concrete use case...

View on GitHub

pawelblaszczyk5 created a comment on an issue on facebook/stylex
Thanks a lot!

View on GitHub

pawelblaszczyk5 open sourced pawelblaszczyk5/stylex-incorrect-types-repro
pawelblaszczyk5 created a comment on an issue on facebook/stylex
> [@pawelblaszczyk5](https://github.com/pawelblaszczyk5) I can't seem to open the repro you linked. I'm getting a 404. Oh, sorry made it private by accident while pushing - fixed now

View on GitHub

pawelblaszczyk5 created a comment on an issue on facebook/react
There was similar isssue about React itself and the team answered that these pre releases aren’t supposed to follow semantic versioning - https://github.com/facebook/react/issues/30415

View on GitHub

pawelblaszczyk5 opened an issue on facebook/stylex
TypeScript error while using `stylex.types` - `the inferred type cannot be named without a reference`
### Describe the issue Hello 👋 `stylex.types` functions are typed to return specific class instances for each of the types - all of these are imported from `VarTypes` file. However, these aren't ...
pawelblaszczyk5 created a comment on an issue on remix-run/react-router
Afaik it has something to do with Chrome itself - https://github.com/facebook/react/issues/31929 https://github.com/TanStack/router/issues/3056 https://github.com/remix-run/react-router/issues/1...

View on GitHub

pawelblaszczyk5 created a comment on a pull request on remix-run/react-router
This also seems to be fixing this one: https://github.com/remix-run/react-router/issues/12715 ![image](https://github.com/user-attachments/assets/fd8de663-67fe-4cc5-b8fd-9fa5369b0bd0)

View on GitHub

pawelblaszczyk5 created a comment on an issue on remix-run/react-router
You could also use `package.json#imports` which are standard based and works across tooling 😃 In theory tsconfig paths aren’t for creating custom aliases

View on GitHub

pawelblaszczyk5 opened an issue on remix-run/react-router
`AppLoadContext` in typegen files isn't correctly augmented when using `NodeNext` module resolution
### I'm using React Router as a... framework ### Reproduction This was previously reported as a part of https://github.com/remix-run/react-router/issues/12424 Since that one is already resolved ...
pawelblaszczyk5 created a branch on pawelblaszczyk5/app-load-context-repro

main

pawelblaszczyk5 created a comment on an issue on vercel/next.js
> Ok, we'll have to look closer at whether we want to add `import "client-only"` to some parts of the library (e.g. the components with unserializable props). > > However, at the core of the iss...

View on GitHub

pawelblaszczyk5 created a comment on an issue on vercel/next.js
> But most of these components are very renderable both serverside and clientside, it's just that some of them contain hooks and must therefore have the `"use client"` directive at the top of the f...

View on GitHub

pawelblaszczyk5 created a comment on an issue on vercel/next.js
I think many of them shouldn’t be marked with “use client” at all because they have unserializable props and they aren’t suitable as boundaries. Check out this MR from React Aria - https://github.c...

View on GitHub

pawelblaszczyk5 created a comment on an issue on vercel/next.js
If you mark a file with “use client” and import it from server components the content of the module is replaced with references. You can’t access values off from references - hence it breaks

View on GitHub

pawelblaszczyk5 created a comment on an issue on remix-run/react-router
Add `as const` to `clientLoader.hydrate = true` - this way it’ll be inferred as “true” instead of a Boolean 😃 I recall this being documented somewhere but can’t find it now

View on GitHub