├── .gitignore ├── README.md ├── package.json ├── pnpm-lock.yaml ├── public └── tailwind.css ├── server.js ├── src ├── components │ ├── Movie.tsx │ └── MovieCards.tsx ├── entry-client.tsx ├── entry-server.tsx ├── fetch-polyfill.js ├── globals.css ├── routeTree.gen.ts ├── router.tsx ├── routerContext.tsx ├── routes │ ├── __root.tsx │ ├── index.tsx │ ├── movies │ │ └── $movieId.tsx │ ├── search.index.tsx │ └── search.tsx └── types.ts ├── tailwind.config.js ├── tsconfig.dev.json ├── tsconfig.json ├── tsr.config.json └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/public/tailwind.css -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/server.js -------------------------------------------------------------------------------- /src/components/Movie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/src/components/Movie.tsx -------------------------------------------------------------------------------- /src/components/MovieCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/src/components/MovieCards.tsx -------------------------------------------------------------------------------- /src/entry-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/src/entry-client.tsx -------------------------------------------------------------------------------- /src/entry-server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/src/entry-server.tsx -------------------------------------------------------------------------------- /src/fetch-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/src/fetch-polyfill.js -------------------------------------------------------------------------------- /src/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/src/globals.css -------------------------------------------------------------------------------- /src/routeTree.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/src/routeTree.gen.ts -------------------------------------------------------------------------------- /src/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/src/router.tsx -------------------------------------------------------------------------------- /src/routerContext.tsx: -------------------------------------------------------------------------------- 1 | export type RouterContext = { 2 | head: string 3 | } 4 | -------------------------------------------------------------------------------- /src/routes/__root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/src/routes/__root.tsx -------------------------------------------------------------------------------- /src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/src/routes/index.tsx -------------------------------------------------------------------------------- /src/routes/movies/$movieId.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/src/routes/movies/$movieId.tsx -------------------------------------------------------------------------------- /src/routes/search.index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/src/routes/search.index.tsx -------------------------------------------------------------------------------- /src/routes/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/src/routes/search.tsx -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/src/types.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/tsconfig.dev.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsr.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/tsr.config.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/tanstack-router-streaming-movies/HEAD/vite.config.js --------------------------------------------------------------------------------