Git Product home page Git Product logo

Comments (7)

guido4000 avatar guido4000 commented on May 4, 2024 1

I wondered, too. But you can use the loader template from the index.ts file in the loaders folder.

import type { DataLoader } from "@remix-run/core";

let loader: DataLoader = async () => {
  return fetch("https://api.github.com/gists");
};

export = loader;

from remix.

mikeybinns avatar mikeybinns commented on May 4, 2024 1

This seemed odd to me as I had to create a loaders folder in the starter project. My guess is they renamed the "loaders" folder to "data" and forgot to update the docs on that page, or just missed it.
They also referenced "gists.ts" when on the previous page, we created a "gists.tsx" file, minor issue, but easy fix.

@anglee try using the data folder instead of the loaders folder. It should work.

Update:
I found this code in the source code which seems to confirm my suspicions. The docs are wrong, the folder should be data:

/**
 * Returns the data for the current route from `data/routes/*`.
 */
export declare function useRouteData<T = AppData>(): T;

from remix.

guido4000 avatar guido4000 commented on May 4, 2024

The same applies to the team and member loaders later in the tutorial.

from remix.

beerify avatar beerify commented on May 4, 2024

They also referenced "gists.ts" when on the previous page, we created a "gists.tsx" file, minor issue, but easy fix.

I believe the gists.tsx is for the react component similar to jsx. Plain typescript files are just .ts. So theres a gists react component (tsx) and a gists loader (ts)

from remix.

beerify avatar beerify commented on May 4, 2024

@anglee try using the data folder instead of the loaders folder. It should work.
I'm getting null in either case

from remix.

beerify avatar beerify commented on May 4, 2024

edit: The reason certain routes are not loading is because there's an issue with the build process. Check data-build/routes to see if the route has been rendered there. If not, you're going to get null.

I'm not sure what the issue is but data seems to load or fail to load in an arbitrary fashion. I have gists working and now the team data is showing null much in the same was as gists were previously. Nothing changed to get gists to work, it just started working at some random point, perhaps the team will decide to start working as well.

Maybe there's something going on behind the scenes thats preventing data from loading?

data/routes/gists/ts:

import type { Loader } from "@remix-run/data";

let loader: Loader = () => {
  return fetch("https://api.github.com/gists");
};

export { loader };

data/routes/team.js

import type { Loader } from "@remix-run/data";

let loader: Loader = () => {
  return fetch("https://api.github.com/orgs/reacttraining/members");
};

export { loader };

from remix.

machour avatar machour commented on May 4, 2024

Not applicable anymore.

from remix.

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.