this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

first structure

+328
+274
src/routeTree.gen.ts
··· 1 + /* eslint-disable */ 2 + 3 + // @ts-nocheck 4 + 5 + // noinspection JSUnusedGlobalSymbols 6 + 7 + // This file was automatically generated by TanStack Router. 8 + // You should NOT make any changes in this file as it will be overwritten. 9 + // Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified. 10 + 11 + // Import Routes 12 + 13 + import { Route as rootRoute } from './routes/__root' 14 + import { Route as SuspenceImport } from './routes/suspence' 15 + import { Route as SearchDebouncingImport } from './routes/search-debouncing' 16 + import { Route as PreloadingImport } from './routes/preloading' 17 + import { Route as PaginationImport } from './routes/pagination' 18 + import { Route as IntentPreloadingImport } from './routes/intent-preloading' 19 + import { Route as BasicImport } from './routes/basic' 20 + import { Route as IndexImport } from './routes/index' 21 + import { Route as DemoTanstackQueryImport } from './routes/demo.tanstack-query' 22 + 23 + // Create/Update Routes 24 + 25 + const SuspenceRoute = SuspenceImport.update({ 26 + id: '/suspence', 27 + path: '/suspence', 28 + getParentRoute: () => rootRoute, 29 + } as any) 30 + 31 + const SearchDebouncingRoute = SearchDebouncingImport.update({ 32 + id: '/search-debouncing', 33 + path: '/search-debouncing', 34 + getParentRoute: () => rootRoute, 35 + } as any) 36 + 37 + const PreloadingRoute = PreloadingImport.update({ 38 + id: '/preloading', 39 + path: '/preloading', 40 + getParentRoute: () => rootRoute, 41 + } as any) 42 + 43 + const PaginationRoute = PaginationImport.update({ 44 + id: '/pagination', 45 + path: '/pagination', 46 + getParentRoute: () => rootRoute, 47 + } as any) 48 + 49 + const IntentPreloadingRoute = IntentPreloadingImport.update({ 50 + id: '/intent-preloading', 51 + path: '/intent-preloading', 52 + getParentRoute: () => rootRoute, 53 + } as any) 54 + 55 + const BasicRoute = BasicImport.update({ 56 + id: '/basic', 57 + path: '/basic', 58 + getParentRoute: () => rootRoute, 59 + } as any) 60 + 61 + const IndexRoute = IndexImport.update({ 62 + id: '/', 63 + path: '/', 64 + getParentRoute: () => rootRoute, 65 + } as any) 66 + 67 + const DemoTanstackQueryRoute = DemoTanstackQueryImport.update({ 68 + id: '/demo/tanstack-query', 69 + path: '/demo/tanstack-query', 70 + getParentRoute: () => rootRoute, 71 + } as any) 72 + 73 + // Populate the FileRoutesByPath interface 74 + 75 + declare module '@tanstack/react-router' { 76 + interface FileRoutesByPath { 77 + '/': { 78 + id: '/' 79 + path: '/' 80 + fullPath: '/' 81 + preLoaderRoute: typeof IndexImport 82 + parentRoute: typeof rootRoute 83 + } 84 + '/basic': { 85 + id: '/basic' 86 + path: '/basic' 87 + fullPath: '/basic' 88 + preLoaderRoute: typeof BasicImport 89 + parentRoute: typeof rootRoute 90 + } 91 + '/intent-preloading': { 92 + id: '/intent-preloading' 93 + path: '/intent-preloading' 94 + fullPath: '/intent-preloading' 95 + preLoaderRoute: typeof IntentPreloadingImport 96 + parentRoute: typeof rootRoute 97 + } 98 + '/pagination': { 99 + id: '/pagination' 100 + path: '/pagination' 101 + fullPath: '/pagination' 102 + preLoaderRoute: typeof PaginationImport 103 + parentRoute: typeof rootRoute 104 + } 105 + '/preloading': { 106 + id: '/preloading' 107 + path: '/preloading' 108 + fullPath: '/preloading' 109 + preLoaderRoute: typeof PreloadingImport 110 + parentRoute: typeof rootRoute 111 + } 112 + '/search-debouncing': { 113 + id: '/search-debouncing' 114 + path: '/search-debouncing' 115 + fullPath: '/search-debouncing' 116 + preLoaderRoute: typeof SearchDebouncingImport 117 + parentRoute: typeof rootRoute 118 + } 119 + '/suspence': { 120 + id: '/suspence' 121 + path: '/suspence' 122 + fullPath: '/suspence' 123 + preLoaderRoute: typeof SuspenceImport 124 + parentRoute: typeof rootRoute 125 + } 126 + '/demo/tanstack-query': { 127 + id: '/demo/tanstack-query' 128 + path: '/demo/tanstack-query' 129 + fullPath: '/demo/tanstack-query' 130 + preLoaderRoute: typeof DemoTanstackQueryImport 131 + parentRoute: typeof rootRoute 132 + } 133 + } 134 + } 135 + 136 + // Create and export the route tree 137 + 138 + export interface FileRoutesByFullPath { 139 + '/': typeof IndexRoute 140 + '/basic': typeof BasicRoute 141 + '/intent-preloading': typeof IntentPreloadingRoute 142 + '/pagination': typeof PaginationRoute 143 + '/preloading': typeof PreloadingRoute 144 + '/search-debouncing': typeof SearchDebouncingRoute 145 + '/suspence': typeof SuspenceRoute 146 + '/demo/tanstack-query': typeof DemoTanstackQueryRoute 147 + } 148 + 149 + export interface FileRoutesByTo { 150 + '/': typeof IndexRoute 151 + '/basic': typeof BasicRoute 152 + '/intent-preloading': typeof IntentPreloadingRoute 153 + '/pagination': typeof PaginationRoute 154 + '/preloading': typeof PreloadingRoute 155 + '/search-debouncing': typeof SearchDebouncingRoute 156 + '/suspence': typeof SuspenceRoute 157 + '/demo/tanstack-query': typeof DemoTanstackQueryRoute 158 + } 159 + 160 + export interface FileRoutesById { 161 + __root__: typeof rootRoute 162 + '/': typeof IndexRoute 163 + '/basic': typeof BasicRoute 164 + '/intent-preloading': typeof IntentPreloadingRoute 165 + '/pagination': typeof PaginationRoute 166 + '/preloading': typeof PreloadingRoute 167 + '/search-debouncing': typeof SearchDebouncingRoute 168 + '/suspence': typeof SuspenceRoute 169 + '/demo/tanstack-query': typeof DemoTanstackQueryRoute 170 + } 171 + 172 + export interface FileRouteTypes { 173 + fileRoutesByFullPath: FileRoutesByFullPath 174 + fullPaths: 175 + | '/' 176 + | '/basic' 177 + | '/intent-preloading' 178 + | '/pagination' 179 + | '/preloading' 180 + | '/search-debouncing' 181 + | '/suspence' 182 + | '/demo/tanstack-query' 183 + fileRoutesByTo: FileRoutesByTo 184 + to: 185 + | '/' 186 + | '/basic' 187 + | '/intent-preloading' 188 + | '/pagination' 189 + | '/preloading' 190 + | '/search-debouncing' 191 + | '/suspence' 192 + | '/demo/tanstack-query' 193 + id: 194 + | '__root__' 195 + | '/' 196 + | '/basic' 197 + | '/intent-preloading' 198 + | '/pagination' 199 + | '/preloading' 200 + | '/search-debouncing' 201 + | '/suspence' 202 + | '/demo/tanstack-query' 203 + fileRoutesById: FileRoutesById 204 + } 205 + 206 + export interface RootRouteChildren { 207 + IndexRoute: typeof IndexRoute 208 + BasicRoute: typeof BasicRoute 209 + IntentPreloadingRoute: typeof IntentPreloadingRoute 210 + PaginationRoute: typeof PaginationRoute 211 + PreloadingRoute: typeof PreloadingRoute 212 + SearchDebouncingRoute: typeof SearchDebouncingRoute 213 + SuspenceRoute: typeof SuspenceRoute 214 + DemoTanstackQueryRoute: typeof DemoTanstackQueryRoute 215 + } 216 + 217 + const rootRouteChildren: RootRouteChildren = { 218 + IndexRoute: IndexRoute, 219 + BasicRoute: BasicRoute, 220 + IntentPreloadingRoute: IntentPreloadingRoute, 221 + PaginationRoute: PaginationRoute, 222 + PreloadingRoute: PreloadingRoute, 223 + SearchDebouncingRoute: SearchDebouncingRoute, 224 + SuspenceRoute: SuspenceRoute, 225 + DemoTanstackQueryRoute: DemoTanstackQueryRoute, 226 + } 227 + 228 + export const routeTree = rootRoute 229 + ._addFileChildren(rootRouteChildren) 230 + ._addFileTypes<FileRouteTypes>() 231 + 232 + /* ROUTE_MANIFEST_START 233 + { 234 + "routes": { 235 + "__root__": { 236 + "filePath": "__root.tsx", 237 + "children": [ 238 + "/", 239 + "/basic", 240 + "/intent-preloading", 241 + "/pagination", 242 + "/preloading", 243 + "/search-debouncing", 244 + "/suspence", 245 + "/demo/tanstack-query" 246 + ] 247 + }, 248 + "/": { 249 + "filePath": "index.tsx" 250 + }, 251 + "/basic": { 252 + "filePath": "basic.tsx" 253 + }, 254 + "/intent-preloading": { 255 + "filePath": "intent-preloading.tsx" 256 + }, 257 + "/pagination": { 258 + "filePath": "pagination.tsx" 259 + }, 260 + "/preloading": { 261 + "filePath": "preloading.tsx" 262 + }, 263 + "/search-debouncing": { 264 + "filePath": "search-debouncing.tsx" 265 + }, 266 + "/suspence": { 267 + "filePath": "suspence.tsx" 268 + }, 269 + "/demo/tanstack-query": { 270 + "filePath": "demo.tanstack-query.tsx" 271 + } 272 + } 273 + } 274 + ROUTE_MANIFEST_END */
+9
src/routes/basic.tsx
··· 1 + import { createFileRoute } from '@tanstack/react-router' 2 + 3 + export const Route = createFileRoute('/basic')({ 4 + component: RouteComponent, 5 + }) 6 + 7 + function RouteComponent() { 8 + return <div>Hello "/basic"!</div> 9 + }
+9
src/routes/intent-preloading.tsx
··· 1 + import { createFileRoute } from '@tanstack/react-router' 2 + 3 + export const Route = createFileRoute('/intent-preloading')({ 4 + component: RouteComponent, 5 + }) 6 + 7 + function RouteComponent() { 8 + return <div>Hello "/intent-preloading"!</div> 9 + }
+9
src/routes/pagination.tsx
··· 1 + import { createFileRoute } from '@tanstack/react-router' 2 + 3 + export const Route = createFileRoute('/pagination')({ 4 + component: RouteComponent, 5 + }) 6 + 7 + function RouteComponent() { 8 + return <div>Hello "/pagination"!</div> 9 + }
+9
src/routes/preloading.tsx
··· 1 + import { createFileRoute } from '@tanstack/react-router' 2 + 3 + export const Route = createFileRoute('/preloading')({ 4 + component: RouteComponent, 5 + }) 6 + 7 + function RouteComponent() { 8 + return <div>Hello "/preloading"!</div> 9 + }
+9
src/routes/search-debouncing.tsx
··· 1 + import { createFileRoute } from '@tanstack/react-router' 2 + 3 + export const Route = createFileRoute('/search-debouncing')({ 4 + component: RouteComponent, 5 + }) 6 + 7 + function RouteComponent() { 8 + return <div>Hello "/search-debouncing"!</div> 9 + }
+9
src/routes/suspence.tsx
··· 1 + import { createFileRoute } from '@tanstack/react-router' 2 + 3 + export const Route = createFileRoute('/suspence')({ 4 + component: RouteComponent, 5 + }) 6 + 7 + function RouteComponent() { 8 + return <div>Hello "/suspence"!</div> 9 + }