@better-t-stack/template-generator 3.13.2-dev.6c6cffb
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/fs-writer.d.mts +8 -0
- package/dist/fs-writer.d.mts.map +1 -0
- package/dist/fs-writer.mjs +50 -0
- package/dist/fs-writer.mjs.map +1 -0
- package/dist/index.d.mts +182 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +26727 -0
- package/dist/index.mjs.map +1 -0
- package/dist/template-reader.d.mts +30 -0
- package/dist/template-reader.d.mts.map +1 -0
- package/dist/template-reader.mjs +2860 -0
- package/dist/template-reader.mjs.map +1 -0
- package/dist/types-BubFnV2d.d.mts +36 -0
- package/dist/types-BubFnV2d.d.mts.map +1 -0
- package/package.json +66 -0
- package/scripts/generate-templates.ts +97 -0
- package/templates/addons/biome/biome.json.hbs +96 -0
- package/templates/addons/husky/.husky/pre-commit +1 -0
- package/templates/addons/pwa/apps/web/next/public/favicon/apple-touch-icon.png +0 -0
- package/templates/addons/pwa/apps/web/next/public/favicon/favicon-96x96.png +0 -0
- package/templates/addons/pwa/apps/web/next/public/favicon/favicon.svg +6 -0
- package/templates/addons/pwa/apps/web/next/public/favicon/site.webmanifest.hbs +21 -0
- package/templates/addons/pwa/apps/web/next/public/favicon/web-app-manifest-192x192.png +0 -0
- package/templates/addons/pwa/apps/web/next/public/favicon/web-app-manifest-512x512.png +0 -0
- package/templates/addons/pwa/apps/web/next/src/app/manifest.ts.hbs +26 -0
- package/templates/addons/pwa/apps/web/vite/public/logo.png +0 -0
- package/templates/addons/pwa/apps/web/vite/pwa-assets.config.ts.hbs +12 -0
- package/templates/addons/ruler/.ruler/bts.md.hbs +142 -0
- package/templates/addons/ruler/.ruler/ruler.toml.hbs +80 -0
- package/templates/addons/turborepo/turbo.json.hbs +74 -0
- package/templates/addons/ultracite/biome.json.hbs +26 -0
- package/templates/api/orpc/fullstack/next/src/app/api/rpc/[[...rest]]/route.ts.hbs +50 -0
- package/templates/api/orpc/fullstack/tanstack-start/src/routes/api/rpc/$.ts.hbs +58 -0
- package/templates/api/orpc/native/utils/orpc.ts.hbs +39 -0
- package/templates/api/orpc/server/_gitignore +34 -0
- package/templates/api/orpc/server/package.json.hbs +15 -0
- package/templates/api/orpc/server/src/context.ts.hbs +148 -0
- package/templates/api/orpc/server/src/index.ts.hbs +21 -0
- package/templates/api/orpc/server/src/routers/index.ts.hbs +55 -0
- package/templates/api/orpc/server/tsconfig.json.hbs +10 -0
- package/templates/api/orpc/web/nuxt/app/plugins/orpc.ts.hbs +32 -0
- package/templates/api/orpc/web/nuxt/app/plugins/vue-query.ts.hbs +44 -0
- package/templates/api/orpc/web/react/base/src/utils/orpc.ts.hbs +113 -0
- package/templates/api/orpc/web/solid/src/utils/orpc.ts.hbs +30 -0
- package/templates/api/orpc/web/svelte/src/lib/orpc.ts.hbs +30 -0
- package/templates/api/trpc/fullstack/next/src/app/api/trpc/[trpc]/route.ts.hbs +14 -0
- package/templates/api/trpc/fullstack/tanstack-start/src/routes/api/trpc/$.ts.hbs +22 -0
- package/templates/api/trpc/native/utils/trpc.ts.hbs +37 -0
- package/templates/api/trpc/server/_gitignore +34 -0
- package/templates/api/trpc/server/package.json.hbs +14 -0
- package/templates/api/trpc/server/src/context.ts.hbs +148 -0
- package/templates/api/trpc/server/src/index.ts.hbs +26 -0
- package/templates/api/trpc/server/src/routers/index.ts.hbs +55 -0
- package/templates/api/trpc/server/tsconfig.json.hbs +10 -0
- package/templates/api/trpc/web/react/base/src/utils/trpc.ts.hbs +97 -0
- package/templates/auth/better-auth/convex/backend/convex/auth.config.ts.hbs +6 -0
- package/templates/auth/better-auth/convex/backend/convex/auth.ts.hbs +68 -0
- package/templates/auth/better-auth/convex/backend/convex/http.ts.hbs +12 -0
- package/templates/auth/better-auth/convex/backend/convex/privateData.ts.hbs +17 -0
- package/templates/auth/better-auth/convex/native/bare/components/sign-in.tsx.hbs +127 -0
- package/templates/auth/better-auth/convex/native/bare/components/sign-up.tsx.hbs +138 -0
- package/templates/auth/better-auth/convex/native/base/lib/auth-client.ts.hbs +18 -0
- package/templates/auth/better-auth/convex/native/unistyles/components/sign-in.tsx.hbs +127 -0
- package/templates/auth/better-auth/convex/native/unistyles/components/sign-up.tsx.hbs +145 -0
- package/templates/auth/better-auth/convex/native/uniwind/components/sign-in.tsx.hbs +73 -0
- package/templates/auth/better-auth/convex/native/uniwind/components/sign-up.tsx.hbs +85 -0
- package/templates/auth/better-auth/convex/web/react/next/src/app/api/auth/[...all]/route.ts.hbs +3 -0
- package/templates/auth/better-auth/convex/web/react/next/src/app/dashboard/page.tsx.hbs +40 -0
- package/templates/auth/better-auth/convex/web/react/next/src/components/sign-in-form.tsx.hbs +129 -0
- package/templates/auth/better-auth/convex/web/react/next/src/components/sign-up-form.tsx.hbs +154 -0
- package/templates/auth/better-auth/convex/web/react/next/src/components/user-menu.tsx.hbs +48 -0
- package/templates/auth/better-auth/convex/web/react/next/src/lib/auth-client.ts.hbs +6 -0
- package/templates/auth/better-auth/convex/web/react/next/src/lib/auth-server.ts.hbs +16 -0
- package/templates/auth/better-auth/convex/web/react/tanstack-router/src/components/sign-in-form.tsx.hbs +133 -0
- package/templates/auth/better-auth/convex/web/react/tanstack-router/src/components/sign-up-form.tsx.hbs +158 -0
- package/templates/auth/better-auth/convex/web/react/tanstack-router/src/components/user-menu.tsx.hbs +52 -0
- package/templates/auth/better-auth/convex/web/react/tanstack-router/src/lib/auth-client.ts.hbs +11 -0
- package/templates/auth/better-auth/convex/web/react/tanstack-router/src/routes/dashboard.tsx.hbs +43 -0
- package/templates/auth/better-auth/convex/web/react/tanstack-start/src/components/sign-in-form.tsx.hbs +133 -0
- package/templates/auth/better-auth/convex/web/react/tanstack-start/src/components/sign-up-form.tsx.hbs +158 -0
- package/templates/auth/better-auth/convex/web/react/tanstack-start/src/components/user-menu.tsx.hbs +47 -0
- package/templates/auth/better-auth/convex/web/react/tanstack-start/src/lib/auth-client.ts.hbs +6 -0
- package/templates/auth/better-auth/convex/web/react/tanstack-start/src/lib/auth-server.ts.hbs +13 -0
- package/templates/auth/better-auth/convex/web/react/tanstack-start/src/routes/api/auth/$.ts.hbs +11 -0
- package/templates/auth/better-auth/convex/web/react/tanstack-start/src/routes/dashboard.tsx.hbs +43 -0
- package/templates/auth/better-auth/fullstack/next/src/app/api/auth/[...all]/route.ts.hbs +4 -0
- package/templates/auth/better-auth/fullstack/tanstack-start/src/routes/api/auth/$.ts.hbs +15 -0
- package/templates/auth/better-auth/native/bare/app/(drawer)/index.tsx.hbs +186 -0
- package/templates/auth/better-auth/native/bare/components/sign-in.tsx.hbs +131 -0
- package/templates/auth/better-auth/native/bare/components/sign-up.tsx.hbs +150 -0
- package/templates/auth/better-auth/native/base/lib/auth-client.ts.hbs +16 -0
- package/templates/auth/better-auth/native/unistyles/app/(drawer)/index.tsx.hbs +187 -0
- package/templates/auth/better-auth/native/unistyles/components/sign-in.tsx.hbs +139 -0
- package/templates/auth/better-auth/native/unistyles/components/sign-up.tsx.hbs +157 -0
- package/templates/auth/better-auth/native/uniwind/app/(drawer)/index.tsx.hbs +123 -0
- package/templates/auth/better-auth/native/uniwind/components/sign-in.tsx.hbs +87 -0
- package/templates/auth/better-auth/native/uniwind/components/sign-up.tsx.hbs +128 -0
- package/templates/auth/better-auth/server/base/_gitignore +34 -0
- package/templates/auth/better-auth/server/base/package.json.hbs +14 -0
- package/templates/auth/better-auth/server/base/src/index.ts.hbs +304 -0
- package/templates/auth/better-auth/server/base/tsconfig.json.hbs +10 -0
- package/templates/auth/better-auth/server/db/drizzle/mysql/src/schema/auth.ts.hbs +100 -0
- package/templates/auth/better-auth/server/db/drizzle/postgres/src/schema/auth.ts.hbs +93 -0
- package/templates/auth/better-auth/server/db/drizzle/sqlite/src/schema/auth.ts.hbs +107 -0
- package/templates/auth/better-auth/server/db/mongoose/mongodb/src/models/auth.model.ts.hbs +68 -0
- package/templates/auth/better-auth/server/db/prisma/mongodb/prisma/schema/auth.prisma.hbs +62 -0
- package/templates/auth/better-auth/server/db/prisma/mysql/prisma/schema/auth.prisma.hbs +62 -0
- package/templates/auth/better-auth/server/db/prisma/postgres/prisma/schema/auth.prisma.hbs +62 -0
- package/templates/auth/better-auth/server/db/prisma/sqlite/prisma/schema/auth.prisma.hbs +62 -0
- package/templates/auth/better-auth/web/nuxt/app/components/SignInForm.vue.hbs +82 -0
- package/templates/auth/better-auth/web/nuxt/app/components/SignUpForm.vue.hbs +91 -0
- package/templates/auth/better-auth/web/nuxt/app/components/UserMenu.vue.hbs +42 -0
- package/templates/auth/better-auth/web/nuxt/app/middleware/auth.ts.hbs +14 -0
- package/templates/auth/better-auth/web/nuxt/app/pages/dashboard.vue.hbs +99 -0
- package/templates/auth/better-auth/web/nuxt/app/pages/login.vue.hbs +27 -0
- package/templates/auth/better-auth/web/nuxt/app/plugins/auth-client.ts.hbs +21 -0
- package/templates/auth/better-auth/web/react/base/src/lib/auth-client.ts.hbs +16 -0
- package/templates/auth/better-auth/web/react/next/src/app/dashboard/dashboard.tsx.hbs +60 -0
- package/templates/auth/better-auth/web/react/next/src/app/dashboard/page.tsx.hbs +42 -0
- package/templates/auth/better-auth/web/react/next/src/app/login/page.tsx.hbs +16 -0
- package/templates/auth/better-auth/web/react/next/src/components/sign-in-form.tsx.hbs +135 -0
- package/templates/auth/better-auth/web/react/next/src/components/sign-up-form.tsx.hbs +160 -0
- package/templates/auth/better-auth/web/react/next/src/components/user-menu.tsx.hbs +62 -0
- package/templates/auth/better-auth/web/react/react-router/src/components/sign-in-form.tsx.hbs +135 -0
- package/templates/auth/better-auth/web/react/react-router/src/components/sign-up-form.tsx.hbs +160 -0
- package/templates/auth/better-auth/web/react/react-router/src/components/user-menu.tsx.hbs +61 -0
- package/templates/auth/better-auth/web/react/react-router/src/routes/dashboard.tsx.hbs +80 -0
- package/templates/auth/better-auth/web/react/react-router/src/routes/login.tsx.hbs +13 -0
- package/templates/auth/better-auth/web/react/tanstack-router/src/components/sign-in-form.tsx.hbs +135 -0
- package/templates/auth/better-auth/web/react/tanstack-router/src/components/sign-up-form.tsx.hbs +160 -0
- package/templates/auth/better-auth/web/react/tanstack-router/src/components/user-menu.tsx.hbs +63 -0
- package/templates/auth/better-auth/web/react/tanstack-router/src/routes/dashboard.tsx.hbs +71 -0
- package/templates/auth/better-auth/web/react/tanstack-router/src/routes/login.tsx.hbs +18 -0
- package/templates/auth/better-auth/web/react/tanstack-start/src/components/sign-in-form.tsx.hbs +135 -0
- package/templates/auth/better-auth/web/react/tanstack-start/src/components/sign-up-form.tsx.hbs +160 -0
- package/templates/auth/better-auth/web/react/tanstack-start/src/components/user-menu.tsx.hbs +63 -0
- package/templates/auth/better-auth/web/react/tanstack-start/src/functions/get-user.ts.hbs +6 -0
- package/templates/auth/better-auth/web/react/tanstack-start/src/middleware/auth.ts.hbs +31 -0
- package/templates/auth/better-auth/web/react/tanstack-start/src/routes/dashboard.tsx.hbs +84 -0
- package/templates/auth/better-auth/web/react/tanstack-start/src/routes/login.tsx.hbs +18 -0
- package/templates/auth/better-auth/web/solid/src/components/sign-in-form.tsx.hbs +124 -0
- package/templates/auth/better-auth/web/solid/src/components/sign-up-form.tsx.hbs +148 -0
- package/templates/auth/better-auth/web/solid/src/components/user-menu.tsx.hbs +55 -0
- package/templates/auth/better-auth/web/solid/src/lib/auth-client.ts.hbs +12 -0
- package/templates/auth/better-auth/web/solid/src/routes/dashboard.tsx.hbs +67 -0
- package/templates/auth/better-auth/web/solid/src/routes/login.tsx.hbs +23 -0
- package/templates/auth/better-auth/web/svelte/src/components/SignInForm.svelte.hbs +109 -0
- package/templates/auth/better-auth/web/svelte/src/components/SignUpForm.svelte.hbs +142 -0
- package/templates/auth/better-auth/web/svelte/src/components/UserMenu.svelte.hbs +52 -0
- package/templates/auth/better-auth/web/svelte/src/lib/auth-client.ts.hbs +12 -0
- package/templates/auth/better-auth/web/svelte/src/routes/dashboard/+page.svelte.hbs +59 -0
- package/templates/auth/better-auth/web/svelte/src/routes/login/+page.svelte.hbs +12 -0
- package/templates/auth/clerk/convex/backend/convex/auth.config.ts.hbs +12 -0
- package/templates/auth/clerk/convex/backend/convex/privateData.ts.hbs +16 -0
- package/templates/auth/clerk/convex/native/base/app/(auth)/_layout.tsx.hbs +12 -0
- package/templates/auth/clerk/convex/native/base/app/(auth)/sign-in.tsx.hbs +67 -0
- package/templates/auth/clerk/convex/native/base/app/(auth)/sign-up.tsx.hbs +110 -0
- package/templates/auth/clerk/convex/native/base/components/sign-out-button.tsx.hbs +27 -0
- package/templates/auth/clerk/convex/web/react/next/src/app/dashboard/page.tsx.hbs +29 -0
- package/templates/auth/clerk/convex/web/react/next/src/middleware.ts.hbs +12 -0
- package/templates/auth/clerk/convex/web/react/react-router/src/routes/dashboard.tsx.hbs +32 -0
- package/templates/auth/clerk/convex/web/react/tanstack-router/src/routes/dashboard.tsx.hbs +37 -0
- package/templates/auth/clerk/convex/web/react/tanstack-start/src/routes/dashboard.tsx.hbs +37 -0
- package/templates/auth/clerk/convex/web/react/tanstack-start/src/start.ts.hbs +8 -0
- package/templates/backend/convex/packages/backend/_gitignore +2 -0
- package/templates/backend/convex/packages/backend/convex/README.md +90 -0
- package/templates/backend/convex/packages/backend/convex/convex.config.ts.hbs +17 -0
- package/templates/backend/convex/packages/backend/convex/healthCheck.ts.hbs +7 -0
- package/templates/backend/convex/packages/backend/convex/schema.ts.hbs +11 -0
- package/templates/backend/convex/packages/backend/convex/tsconfig.json.hbs +25 -0
- package/templates/backend/convex/packages/backend/package.json.hbs +15 -0
- package/templates/backend/server/base/_gitignore +55 -0
- package/templates/backend/server/base/package.json.hbs +17 -0
- package/templates/backend/server/base/tsconfig.json.hbs +13 -0
- package/templates/backend/server/base/tsdown.config.ts.hbs +9 -0
- package/templates/backend/server/elysia/src/index.ts.hbs +122 -0
- package/templates/backend/server/express/src/index.ts.hbs +126 -0
- package/templates/backend/server/fastify/src/index.ts.hbs +187 -0
- package/templates/backend/server/hono/src/index.ts.hbs +171 -0
- package/templates/base/_gitignore +50 -0
- package/templates/base/package.json.hbs +10 -0
- package/templates/base/tsconfig.json.hbs +3 -0
- package/templates/db/base/_gitignore +35 -0
- package/templates/db/base/package.json.hbs +14 -0
- package/templates/db/base/tsconfig.json.hbs +10 -0
- package/templates/db/drizzle/base/src/schema/index.ts.hbs +7 -0
- package/templates/db/drizzle/mysql/drizzle.config.ts.hbs +19 -0
- package/templates/db/drizzle/mysql/src/index.ts.hbs +54 -0
- package/templates/db/drizzle/postgres/drizzle.config.ts.hbs +19 -0
- package/templates/db/drizzle/postgres/src/index.ts.hbs +44 -0
- package/templates/db/drizzle/sqlite/drizzle.config.ts.hbs +28 -0
- package/templates/db/drizzle/sqlite/src/index.ts.hbs +39 -0
- package/templates/db/mongoose/mongodb/src/index.ts.hbs +10 -0
- package/templates/db/prisma/mongodb/prisma/schema/schema.prisma.hbs +19 -0
- package/templates/db/prisma/mongodb/prisma.config.ts.hbs +18 -0
- package/templates/db/prisma/mongodb/src/index.ts.hbs +5 -0
- package/templates/db/prisma/mysql/prisma/schema/schema.prisma.hbs +21 -0
- package/templates/db/prisma/mysql/prisma.config.ts.hbs +21 -0
- package/templates/db/prisma/mysql/src/index.ts.hbs +55 -0
- package/templates/db/prisma/postgres/prisma/schema/schema.prisma.hbs +21 -0
- package/templates/db/prisma/postgres/prisma.config.ts.hbs +21 -0
- package/templates/db/prisma/postgres/src/index.ts.hbs +69 -0
- package/templates/db/prisma/sqlite/prisma/schema/schema.prisma.hbs +18 -0
- package/templates/db/prisma/sqlite/prisma.config.ts.hbs +25 -0
- package/templates/db/prisma/sqlite/src/index.ts.hbs +25 -0
- package/templates/db-setup/docker-compose/mongodb/docker-compose.yml.hbs +23 -0
- package/templates/db-setup/docker-compose/mysql/docker-compose.yml.hbs +24 -0
- package/templates/db-setup/docker-compose/postgres/docker-compose.yml.hbs +23 -0
- package/templates/examples/ai/convex/packages/backend/convex/agent.ts.hbs +9 -0
- package/templates/examples/ai/convex/packages/backend/convex/chat.ts.hbs +67 -0
- package/templates/examples/ai/fullstack/next/src/app/api/ai/route.ts.hbs +20 -0
- package/templates/examples/ai/fullstack/tanstack-start/src/routes/api/ai/$.ts.hbs +36 -0
- package/templates/examples/ai/native/bare/app/(drawer)/ai.tsx.hbs +586 -0
- package/templates/examples/ai/native/bare/polyfills.js +22 -0
- package/templates/examples/ai/native/unistyles/app/(drawer)/ai.tsx.hbs +588 -0
- package/templates/examples/ai/native/unistyles/polyfills.js +22 -0
- package/templates/examples/ai/native/uniwind/app/(drawer)/ai.tsx.hbs +331 -0
- package/templates/examples/ai/native/uniwind/polyfills.js +22 -0
- package/templates/examples/ai/web/nuxt/app/pages/ai.vue.hbs +54 -0
- package/templates/examples/ai/web/react/next/src/app/ai/page.tsx.hbs +267 -0
- package/templates/examples/ai/web/react/react-router/src/routes/ai.tsx.hbs +235 -0
- package/templates/examples/ai/web/react/tanstack-router/src/routes/ai.tsx.hbs +242 -0
- package/templates/examples/ai/web/react/tanstack-start/src/routes/ai.tsx.hbs +243 -0
- package/templates/examples/ai/web/svelte/src/routes/ai/+page.svelte.hbs +107 -0
- package/templates/examples/todo/convex/packages/backend/convex/todos.ts.hbs +42 -0
- package/templates/examples/todo/native/bare/app/(drawer)/todos.tsx.hbs +521 -0
- package/templates/examples/todo/native/unistyles/app/(drawer)/todos.tsx.hbs +340 -0
- package/templates/examples/todo/native/uniwind/app/(drawer)/todos.tsx.hbs +282 -0
- package/templates/examples/todo/server/drizzle/base/src/routers/todo.ts.hbs +75 -0
- package/templates/examples/todo/server/drizzle/mysql/src/schema/todo.ts +7 -0
- package/templates/examples/todo/server/drizzle/postgres/src/schema/todo.ts +7 -0
- package/templates/examples/todo/server/drizzle/sqlite/src/schema/todo.ts +7 -0
- package/templates/examples/todo/server/mongoose/base/src/routers/todo.ts.hbs +66 -0
- package/templates/examples/todo/server/mongoose/mongodb/src/models/todo.model.ts.hbs +24 -0
- package/templates/examples/todo/server/prisma/base/src/routers/todo.ts.hbs +116 -0
- package/templates/examples/todo/server/prisma/mongodb/prisma/schema/todo.prisma.hbs +7 -0
- package/templates/examples/todo/server/prisma/mysql/prisma/schema/todo.prisma.hbs +7 -0
- package/templates/examples/todo/server/prisma/postgres/prisma/schema/todo.prisma.hbs +7 -0
- package/templates/examples/todo/server/prisma/sqlite/prisma/schema/todo.prisma.hbs +7 -0
- package/templates/examples/todo/web/nuxt/app/pages/todos.vue.hbs +220 -0
- package/templates/examples/todo/web/react/next/src/app/todos/page.tsx.hbs +245 -0
- package/templates/examples/todo/web/react/react-router/src/routes/todos.tsx.hbs +242 -0
- package/templates/examples/todo/web/react/tanstack-router/src/routes/todos.tsx.hbs +247 -0
- package/templates/examples/todo/web/react/tanstack-start/src/routes/todos.tsx.hbs +272 -0
- package/templates/examples/todo/web/solid/src/routes/todos.tsx.hbs +132 -0
- package/templates/examples/todo/web/svelte/src/routes/todos/+page.svelte.hbs +317 -0
- package/templates/extras/_npmrc.hbs +5 -0
- package/templates/extras/bunfig.toml.hbs +6 -0
- package/templates/extras/pnpm-workspace.yaml +3 -0
- package/templates/frontend/native/bare/_gitignore +18 -0
- package/templates/frontend/native/bare/app/(drawer)/(tabs)/_layout.tsx.hbs +41 -0
- package/templates/frontend/native/bare/app/(drawer)/(tabs)/index.tsx.hbs +43 -0
- package/templates/frontend/native/bare/app/(drawer)/(tabs)/two.tsx.hbs +43 -0
- package/templates/frontend/native/bare/app/(drawer)/_layout.tsx.hbs +90 -0
- package/templates/frontend/native/bare/app/(drawer)/index.tsx.hbs +234 -0
- package/templates/frontend/native/bare/app/+not-found.tsx.hbs +65 -0
- package/templates/frontend/native/bare/app/_layout.tsx.hbs +165 -0
- package/templates/frontend/native/bare/app/modal.tsx.hbs +34 -0
- package/templates/frontend/native/bare/app.json.hbs +50 -0
- package/templates/frontend/native/bare/components/container.tsx.hbs +25 -0
- package/templates/frontend/native/bare/components/header-button.tsx.hbs +47 -0
- package/templates/frontend/native/bare/components/tabbar-icon.tsx.hbs +9 -0
- package/templates/frontend/native/bare/lib/android-navigation-bar.tsx.hbs +12 -0
- package/templates/frontend/native/bare/lib/constants.ts.hbs +19 -0
- package/templates/frontend/native/bare/lib/use-color-scheme.ts.hbs +20 -0
- package/templates/frontend/native/bare/metro.config.js.hbs +9 -0
- package/templates/frontend/native/bare/package.json.hbs +51 -0
- package/templates/frontend/native/bare/tsconfig.json.hbs +11 -0
- package/templates/frontend/native/base/assets/images/android-icon-background.png +0 -0
- package/templates/frontend/native/base/assets/images/android-icon-foreground.png +0 -0
- package/templates/frontend/native/base/assets/images/android-icon-monochrome.png +0 -0
- package/templates/frontend/native/base/assets/images/favicon.png +0 -0
- package/templates/frontend/native/base/assets/images/icon.png +0 -0
- package/templates/frontend/native/base/assets/images/partial-react-logo.png +0 -0
- package/templates/frontend/native/base/assets/images/react-logo.png +0 -0
- package/templates/frontend/native/base/assets/images/react-logo@2x.png +0 -0
- package/templates/frontend/native/base/assets/images/react-logo@3x.png +0 -0
- package/templates/frontend/native/base/assets/images/splash-icon.png +0 -0
- package/templates/frontend/native/unistyles/_gitignore +24 -0
- package/templates/frontend/native/unistyles/app/(drawer)/(tabs)/_layout.tsx.hbs +39 -0
- package/templates/frontend/native/unistyles/app/(drawer)/(tabs)/index.tsx.hbs +37 -0
- package/templates/frontend/native/unistyles/app/(drawer)/(tabs)/two.tsx.hbs +37 -0
- package/templates/frontend/native/unistyles/app/(drawer)/_layout.tsx.hbs +87 -0
- package/templates/frontend/native/unistyles/app/(drawer)/index.tsx.hbs +333 -0
- package/templates/frontend/native/unistyles/app/+not-found.tsx.hbs +65 -0
- package/templates/frontend/native/unistyles/app/_layout.tsx.hbs +169 -0
- package/templates/frontend/native/unistyles/app/modal.tsx.hbs +33 -0
- package/templates/frontend/native/unistyles/app.json.hbs +49 -0
- package/templates/frontend/native/unistyles/babel.config.js.hbs +21 -0
- package/templates/frontend/native/unistyles/breakpoints.ts.hbs +9 -0
- package/templates/frontend/native/unistyles/components/container.tsx.hbs +15 -0
- package/templates/frontend/native/unistyles/components/header-button.tsx.hbs +36 -0
- package/templates/frontend/native/unistyles/components/tabbar-icon.tsx.hbs +8 -0
- package/templates/frontend/native/unistyles/index.js.hbs +2 -0
- package/templates/frontend/native/unistyles/metro.config.js.hbs +5 -0
- package/templates/frontend/native/unistyles/package.json.hbs +51 -0
- package/templates/frontend/native/unistyles/theme.ts.hbs +98 -0
- package/templates/frontend/native/unistyles/tsconfig.json.hbs +12 -0
- package/templates/frontend/native/unistyles/unistyles.ts.hbs +27 -0
- package/templates/frontend/native/uniwind/_gitignore +21 -0
- package/templates/frontend/native/uniwind/app/(drawer)/(tabs)/_layout.tsx.hbs +46 -0
- package/templates/frontend/native/uniwind/app/(drawer)/(tabs)/index.tsx.hbs +15 -0
- package/templates/frontend/native/uniwind/app/(drawer)/(tabs)/two.tsx.hbs +15 -0
- package/templates/frontend/native/uniwind/app/(drawer)/_layout.tsx.hbs +91 -0
- package/templates/frontend/native/uniwind/app/(drawer)/index.tsx.hbs +191 -0
- package/templates/frontend/native/uniwind/app/+not-found.tsx.hbs +27 -0
- package/templates/frontend/native/uniwind/app/_layout.tsx.hbs +132 -0
- package/templates/frontend/native/uniwind/app/modal.tsx.hbs +37 -0
- package/templates/frontend/native/uniwind/app.json.hbs +19 -0
- package/templates/frontend/native/uniwind/components/container.tsx.hbs +33 -0
- package/templates/frontend/native/uniwind/components/theme-toggle.tsx.hbs +35 -0
- package/templates/frontend/native/uniwind/contexts/app-theme-context.tsx.hbs +62 -0
- package/templates/frontend/native/uniwind/global.css +5 -0
- package/templates/frontend/native/uniwind/metro.config.js.hbs +13 -0
- package/templates/frontend/native/uniwind/package.json.hbs +54 -0
- package/templates/frontend/native/uniwind/tsconfig.json.hbs +14 -0
- package/templates/frontend/nuxt/_gitignore +27 -0
- package/templates/frontend/nuxt/app/app.config.ts.hbs +15 -0
- package/templates/frontend/nuxt/app/app.vue.hbs +17 -0
- package/templates/frontend/nuxt/app/assets/css/main.css +2 -0
- package/templates/frontend/nuxt/app/components/Header.vue.hbs +40 -0
- package/templates/frontend/nuxt/app/layouts/default.vue.hbs +10 -0
- package/templates/frontend/nuxt/app/pages/index.vue.hbs +97 -0
- package/templates/frontend/nuxt/nuxt.config.ts.hbs +29 -0
- package/templates/frontend/nuxt/package.json.hbs +24 -0
- package/templates/frontend/nuxt/public/favicon.ico +0 -0
- package/templates/frontend/nuxt/public/robots.txt +2 -0
- package/templates/frontend/nuxt/server/tsconfig.json +3 -0
- package/templates/frontend/nuxt/tsconfig.json.hbs +18 -0
- package/templates/frontend/react/next/next-env.d.ts.hbs +5 -0
- package/templates/frontend/react/next/next.config.ts.hbs +22 -0
- package/templates/frontend/react/next/package.json.hbs +34 -0
- package/templates/frontend/react/next/postcss.config.mjs.hbs +5 -0
- package/templates/frontend/react/next/src/app/favicon.ico +0 -0
- package/templates/frontend/react/next/src/app/layout.tsx.hbs +76 -0
- package/templates/frontend/react/next/src/app/page.tsx.hbs +79 -0
- package/templates/frontend/react/next/src/components/mode-toggle.tsx.hbs +37 -0
- package/templates/frontend/react/next/src/components/providers.tsx.hbs +89 -0
- package/templates/frontend/react/next/src/components/theme-provider.tsx.hbs +11 -0
- package/templates/frontend/react/next/tsconfig.json.hbs +41 -0
- package/templates/frontend/react/react-router/package.json.hbs +42 -0
- package/templates/frontend/react/react-router/public/favicon.ico +0 -0
- package/templates/frontend/react/react-router/react-router.config.ts +6 -0
- package/templates/frontend/react/react-router/src/components/mode-toggle.tsx.hbs +29 -0
- package/templates/frontend/react/react-router/src/components/theme-provider.tsx.hbs +11 -0
- package/templates/frontend/react/react-router/src/root.tsx.hbs +190 -0
- package/templates/frontend/react/react-router/src/routes/_index.tsx.hbs +85 -0
- package/templates/frontend/react/react-router/src/routes.ts +4 -0
- package/templates/frontend/react/react-router/tsconfig.json.hbs +27 -0
- package/templates/frontend/react/react-router/vite.config.ts.hbs +12 -0
- package/templates/frontend/react/tanstack-router/index.html.hbs +13 -0
- package/templates/frontend/react/tanstack-router/package.json.hbs +41 -0
- package/templates/frontend/react/tanstack-router/src/components/mode-toggle.tsx.hbs +29 -0
- package/templates/frontend/react/tanstack-router/src/components/theme-provider.tsx.hbs +11 -0
- package/templates/frontend/react/tanstack-router/src/main.tsx.hbs +90 -0
- package/templates/frontend/react/tanstack-router/src/routes/__root.tsx.hbs +103 -0
- package/templates/frontend/react/tanstack-router/src/routes/index.tsx.hbs +85 -0
- package/templates/frontend/react/tanstack-router/tsconfig.json.hbs +18 -0
- package/templates/frontend/react/tanstack-router/vite.config.ts.hbs +21 -0
- package/templates/frontend/react/tanstack-start/package.json.hbs +43 -0
- package/templates/frontend/react/tanstack-start/public/robots.txt +3 -0
- package/templates/frontend/react/tanstack-start/src/router.tsx.hbs +144 -0
- package/templates/frontend/react/tanstack-start/src/routes/__root.tsx.hbs +208 -0
- package/templates/frontend/react/tanstack-start/src/routes/index.tsx.hbs +85 -0
- package/templates/frontend/react/tanstack-start/tsconfig.json.hbs +28 -0
- package/templates/frontend/react/tanstack-start/vite.config.ts.hbs +22 -0
- package/templates/frontend/react/web-base/_gitignore +60 -0
- package/templates/frontend/react/web-base/components.json +24 -0
- package/templates/frontend/react/web-base/src/components/header.tsx.hbs +78 -0
- package/templates/frontend/react/web-base/src/components/loader.tsx.hbs +9 -0
- package/templates/frontend/react/web-base/src/components/ui/button.tsx.hbs +57 -0
- package/templates/frontend/react/web-base/src/components/ui/card.tsx.hbs +103 -0
- package/templates/frontend/react/web-base/src/components/ui/checkbox.tsx.hbs +26 -0
- package/templates/frontend/react/web-base/src/components/ui/dropdown-menu.tsx.hbs +262 -0
- package/templates/frontend/react/web-base/src/components/ui/input.tsx.hbs +20 -0
- package/templates/frontend/react/web-base/src/components/ui/label.tsx.hbs +20 -0
- package/templates/frontend/react/web-base/src/components/ui/skeleton.tsx.hbs +13 -0
- package/templates/frontend/react/web-base/src/components/ui/sonner.tsx.hbs +44 -0
- package/templates/frontend/react/web-base/src/index.css.hbs +131 -0
- package/templates/frontend/react/web-base/src/lib/utils.ts.hbs +6 -0
- package/templates/frontend/solid/_gitignore +11 -0
- package/templates/frontend/solid/index.html +13 -0
- package/templates/frontend/solid/package.json.hbs +24 -0
- package/templates/frontend/solid/public/robots.txt +3 -0
- package/templates/frontend/solid/src/components/header.tsx.hbs +38 -0
- package/templates/frontend/solid/src/components/loader.tsx +9 -0
- package/templates/frontend/solid/src/main.tsx.hbs +41 -0
- package/templates/frontend/solid/src/routes/__root.tsx.hbs +34 -0
- package/templates/frontend/solid/src/routes/index.tsx.hbs +72 -0
- package/templates/frontend/solid/src/styles.css +5 -0
- package/templates/frontend/solid/tsconfig.json.hbs +29 -0
- package/templates/frontend/solid/vite.config.ts.hbs +21 -0
- package/templates/frontend/svelte/_gitignore +24 -0
- package/templates/frontend/svelte/_npmrc +1 -0
- package/templates/frontend/svelte/package.json.hbs +27 -0
- package/templates/frontend/svelte/src/app.css +5 -0
- package/templates/frontend/svelte/src/app.d.ts +13 -0
- package/templates/frontend/svelte/src/app.html +12 -0
- package/templates/frontend/svelte/src/components/Header.svelte.hbs +40 -0
- package/templates/frontend/svelte/src/lib/index.ts +2 -0
- package/templates/frontend/svelte/src/routes/+layout.svelte.hbs +54 -0
- package/templates/frontend/svelte/src/routes/+page.svelte.hbs +92 -0
- package/templates/frontend/svelte/static/favicon.png +0 -0
- package/templates/frontend/svelte/svelte.config.js.hbs +18 -0
- package/templates/frontend/svelte/tsconfig.json.hbs +19 -0
- package/templates/frontend/svelte/vite.config.ts.hbs +7 -0
- package/templates/packages/config/package.json.hbs +5 -0
- package/templates/packages/config/tsconfig.base.json.hbs +33 -0
- package/templates/packages/env/env.d.ts.hbs +16 -0
- package/templates/packages/env/package.json.hbs +7 -0
- package/templates/packages/env/src/native.ts.hbs +21 -0
- package/templates/packages/env/src/server.ts.hbs +39 -0
- package/templates/packages/env/src/web.ts.hbs +98 -0
- package/templates/packages/env/tsconfig.json.hbs +3 -0
- package/templates/packages/infra/alchemy.run.ts.hbs +271 -0
- package/templates/packages/infra/package.json.hbs +10 -0
- package/templates/payments/polar/server/base/src/lib/payments.ts.hbs +7 -0
- package/templates/payments/polar/web/nuxt/app/pages/success.vue.hbs +11 -0
- package/templates/payments/polar/web/react/next/src/app/success/page.tsx.hbs +15 -0
- package/templates/payments/polar/web/react/react-router/src/routes/success.tsx.hbs +13 -0
- package/templates/payments/polar/web/react/tanstack-router/src/routes/success.tsx.hbs +19 -0
- package/templates/payments/polar/web/react/tanstack-start/src/functions/get-payment.ts.hbs +15 -0
- package/templates/payments/polar/web/react/tanstack-start/src/routes/success.tsx.hbs +19 -0
- package/templates/payments/polar/web/solid/src/routes/success.tsx.hbs +23 -0
- package/templates/payments/polar/web/svelte/src/routes/success/+page.svelte.hbs +12 -0
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
import { View, Text, ScrollView, TouchableOpacity, StyleSheet } from "react-native";
|
|
2
|
+
import { Container } from "@/components/container";
|
|
3
|
+
import { useColorScheme } from "@/lib/use-color-scheme";
|
|
4
|
+
import { NAV_THEME } from "@/lib/constants";
|
|
5
|
+
{{#if (eq api "orpc")}}
|
|
6
|
+
import { useQuery } from "@tanstack/react-query";
|
|
7
|
+
import { orpc } from "@/utils/orpc";
|
|
8
|
+
{{/if}}
|
|
9
|
+
{{#if (eq api "trpc")}}
|
|
10
|
+
import { useQuery } from "@tanstack/react-query";
|
|
11
|
+
import { trpc } from "@/utils/trpc";
|
|
12
|
+
{{/if}}
|
|
13
|
+
{{#if (and (eq backend "convex") (eq auth "clerk"))}}
|
|
14
|
+
import { Link } from "expo-router";
|
|
15
|
+
import { Authenticated, AuthLoading, Unauthenticated, useQuery } from "convex/react";
|
|
16
|
+
import { api } from "@{{ projectName }}/backend/convex/_generated/api";
|
|
17
|
+
import { useUser } from "@clerk/clerk-expo";
|
|
18
|
+
import { SignOutButton } from "@/components/sign-out-button";
|
|
19
|
+
{{else if (and (eq backend "convex") (eq auth "better-auth"))}}
|
|
20
|
+
import { useConvexAuth, useQuery } from "convex/react";
|
|
21
|
+
import { api } from "@{{ projectName }}/backend/convex/_generated/api";
|
|
22
|
+
import { authClient } from "@/lib/auth-client";
|
|
23
|
+
import { SignIn } from "@/components/sign-in";
|
|
24
|
+
import { SignUp } from "@/components/sign-up";
|
|
25
|
+
{{else if (eq backend "convex")}}
|
|
26
|
+
import { useQuery } from "convex/react";
|
|
27
|
+
import { api } from "@{{ projectName }}/backend/convex/_generated/api";
|
|
28
|
+
{{/if}}
|
|
29
|
+
|
|
30
|
+
export default function Home() {
|
|
31
|
+
const { colorScheme } = useColorScheme();
|
|
32
|
+
const theme = colorScheme === "dark" ? NAV_THEME.dark : NAV_THEME.light;
|
|
33
|
+
{{#if (eq api "orpc")}}
|
|
34
|
+
const healthCheck = useQuery(orpc.healthCheck.queryOptions());
|
|
35
|
+
{{/if}}
|
|
36
|
+
{{#if (eq api "trpc")}}
|
|
37
|
+
const healthCheck = useQuery(trpc.healthCheck.queryOptions());
|
|
38
|
+
{{/if}}
|
|
39
|
+
{{#if (and (eq backend "convex") (eq auth "clerk"))}}
|
|
40
|
+
const { user } = useUser();
|
|
41
|
+
const healthCheck = useQuery(api.healthCheck.get);
|
|
42
|
+
const privateData = useQuery(api.privateData.get);
|
|
43
|
+
{{else if (and (eq backend "convex") (eq auth "better-auth"))}}
|
|
44
|
+
const healthCheck = useQuery(api.healthCheck.get);
|
|
45
|
+
const { isAuthenticated } = useConvexAuth();
|
|
46
|
+
const user = useQuery(api.auth.getCurrentUser, isAuthenticated ? {} : "skip");
|
|
47
|
+
{{else if (eq backend "convex")}}
|
|
48
|
+
const healthCheck = useQuery(api.healthCheck.get);
|
|
49
|
+
{{/if}}
|
|
50
|
+
|
|
51
|
+
return (
|
|
52
|
+
<Container>
|
|
53
|
+
<ScrollView style={styles.scrollView}>
|
|
54
|
+
<View style={styles.content}>
|
|
55
|
+
<Text style={[styles.title, { color: theme.text }]}>
|
|
56
|
+
BETTER T STACK
|
|
57
|
+
</Text>
|
|
58
|
+
|
|
59
|
+
{{#unless (and (eq backend "convex") (eq auth "better-auth"))}}
|
|
60
|
+
<View style={[styles.card, { backgroundColor: theme.card, borderColor: theme.border }]}>
|
|
61
|
+
{{#if (eq backend "convex")}}
|
|
62
|
+
<View style={styles.statusRow}>
|
|
63
|
+
<View style={[styles.statusIndicator, { backgroundColor: healthCheck ? "#10b981" : "#f59e0b" }]} />
|
|
64
|
+
<View style={styles.statusContent}>
|
|
65
|
+
<Text style={[styles.statusTitle, { color: theme.text }]}>
|
|
66
|
+
Convex
|
|
67
|
+
</Text>
|
|
68
|
+
<Text style={[styles.statusText, { color: theme.text, opacity: 0.7 }]}>
|
|
69
|
+
{healthCheck === undefined
|
|
70
|
+
? "Checking..."
|
|
71
|
+
: healthCheck === "OK"
|
|
72
|
+
? "Connected to API"
|
|
73
|
+
: "API Disconnected"}
|
|
74
|
+
</Text>
|
|
75
|
+
</View>
|
|
76
|
+
</View>
|
|
77
|
+
{{else}}
|
|
78
|
+
{{#unless (eq api "none")}}
|
|
79
|
+
<View style={styles.statusRow}>
|
|
80
|
+
<View style={[styles.statusIndicator, { backgroundColor: healthCheck.data ? "#10b981" : "#f59e0b" }]} />
|
|
81
|
+
<View style={styles.statusContent}>
|
|
82
|
+
<Text style={[styles.statusTitle, { color: theme.text }]}>
|
|
83
|
+
{{#if (eq api "orpc")}}ORPC{{else}}TRPC{{/if}}
|
|
84
|
+
</Text>
|
|
85
|
+
<Text style={[styles.statusText, { color: theme.text, opacity: 0.7 }]}>
|
|
86
|
+
{healthCheck.isLoading
|
|
87
|
+
? "Checking connection..."
|
|
88
|
+
: healthCheck.data
|
|
89
|
+
? "All systems operational"
|
|
90
|
+
: "Service unavailable"}
|
|
91
|
+
</Text>
|
|
92
|
+
</View>
|
|
93
|
+
</View>
|
|
94
|
+
{{/unless}}
|
|
95
|
+
{{/if}}
|
|
96
|
+
</View>
|
|
97
|
+
{{/unless}}
|
|
98
|
+
|
|
99
|
+
{{#if (and (eq backend "convex") (eq auth "clerk"))}}
|
|
100
|
+
<Authenticated>
|
|
101
|
+
<Text style=\{{ color: theme.text }}>Hello {user?.emailAddresses[0].emailAddress}</Text>
|
|
102
|
+
<Text style=\{{ color: theme.text }}>Private Data: {privateData?.message}</Text>
|
|
103
|
+
<SignOutButton />
|
|
104
|
+
</Authenticated>
|
|
105
|
+
<Unauthenticated>
|
|
106
|
+
<Link href="/(auth)/sign-in">
|
|
107
|
+
<Text style=\{{ color: theme.primary }}>Sign in</Text>
|
|
108
|
+
</Link>
|
|
109
|
+
<Link href="/(auth)/sign-up">
|
|
110
|
+
<Text style=\{{ color: theme.primary }}>Sign up</Text>
|
|
111
|
+
</Link>
|
|
112
|
+
</Unauthenticated>
|
|
113
|
+
<AuthLoading>
|
|
114
|
+
<Text style=\{{ color: theme.text }}>Loading...</Text>
|
|
115
|
+
</AuthLoading>
|
|
116
|
+
{{/if}}
|
|
117
|
+
|
|
118
|
+
{{#if (and (eq backend "convex") (eq auth "better-auth"))}}
|
|
119
|
+
{user ? (
|
|
120
|
+
<View style={[styles.userCard, { backgroundColor: theme.card, borderColor: theme.border }]}>
|
|
121
|
+
<View style={styles.userHeader}>
|
|
122
|
+
<Text style={[styles.userText, { color: theme.text }]}>
|
|
123
|
+
Welcome, <Text style={styles.userName}>{user.name}</Text>
|
|
124
|
+
</Text>
|
|
125
|
+
</View>
|
|
126
|
+
<Text style={[styles.userEmail, { color: theme.text, opacity: 0.7 }]}>
|
|
127
|
+
{user.email}
|
|
128
|
+
</Text>
|
|
129
|
+
<TouchableOpacity style={[styles.signOutButton, { backgroundColor: theme.notification }]} onPress={()=> {
|
|
130
|
+
authClient.signOut();
|
|
131
|
+
}}
|
|
132
|
+
>
|
|
133
|
+
<Text style={styles.signOutText}>Sign Out</Text>
|
|
134
|
+
</TouchableOpacity>
|
|
135
|
+
</View>
|
|
136
|
+
) : null}
|
|
137
|
+
<View style={[styles.statusCard, { backgroundColor: theme.card, borderColor: theme.border }]}>
|
|
138
|
+
<Text style={[styles.statusCardTitle, { color: theme.text }]}>
|
|
139
|
+
API Status
|
|
140
|
+
</Text>
|
|
141
|
+
<View style={styles.statusRow}>
|
|
142
|
+
<View style={[styles.statusIndicator, { backgroundColor: healthCheck ? "#10b981" : "#ef4444" }]} />
|
|
143
|
+
<Text style={[styles.statusText, { color: theme.text, opacity: 0.7 }]}>
|
|
144
|
+
{healthCheck === undefined
|
|
145
|
+
? "Checking..."
|
|
146
|
+
: healthCheck === "OK"
|
|
147
|
+
? "Connected to API"
|
|
148
|
+
: "API Disconnected"}
|
|
149
|
+
</Text>
|
|
150
|
+
</View>
|
|
151
|
+
</View>
|
|
152
|
+
{!user && (
|
|
153
|
+
<>
|
|
154
|
+
<SignIn />
|
|
155
|
+
<SignUp />
|
|
156
|
+
</>
|
|
157
|
+
)}
|
|
158
|
+
{{/if}}
|
|
159
|
+
</View>
|
|
160
|
+
</ScrollView>
|
|
161
|
+
</Container>
|
|
162
|
+
);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
const styles = StyleSheet.create({
|
|
166
|
+
scrollView: {
|
|
167
|
+
flex: 1,
|
|
168
|
+
},
|
|
169
|
+
content: {
|
|
170
|
+
padding: 16,
|
|
171
|
+
},
|
|
172
|
+
title: {
|
|
173
|
+
fontSize: 24,
|
|
174
|
+
fontWeight: "bold",
|
|
175
|
+
marginBottom: 16,
|
|
176
|
+
},
|
|
177
|
+
card: {
|
|
178
|
+
padding: 16,
|
|
179
|
+
marginBottom: 16,
|
|
180
|
+
borderWidth: 1,
|
|
181
|
+
},
|
|
182
|
+
statusRow: {
|
|
183
|
+
flexDirection: "row",
|
|
184
|
+
alignItems: "center",
|
|
185
|
+
gap: 8,
|
|
186
|
+
},
|
|
187
|
+
statusIndicator: {
|
|
188
|
+
height: 8,
|
|
189
|
+
width: 8,
|
|
190
|
+
},
|
|
191
|
+
statusContent: {
|
|
192
|
+
flex: 1,
|
|
193
|
+
},
|
|
194
|
+
statusTitle: {
|
|
195
|
+
fontSize: 14,
|
|
196
|
+
fontWeight: "bold",
|
|
197
|
+
},
|
|
198
|
+
statusText: {
|
|
199
|
+
fontSize: 12,
|
|
200
|
+
},
|
|
201
|
+
userCard: {
|
|
202
|
+
marginBottom: 16,
|
|
203
|
+
padding: 16,
|
|
204
|
+
borderWidth: 1,
|
|
205
|
+
},
|
|
206
|
+
userHeader: {
|
|
207
|
+
marginBottom: 8,
|
|
208
|
+
},
|
|
209
|
+
userText: {
|
|
210
|
+
fontSize: 16,
|
|
211
|
+
},
|
|
212
|
+
userName: {
|
|
213
|
+
fontWeight: "bold",
|
|
214
|
+
},
|
|
215
|
+
userEmail: {
|
|
216
|
+
fontSize: 14,
|
|
217
|
+
marginBottom: 12,
|
|
218
|
+
},
|
|
219
|
+
signOutButton: {
|
|
220
|
+
padding: 12,
|
|
221
|
+
},
|
|
222
|
+
signOutText: {
|
|
223
|
+
color: "#ffffff",
|
|
224
|
+
},
|
|
225
|
+
statusCard: {
|
|
226
|
+
marginBottom: 16,
|
|
227
|
+
padding: 16,
|
|
228
|
+
borderWidth: 1,
|
|
229
|
+
},
|
|
230
|
+
statusCardTitle: {
|
|
231
|
+
marginBottom: 8,
|
|
232
|
+
fontWeight: "bold",
|
|
233
|
+
},
|
|
234
|
+
});
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { Container } from "@/components/container";
|
|
2
|
+
import { Link, Stack } from "expo-router";
|
|
3
|
+
import { Text, View, StyleSheet } from "react-native";
|
|
4
|
+
import { useColorScheme } from "@/lib/use-color-scheme";
|
|
5
|
+
import { NAV_THEME } from "@/lib/constants";
|
|
6
|
+
|
|
7
|
+
export default function NotFoundScreen() {
|
|
8
|
+
const { colorScheme } = useColorScheme();
|
|
9
|
+
const theme = colorScheme === "dark" ? NAV_THEME.dark : NAV_THEME.light;
|
|
10
|
+
|
|
11
|
+
return (
|
|
12
|
+
<>
|
|
13
|
+
<Stack.Screen options=\{{ title: "Oops!" }} />
|
|
14
|
+
<Container>
|
|
15
|
+
<View style={styles.container}>
|
|
16
|
+
<View style={styles.content}>
|
|
17
|
+
<Text style={styles.emoji}>🤔</Text>
|
|
18
|
+
<Text style={[styles.title, { color: theme.text }]}>
|
|
19
|
+
Page Not Found
|
|
20
|
+
</Text>
|
|
21
|
+
<Text style={[styles.subtitle, { color: theme.text, opacity: 0.7 }]}>
|
|
22
|
+
Sorry, the page you're looking for doesn't exist.
|
|
23
|
+
</Text>
|
|
24
|
+
<Link href="/" asChild>
|
|
25
|
+
<Text style={[styles.link, { color: theme.primary, backgroundColor: `${theme.primary}1a` }]}>
|
|
26
|
+
Go to Home
|
|
27
|
+
</Text>
|
|
28
|
+
</Link>
|
|
29
|
+
</View>
|
|
30
|
+
</View>
|
|
31
|
+
</Container>
|
|
32
|
+
</>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
const styles = StyleSheet.create({
|
|
37
|
+
container: {
|
|
38
|
+
flex: 1,
|
|
39
|
+
justifyContent: "center",
|
|
40
|
+
alignItems: "center",
|
|
41
|
+
padding: 16,
|
|
42
|
+
},
|
|
43
|
+
content: {
|
|
44
|
+
alignItems: "center",
|
|
45
|
+
},
|
|
46
|
+
emoji: {
|
|
47
|
+
fontSize: 48,
|
|
48
|
+
marginBottom: 16,
|
|
49
|
+
},
|
|
50
|
+
title: {
|
|
51
|
+
fontSize: 20,
|
|
52
|
+
fontWeight: "bold",
|
|
53
|
+
marginBottom: 8,
|
|
54
|
+
textAlign: "center",
|
|
55
|
+
},
|
|
56
|
+
subtitle: {
|
|
57
|
+
fontSize: 14,
|
|
58
|
+
textAlign: "center",
|
|
59
|
+
marginBottom: 24,
|
|
60
|
+
},
|
|
61
|
+
link: {
|
|
62
|
+
padding: 12,
|
|
63
|
+
},
|
|
64
|
+
});
|
|
65
|
+
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
{{#if (includes examples "ai")}}
|
|
2
|
+
import "@/polyfills";
|
|
3
|
+
{{/if}}
|
|
4
|
+
|
|
5
|
+
{{#if (eq backend "convex")}}
|
|
6
|
+
{{#if (eq auth "better-auth")}}
|
|
7
|
+
import { ConvexReactClient } from "convex/react";
|
|
8
|
+
import { ConvexBetterAuthProvider } from "@convex-dev/better-auth/react";
|
|
9
|
+
import { authClient } from "@/lib/auth-client";
|
|
10
|
+
import { env } from "@{{projectName}}/env/native";
|
|
11
|
+
{{else}}
|
|
12
|
+
import { ConvexProvider, ConvexReactClient } from "convex/react";
|
|
13
|
+
import { env } from "@{{projectName}}/env/native";
|
|
14
|
+
{{/if}}
|
|
15
|
+
{{#if (eq auth "clerk")}}
|
|
16
|
+
import { ClerkProvider, useAuth } from "@clerk/clerk-expo";
|
|
17
|
+
import { ConvexProviderWithClerk } from "convex/react-clerk";
|
|
18
|
+
import { tokenCache } from "@clerk/clerk-expo/token-cache";
|
|
19
|
+
{{/if}}
|
|
20
|
+
{{else}}
|
|
21
|
+
{{#unless (eq api "none")}}
|
|
22
|
+
import { QueryClientProvider } from "@tanstack/react-query";
|
|
23
|
+
{{/unless}}
|
|
24
|
+
{{/if}}
|
|
25
|
+
|
|
26
|
+
import { Stack } from "expo-router";
|
|
27
|
+
import {
|
|
28
|
+
DarkTheme,
|
|
29
|
+
DefaultTheme,
|
|
30
|
+
type Theme,
|
|
31
|
+
ThemeProvider,
|
|
32
|
+
} from "@react-navigation/native";
|
|
33
|
+
import { StatusBar } from "expo-status-bar";
|
|
34
|
+
import { GestureHandlerRootView } from "react-native-gesture-handler";
|
|
35
|
+
{{#if (eq api "trpc")}}
|
|
36
|
+
import { queryClient } from "@/utils/trpc";
|
|
37
|
+
{{/if}}
|
|
38
|
+
{{#if (eq api "orpc")}}
|
|
39
|
+
import { queryClient } from "@/utils/orpc";
|
|
40
|
+
{{/if}}
|
|
41
|
+
import { NAV_THEME } from "@/lib/constants";
|
|
42
|
+
import React, { useRef } from "react";
|
|
43
|
+
import { useColorScheme } from "@/lib/use-color-scheme";
|
|
44
|
+
import { Platform, StyleSheet } from "react-native";
|
|
45
|
+
import { setAndroidNavigationBar } from "@/lib/android-navigation-bar";
|
|
46
|
+
|
|
47
|
+
const LIGHT_THEME: Theme = {
|
|
48
|
+
...DefaultTheme,
|
|
49
|
+
colors: NAV_THEME.light,
|
|
50
|
+
};
|
|
51
|
+
const DARK_THEME: Theme = {
|
|
52
|
+
...DarkTheme,
|
|
53
|
+
colors: NAV_THEME.dark,
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export const unstable_settings = {
|
|
57
|
+
initialRouteName: "(drawer)",
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
{{#if (eq backend "convex")}}
|
|
61
|
+
const convex = new ConvexReactClient(env.EXPO_PUBLIC_CONVEX_URL, {
|
|
62
|
+
unsavedChangesWarning: false,
|
|
63
|
+
});
|
|
64
|
+
{{/if}}
|
|
65
|
+
|
|
66
|
+
const useIsomorphicLayoutEffect =
|
|
67
|
+
Platform.OS === "web" && typeof window === "undefined"
|
|
68
|
+
? React.useEffect
|
|
69
|
+
: React.useLayoutEffect;
|
|
70
|
+
|
|
71
|
+
const styles = StyleSheet.create({
|
|
72
|
+
container: {
|
|
73
|
+
flex: 1,
|
|
74
|
+
},
|
|
75
|
+
});
|
|
76
|
+
|
|
77
|
+
export default function RootLayout() {
|
|
78
|
+
const hasMounted = useRef(false);
|
|
79
|
+
const { colorScheme, isDarkColorScheme } = useColorScheme();
|
|
80
|
+
const [isColorSchemeLoaded, setIsColorSchemeLoaded] = React.useState(false);
|
|
81
|
+
|
|
82
|
+
useIsomorphicLayoutEffect(() => {
|
|
83
|
+
if (hasMounted.current) {
|
|
84
|
+
return;
|
|
85
|
+
}
|
|
86
|
+
setAndroidNavigationBar(colorScheme);
|
|
87
|
+
setIsColorSchemeLoaded(true);
|
|
88
|
+
hasMounted.current = true;
|
|
89
|
+
}, []);
|
|
90
|
+
|
|
91
|
+
if (!isColorSchemeLoaded) {
|
|
92
|
+
return null;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
return (
|
|
96
|
+
<>
|
|
97
|
+
{{#if (eq backend "convex")}}
|
|
98
|
+
{{#if (eq auth "clerk")}}
|
|
99
|
+
<ClerkProvider tokenCache={tokenCache} publishableKey={env.EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY}>
|
|
100
|
+
<ConvexProviderWithClerk client={convex} useAuth={useAuth}>
|
|
101
|
+
<ThemeProvider value={isDarkColorScheme ? DARK_THEME : LIGHT_THEME}>
|
|
102
|
+
<StatusBar style={isDarkColorScheme ? "light" : "dark"} />
|
|
103
|
+
<GestureHandlerRootView style={styles.container}>
|
|
104
|
+
<Stack>
|
|
105
|
+
<Stack.Screen name="(drawer)" options=\{{ headerShown: false }} />
|
|
106
|
+
<Stack.Screen name="(auth)" options=\{{ headerShown: false }} />
|
|
107
|
+
<Stack.Screen name="modal" options=\{{ title: "Modal", presentation: "modal" }} />
|
|
108
|
+
</Stack>
|
|
109
|
+
</GestureHandlerRootView>
|
|
110
|
+
</ThemeProvider>
|
|
111
|
+
</ConvexProviderWithClerk>
|
|
112
|
+
</ClerkProvider>
|
|
113
|
+
{{else if (eq auth "better-auth")}}
|
|
114
|
+
<ConvexBetterAuthProvider client={convex} authClient={authClient}>
|
|
115
|
+
<ThemeProvider value={isDarkColorScheme ? DARK_THEME : LIGHT_THEME}>
|
|
116
|
+
<StatusBar style={isDarkColorScheme ? "light" : "dark"} />
|
|
117
|
+
<GestureHandlerRootView style={styles.container}>
|
|
118
|
+
<Stack>
|
|
119
|
+
<Stack.Screen name="(drawer)" options=\{{ headerShown: false }} />
|
|
120
|
+
<Stack.Screen name="modal" options=\{{ title: "Modal", presentation: "modal" }} />
|
|
121
|
+
</Stack>
|
|
122
|
+
</GestureHandlerRootView>
|
|
123
|
+
</ThemeProvider>
|
|
124
|
+
</ConvexBetterAuthProvider>
|
|
125
|
+
{{else}}
|
|
126
|
+
<ConvexProvider client={convex}>
|
|
127
|
+
<ThemeProvider value={isDarkColorScheme ? DARK_THEME : LIGHT_THEME}>
|
|
128
|
+
<StatusBar style={isDarkColorScheme ? "light" : "dark"} />
|
|
129
|
+
<GestureHandlerRootView style={styles.container}>
|
|
130
|
+
<Stack>
|
|
131
|
+
<Stack.Screen name="(drawer)" options=\{{ headerShown: false }} />
|
|
132
|
+
<Stack.Screen name="modal" options=\{{ title: "Modal", presentation: "modal" }} />
|
|
133
|
+
</Stack>
|
|
134
|
+
</GestureHandlerRootView>
|
|
135
|
+
</ThemeProvider>
|
|
136
|
+
</ConvexProvider>
|
|
137
|
+
{{/if}}
|
|
138
|
+
{{else}}
|
|
139
|
+
{{#unless (eq api "none")}}
|
|
140
|
+
<QueryClientProvider client={queryClient}>
|
|
141
|
+
<ThemeProvider value={isDarkColorScheme ? DARK_THEME : LIGHT_THEME}>
|
|
142
|
+
<StatusBar style={isDarkColorScheme ? "light" : "dark"} />
|
|
143
|
+
<GestureHandlerRootView style={styles.container}>
|
|
144
|
+
<Stack>
|
|
145
|
+
<Stack.Screen name="(drawer)" options=\{{ headerShown: false }} />
|
|
146
|
+
<Stack.Screen name="modal" options=\{{ title: "Modal", presentation: "modal" }} />
|
|
147
|
+
</Stack>
|
|
148
|
+
</GestureHandlerRootView>
|
|
149
|
+
</ThemeProvider>
|
|
150
|
+
</QueryClientProvider>
|
|
151
|
+
{{else}}
|
|
152
|
+
<ThemeProvider value={isDarkColorScheme ? DARK_THEME : LIGHT_THEME}>
|
|
153
|
+
<StatusBar style={isDarkColorScheme ? "light" : "dark"} />
|
|
154
|
+
<GestureHandlerRootView style={styles.container}>
|
|
155
|
+
<Stack>
|
|
156
|
+
<Stack.Screen name="(drawer)" options=\{{ headerShown: false }} />
|
|
157
|
+
<Stack.Screen name="modal" options=\{{ title: "Modal", presentation: "modal" }} />
|
|
158
|
+
</Stack>
|
|
159
|
+
</GestureHandlerRootView>
|
|
160
|
+
</ThemeProvider>
|
|
161
|
+
{{/unless}}
|
|
162
|
+
{{/if}}
|
|
163
|
+
</>
|
|
164
|
+
);
|
|
165
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Container } from "@/components/container";
|
|
2
|
+
import { Text, View, StyleSheet } from "react-native";
|
|
3
|
+
import { useColorScheme } from "@/lib/use-color-scheme";
|
|
4
|
+
import { NAV_THEME } from "@/lib/constants";
|
|
5
|
+
|
|
6
|
+
export default function Modal() {
|
|
7
|
+
const { colorScheme } = useColorScheme();
|
|
8
|
+
const theme = colorScheme === "dark" ? NAV_THEME.dark : NAV_THEME.light;
|
|
9
|
+
|
|
10
|
+
return (
|
|
11
|
+
<Container>
|
|
12
|
+
<View style={styles.container}>
|
|
13
|
+
<View style={styles.header}>
|
|
14
|
+
<Text style={[styles.title, { color: theme.text }]}>Modal</Text>
|
|
15
|
+
</View>
|
|
16
|
+
</View>
|
|
17
|
+
</Container>
|
|
18
|
+
);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const styles = StyleSheet.create({
|
|
22
|
+
container: {
|
|
23
|
+
flex: 1,
|
|
24
|
+
padding: 16,
|
|
25
|
+
},
|
|
26
|
+
header: {
|
|
27
|
+
marginBottom: 16,
|
|
28
|
+
},
|
|
29
|
+
title: {
|
|
30
|
+
fontSize: 20,
|
|
31
|
+
fontWeight: "bold",
|
|
32
|
+
},
|
|
33
|
+
});
|
|
34
|
+
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"expo": {
|
|
3
|
+
"name": "{{projectName}}",
|
|
4
|
+
"slug": "{{projectName}}",
|
|
5
|
+
"version": "1.0.0",
|
|
6
|
+
"orientation": "portrait",
|
|
7
|
+
"icon": "./assets/images/icon.png",
|
|
8
|
+
"scheme": "mybettertapp",
|
|
9
|
+
"userInterfaceStyle": "automatic",
|
|
10
|
+
"newArchEnabled": true,
|
|
11
|
+
"ios": {
|
|
12
|
+
"supportsTablet": true
|
|
13
|
+
},
|
|
14
|
+
"android": {
|
|
15
|
+
"adaptiveIcon": {
|
|
16
|
+
"backgroundColor": "#E6F4FE",
|
|
17
|
+
"foregroundImage": "./assets/images/android-icon-foreground.png",
|
|
18
|
+
"backgroundImage": "./assets/images/android-icon-background.png",
|
|
19
|
+
"monochromeImage": "./assets/images/android-icon-monochrome.png"
|
|
20
|
+
},
|
|
21
|
+
"edgeToEdgeEnabled": true,
|
|
22
|
+
"predictiveBackGestureEnabled": false,
|
|
23
|
+
"package": "com.anonymous.mybettertapp"
|
|
24
|
+
},
|
|
25
|
+
"web": {
|
|
26
|
+
"output": "static",
|
|
27
|
+
"favicon": "./assets/images/favicon.png"
|
|
28
|
+
},
|
|
29
|
+
"plugins": [
|
|
30
|
+
"expo-router",
|
|
31
|
+
[
|
|
32
|
+
"expo-splash-screen",
|
|
33
|
+
{
|
|
34
|
+
"image": "./assets/images/splash-icon.png",
|
|
35
|
+
"imageWidth": 200,
|
|
36
|
+
"resizeMode": "contain",
|
|
37
|
+
"backgroundColor": "#ffffff",
|
|
38
|
+
"dark": {
|
|
39
|
+
"backgroundColor": "#000000"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
],
|
|
44
|
+
"experiments": {
|
|
45
|
+
"typedRoutes": true,
|
|
46
|
+
"reactCompiler": true
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { SafeAreaView } from "react-native-safe-area-context";
|
|
3
|
+
import { useColorScheme } from "@/lib/use-color-scheme";
|
|
4
|
+
import { NAV_THEME } from "@/lib/constants";
|
|
5
|
+
import { StyleSheet } from "react-native";
|
|
6
|
+
|
|
7
|
+
export function Container({ children }: { children: React.ReactNode }) {
|
|
8
|
+
const { colorScheme } = useColorScheme();
|
|
9
|
+
const backgroundColor = colorScheme === "dark"
|
|
10
|
+
? NAV_THEME.dark.background
|
|
11
|
+
: NAV_THEME.light.background;
|
|
12
|
+
|
|
13
|
+
return (
|
|
14
|
+
<SafeAreaView style={[styles.container, { backgroundColor }]}>
|
|
15
|
+
{children}
|
|
16
|
+
</SafeAreaView>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
const styles = StyleSheet.create({
|
|
21
|
+
container: {
|
|
22
|
+
flex: 1,
|
|
23
|
+
},
|
|
24
|
+
});
|
|
25
|
+
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import FontAwesome from "@expo/vector-icons/FontAwesome";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import { Pressable, StyleSheet, View } from "react-native";
|
|
4
|
+
import { useColorScheme } from "@/lib/use-color-scheme";
|
|
5
|
+
import { NAV_THEME } from "@/lib/constants";
|
|
6
|
+
|
|
7
|
+
export const HeaderButton = forwardRef<
|
|
8
|
+
View,
|
|
9
|
+
{ onPress?: () => void }
|
|
10
|
+
>(({ onPress }, ref) => {
|
|
11
|
+
const { colorScheme } = useColorScheme();
|
|
12
|
+
const theme = colorScheme === "dark" ? NAV_THEME.dark : NAV_THEME.light;
|
|
13
|
+
|
|
14
|
+
return (
|
|
15
|
+
<Pressable
|
|
16
|
+
ref={ref}
|
|
17
|
+
onPress={onPress}
|
|
18
|
+
style={({ pressed }) => [
|
|
19
|
+
styles.button,
|
|
20
|
+
{
|
|
21
|
+
backgroundColor: pressed
|
|
22
|
+
? theme.background
|
|
23
|
+
: theme.card,
|
|
24
|
+
},
|
|
25
|
+
]}
|
|
26
|
+
>
|
|
27
|
+
{({ pressed }) => (
|
|
28
|
+
<FontAwesome
|
|
29
|
+
name="info-circle"
|
|
30
|
+
size={20}
|
|
31
|
+
color={theme.text}
|
|
32
|
+
style=\{{
|
|
33
|
+
opacity: pressed ? 0.7 : 1,
|
|
34
|
+
}}
|
|
35
|
+
/>
|
|
36
|
+
)}
|
|
37
|
+
</Pressable>
|
|
38
|
+
);
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
const styles = StyleSheet.create({
|
|
42
|
+
button: {
|
|
43
|
+
padding: 8,
|
|
44
|
+
marginRight: 8,
|
|
45
|
+
},
|
|
46
|
+
});
|
|
47
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import FontAwesome from "@expo/vector-icons/FontAwesome";
|
|
2
|
+
|
|
3
|
+
export const TabBarIcon = (props: {
|
|
4
|
+
name: React.ComponentProps<typeof FontAwesome>["name"];
|
|
5
|
+
color: string;
|
|
6
|
+
}) => {
|
|
7
|
+
return <FontAwesome size={24} style=\{{ marginBottom: -3 }} {...props} />;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as NavigationBar from "expo-navigation-bar";
|
|
2
|
+
import { Platform } from "react-native";
|
|
3
|
+
import { NAV_THEME } from "@/lib/constants";
|
|
4
|
+
|
|
5
|
+
export async function setAndroidNavigationBar(theme: "light" | "dark") {
|
|
6
|
+
if (Platform.OS !== "android") return;
|
|
7
|
+
await NavigationBar.setButtonStyleAsync(theme === "dark" ? "light" : "dark");
|
|
8
|
+
await NavigationBar.setBackgroundColorAsync(
|
|
9
|
+
theme === "dark" ? NAV_THEME.dark.background : NAV_THEME.light.background,
|
|
10
|
+
);
|
|
11
|
+
}
|
|
12
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export const NAV_THEME = {
|
|
2
|
+
light: {
|
|
3
|
+
background: "hsl(0 0% 100%)",
|
|
4
|
+
border: "hsl(220 13% 91%)",
|
|
5
|
+
card: "hsl(0 0% 100%)",
|
|
6
|
+
notification: "hsl(0 84.2% 60.2%)",
|
|
7
|
+
primary: "hsl(221.2 83.2% 53.3%)",
|
|
8
|
+
text: "hsl(222.2 84% 4.9%)",
|
|
9
|
+
},
|
|
10
|
+
dark: {
|
|
11
|
+
background: "hsl(222.2 84% 4.9%)",
|
|
12
|
+
border: "hsl(217.2 32.6% 17.5%)",
|
|
13
|
+
card: "hsl(222.2 84% 4.9%)",
|
|
14
|
+
notification: "hsl(0 72% 51%)",
|
|
15
|
+
primary: "hsl(217.2 91.2% 59.8%)",
|
|
16
|
+
text: "hsl(210 40% 98%)",
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { useColorScheme as useRNColorScheme } from "react-native";
|
|
2
|
+
|
|
3
|
+
export function useColorScheme() {
|
|
4
|
+
const systemColorScheme = useRNColorScheme();
|
|
5
|
+
const colorScheme = systemColorScheme ?? "light";
|
|
6
|
+
|
|
7
|
+
return {
|
|
8
|
+
colorScheme: colorScheme as "light" | "dark",
|
|
9
|
+
isDarkColorScheme: colorScheme === "dark",
|
|
10
|
+
setColorScheme: () => {
|
|
11
|
+
// Color scheme is managed by the system in bare mode
|
|
12
|
+
console.warn("setColorScheme is not available in bare mode. Color scheme is managed by the system.");
|
|
13
|
+
},
|
|
14
|
+
toggleColorScheme: () => {
|
|
15
|
+
// Color scheme is managed by the system in bare mode
|
|
16
|
+
console.warn("toggleColorScheme is not available in bare mode. Color scheme is managed by the system.");
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
|