Git Product home page Git Product logo

Comments (1)

TkachenkoAA avatar TkachenkoAA commented on May 3, 2024

Source code of demo

import { StrictMode, useState } from "react";
import { createRoot } from "react-dom/client";
import {
  Link,
  Outlet,
  useFetcher,
  RouterProvider,
  createBrowserRouter,
  createSearchParams,
  generatePath,
} from "react-router-dom";

const AppLayout = () => {
  return (
    <div>
      <div>
        <Link to={"/fetcherWithKey"}>FetcherWithKey</Link>
        <br />
        <Link to={"/fetcherWithoutKey"}>FetcherWithoutKey</Link>
        <br />
        <Link to={"/other"}>Other</Link>
      </div>
      <Outlet />
    </div>
  );
};

const fakeLoader = async ({ request }) => {
  const url = new URL(request.url);
  const page = Number(url.searchParams.get("page")) || 0;

  const data = Array.from({ length: 15 }, (_, i) => i + page * 15).map(
    (id) => ({
      id,
    })
  );

  await new Promise((res) => setTimeout(res, 500));

  return Promise.resolve({
    data,
    page,
  });
};

const FetcherWithKey = () => {
  const fetcher = useFetcher({ key: "list1Route" });

  const handleFetcher = () => {
    const search = createSearchParams({
      page: String(fetcher.data ? fetcher.data.page + 1 : 0),
    });

    const generatedPath = generatePath(`/fetcherWithKey?${search}`);

    fetcher.load(generatedPath);
  };

  return (
    <div>
      <button onClick={handleFetcher}>Load fetcher</button>
      <pre>{JSON.stringify(fetcher, null, " ")}</pre>
    </div>
  );
};

const FetcherWithoutKey = () => {
  const fetcher = useFetcher();

  const handleFetcher = () => {
    const search = createSearchParams({
      page: String(fetcher.data ? fetcher.data.page + 1 : 0),
    });

    const generatedPath = generatePath(`/fetcherWithoutKey?${search}`);

    fetcher.load(generatedPath);
  };

  return (
    <div>
      <button onClick={handleFetcher}>Load fetcher</button>
      <pre>{JSON.stringify(fetcher, null, " ")}</pre>
    </div>
  );
};

const Other = () => {
  return "OtherRoute";
};

const FetcherWithKeyRoute = {
  path: "/fetcherWithKey",
  element: <FetcherWithKey />,
  loader: fakeLoader,
};

const FetcherWithoutKeyRoute = {
  path: "/fetcherWithoutKey",
  element: <FetcherWithoutKey />,
  loader: fakeLoader,
};

const OtherRoute = {
  path: "/other",
  element: <Other />,
};

const routes = createBrowserRouter([
  {
    path: "/",
    element: <AppLayout />,
    children: [FetcherWithKeyRoute, FetcherWithoutKeyRoute, OtherRoute],
  },
]);

const rootElement = document.getElementById("root");
const root = createRoot(rootElement);

root.render(
  <StrictMode>
    <RouterProvider router={routes} />
  </StrictMode>
);

from react-router.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.