Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I am testing out nuqs with an Astro app and it looks like all works great (*).
This example for the Readme shows a possible way to use it.
The thing that is different for Astro is, that there is no "Root" to place the
NuqsAdapter
IMO, since each Astro island is independent. Which is why we need to do this semi-elegant wrapper component.There might be better ways to do this, though.
(*) (!) However, I did not test (yet) how this behaves with multiple islands and
NuqsAdapter
s. This could very well break the setup. Until now I used the recommended nanostore in those cases. See https://docs.astro.build/en/recipes/sharing-state-islands/However, nanostore remove the nuqs like helper methods at some point. More on this is in nanostores/router#30. My previous workaround was to use a copy of the removed helper, eg. osmberlin/www.osm-verkehrswende.org@3d2e27b#diff-acaaec4d6340f096b1c5dab9c107023b24ec701667fa9c9bb362fdf9e92ce846R55
I will mark this as a draft for now until the
(!)
is cleared up.