Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(useSearchParams): new hook #503

Merged
merged 1 commit into from
Jan 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/wouter-preact/src/preact-deps.js
Original file line number Diff line number Diff line change
@@ -7,6 +7,7 @@ export {
Fragment,
} from "preact";
export {
useMemo,
useRef,
useLayoutEffect as useIsomorphicLayoutEffect,
useLayoutEffect as useInsertionEffect,
20 changes: 20 additions & 0 deletions packages/wouter/src/index.js
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@ import {
forwardRef,
useIsomorphicLayoutEffect,
useEvent,
useMemo,
} from "./react-deps.js";
import { absolutePath, relativePath, sanitizeSearch } from "./paths.js";

@@ -202,6 +203,25 @@ const useCachedParams = (value) => {
return (prev.current = curr);
};

export function useSearchParams() {
const [location, navigate] = useLocation();

const search = useSearch();
const searchParams = useMemo(() => new URLSearchParams(search), [search]);

// cached value before next render, so you can call setSearchParams multiple times
let tempSearchParams = searchParams;

const setSearchParams = useEvent((nextInit, options) => {
tempSearchParams = new URLSearchParams(
typeof nextInit === 'function' ? nextInit(tempSearchParams) : nextInit,
);
navigate(location + '?' + tempSearchParams, options);
})

return [searchParams, setSearchParams];
}

export const Route = ({ path, nest, match, ...renderProps }) => {
const router = useRouter();
const [location] = useLocationFromRouter(router);
1 change: 1 addition & 0 deletions packages/wouter/src/react-deps.js
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@ import * as React from "react";
const useBuiltinInsertionEffect = React["useInsertion" + "Effect"];

export {
useMemo,
useRef,
useState,
useContext,
60 changes: 60 additions & 0 deletions packages/wouter/test/use-search-params.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
import { renderHook, act } from "@testing-library/react";
import { useSearchParams, Router } from "wouter";
import { navigate } from "wouter/use-browser-location";
import { it, expect, beforeEach } from "vitest";

beforeEach(() => history.replaceState(null, "", "/"));

it("can return browser search params", () => {
history.replaceState(null, "", "/users?active=true");
const { result } = renderHook(() => useSearchParams());

expect(result.current[0].get('active')).toBe("true");
});

it("can change browser search params", () => {
history.replaceState(null, "", "/users?active=true");
const { result } = renderHook(() => useSearchParams());

expect(result.current[0].get('active')).toBe("true");

act(() => result.current[1](prev => {
prev.set('active', 'false');
return prev;
}));

expect(result.current[0].get('active')).toBe("false");
});

it("can be customized in the Router", () => {
const customSearchHook = ({ customOption = "unused" }) => "none";

const { result } = renderHook(() => useSearchParams(), {
wrapper: (props) => {
return <Router searchHook={customSearchHook}>{props.children}</Router>;
},
});

expect(Array.from(result.current[0].keys())).toEqual(["none"]);
});

it("unescapes search string", () => {
const { result: searchResult } = renderHook(() => useSearchParams());

expect(Array.from(searchResult.current[0].keys()).length).toBe(0);

act(() => navigate("/?nonce=not Found&country=საქართველო"));
expect(searchResult.current[0].get('nonce')).toBe("not Found");
expect(searchResult.current[0].get('country')).toBe("საქართველო");

// question marks
act(() => navigate("/?вопрос=как дела?"));
expect(searchResult.current[0].get('вопрос')).toBe("как дела?");
});

it("is safe against parameter injection", () => {
history.replaceState(null, "", "/?search=foo%26parameter_injection%3Dbar");
const { result } = renderHook(() => useSearchParams());

expect(result.current[0].get('search')).toBe("foo&parameter_injection=bar");
});
8 changes: 8 additions & 0 deletions packages/wouter/types/index.d.ts
Original file line number Diff line number Diff line change
@@ -185,6 +185,14 @@ export function useSearch<
H extends BaseSearchHook = BrowserSearchHook
>(): ReturnType<H>;

export type URLSearchParamsInit = ConstructorParameters<typeof URLSearchParams>[0];
export type SetSearchParams = (
nextInit: URLSearchParamsInit | ((prev: URLSearchParams) => URLSearchParamsInit),
options?: { replace?: boolean; state?: any },
) => void;

export function useSearchParams(): [URLSearchParams, SetSearchParams];

export function useParams<T = undefined>(): T extends string
? StringRouteParams<T>
: T extends undefined
Loading
Oops, something went wrong.