create-croissant 0.1.56 → 0.1.57

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.
Files changed (89) hide show
  1. package/dist/add.js +9 -9
  2. package/dist/index.js +8 -8
  3. package/package.json +1 -1
  4. package/template/README.md +10 -1
  5. package/template/apps/desktop/.vscode/extensions.json +3 -0
  6. package/template/apps/desktop/README.md +7 -0
  7. package/template/apps/desktop/index.html +14 -0
  8. package/template/apps/desktop/package.json +40 -0
  9. package/template/apps/desktop/public/tauri.svg +6 -0
  10. package/template/apps/desktop/public/vite.svg +1 -0
  11. package/template/apps/desktop/src/App.css +116 -0
  12. package/template/apps/desktop/src/App.tsx +51 -0
  13. package/template/apps/desktop/src/assets/react.svg +1 -0
  14. package/template/apps/desktop/src/components/app-sidebar.tsx +186 -0
  15. package/template/apps/desktop/src/components/login-form.tsx +160 -0
  16. package/template/apps/desktop/src/components/search-form.tsx +19 -0
  17. package/template/apps/desktop/src/components/signup-form.tsx +206 -0
  18. package/template/apps/desktop/src/components/version-switcher.tsx +54 -0
  19. package/template/apps/desktop/src/env.d.ts +1 -0
  20. package/template/apps/desktop/src/lib/auth-client.ts +5 -0
  21. package/template/apps/desktop/src/lib/orpc.ts +10 -0
  22. package/template/apps/desktop/src/main.tsx +12 -0
  23. package/template/apps/desktop/src/routeTree.gen.ts +240 -0
  24. package/template/apps/desktop/src/router.tsx +19 -0
  25. package/template/apps/desktop/src/routes/__root.tsx +52 -0
  26. package/template/apps/desktop/src/routes/_auth/account.tsx +275 -0
  27. package/template/apps/desktop/src/routes/_auth/dashboard.tsx +58 -0
  28. package/template/apps/desktop/src/routes/_auth/examples/client-orpc-auth.tsx +46 -0
  29. package/template/apps/desktop/src/routes/_auth.tsx +23 -0
  30. package/template/apps/desktop/src/routes/_public/examples/client-orpc.tsx +330 -0
  31. package/template/apps/desktop/src/routes/_public/index.tsx +66 -0
  32. package/template/apps/desktop/src/routes/_public/login.tsx +34 -0
  33. package/template/apps/desktop/src/routes/_public/signup.tsx +31 -0
  34. package/template/apps/desktop/src/routes/_public.tsx +23 -0
  35. package/template/apps/desktop/src/vite-env.d.ts +1 -0
  36. package/template/apps/desktop/src-tauri/Cargo.toml +25 -0
  37. package/template/apps/desktop/src-tauri/build.rs +3 -0
  38. package/template/apps/desktop/src-tauri/capabilities/default.json +7 -0
  39. package/template/apps/desktop/src-tauri/icons/128x128.png +0 -0
  40. package/template/apps/desktop/src-tauri/icons/128x128@2x.png +0 -0
  41. package/template/apps/desktop/src-tauri/icons/32x32.png +0 -0
  42. package/template/apps/desktop/src-tauri/icons/Square107x107Logo.png +0 -0
  43. package/template/apps/desktop/src-tauri/icons/Square142x142Logo.png +0 -0
  44. package/template/apps/desktop/src-tauri/icons/Square150x150Logo.png +0 -0
  45. package/template/apps/desktop/src-tauri/icons/Square284x284Logo.png +0 -0
  46. package/template/apps/desktop/src-tauri/icons/Square30x30Logo.png +0 -0
  47. package/template/apps/desktop/src-tauri/icons/Square310x310Logo.png +0 -0
  48. package/template/apps/desktop/src-tauri/icons/Square44x44Logo.png +0 -0
  49. package/template/apps/desktop/src-tauri/icons/Square71x71Logo.png +0 -0
  50. package/template/apps/desktop/src-tauri/icons/Square89x89Logo.png +0 -0
  51. package/template/apps/desktop/src-tauri/icons/StoreLogo.png +0 -0
  52. package/template/apps/desktop/src-tauri/icons/icon.icns +0 -0
  53. package/template/apps/desktop/src-tauri/icons/icon.ico +0 -0
  54. package/template/apps/desktop/src-tauri/icons/icon.png +0 -0
  55. package/template/apps/desktop/src-tauri/src/lib.rs +14 -0
  56. package/template/apps/desktop/src-tauri/src/main.rs +6 -0
  57. package/template/apps/desktop/src-tauri/tauri.conf.json +35 -0
  58. package/template/apps/desktop/tsconfig.json +17 -0
  59. package/template/apps/desktop/tsconfig.node.json +10 -0
  60. package/template/apps/desktop/vite.config.ts +40 -0
  61. package/template/apps/mobile/app/(tabs)/_layout.tsx +11 -10
  62. package/template/apps/mobile/app/(tabs)/explore.tsx +29 -27
  63. package/template/apps/mobile/app/(tabs)/index.tsx +25 -24
  64. package/template/apps/mobile/app/_layout.tsx +8 -8
  65. package/template/apps/mobile/app/modal.tsx +6 -6
  66. package/template/apps/mobile/components/external-link.tsx +5 -5
  67. package/template/apps/mobile/components/haptic-tab.tsx +4 -4
  68. package/template/apps/mobile/components/hello-wave.tsx +5 -4
  69. package/template/apps/mobile/components/parallax-scroll-view.tsx +15 -13
  70. package/template/apps/mobile/components/themed-text.tsx +14 -14
  71. package/template/apps/mobile/components/themed-view.tsx +3 -3
  72. package/template/apps/mobile/components/ui/collapsible.tsx +14 -13
  73. package/template/apps/mobile/components/ui/icon-symbol.ios.tsx +4 -4
  74. package/template/apps/mobile/components/ui/icon-symbol.tsx +9 -9
  75. package/template/apps/mobile/constants/theme.ts +19 -19
  76. package/template/apps/mobile/hooks/use-color-scheme.ts +1 -1
  77. package/template/apps/mobile/hooks/use-color-scheme.web.ts +3 -3
  78. package/template/apps/mobile/hooks/use-theme-color.ts +4 -4
  79. package/template/apps/mobile/package.json +7 -7
  80. package/template/apps/mobile/scripts/reset-project.js +2 -2
  81. package/template/apps/mobile/tsconfig.json +3 -13
  82. package/template/apps/platform/src/components/login-form.tsx +4 -1
  83. package/template/apps/platform/src/components/signup-form.tsx +15 -12
  84. package/template/apps/platform/src/routes/__root.tsx +7 -1
  85. package/template/apps/platform/src/routes/_public/examples/client-orpc.tsx +12 -3
  86. package/template/apps/platform/src/routes/_public/examples/ssr-orpc.tsx +2 -1
  87. package/template/package.json +7 -5
  88. package/template/packages/orpc/package.json +4 -4
  89. package/template/pnpm-workspace.yaml +3 -3
package/dist/add.js CHANGED
@@ -1,13 +1,13 @@
1
1
  #!/usr/bin/env node
2
- import s from"path";import{fileURLToPath as x}from"url";import i from"chalk";import{Command as k}from"commander";import{execa as y}from"execa";import t from"fs-extra";import m from"inquirer";import u from"ora";var v=x(import.meta.url),f=s.dirname(v),b=new k;b.name("croissant-add").description("Add a mobile app to an existing Croissant Stack project").action(async()=>{console.log(i.bold.yellow(`
2
+ import i from"path";import{fileURLToPath as P}from"url";import s from"chalk";import{Command as j}from"commander";import{execa as E}from"execa";import t from"fs-extra";import k from"inquirer";import g from"ora";var A=P(import.meta.url),x=i.dirname(A),v=new j;v.name("croissant-add").description("Add a mobile or desktop app to an existing Croissant Stack project").action(async()=>{console.log(s.bold.yellow(`
3
3
  \u{1F950} Croissant Stack: Add App
4
- `));let n=s.join(process.cwd(),"package.json");await t.pathExists(n)||(console.error(i.red(`
4
+ `));let p=i.join(process.cwd(),"package.json");await t.pathExists(p)||(console.error(s.red(`
5
5
  Error: package.json not found. Are you in the root of your project?
6
- `)),process.exit(1));let o=await t.readJson(n);(!o.scripts||!o.scripts.dev&&!o.scripts.build)&&(console.error(i.red(`
6
+ `)),process.exit(1));let e=await t.readJson(p);(!e.scripts||!e.scripts.dev&&!e.scripts.build)&&(console.error(s.red(`
7
7
  Error: This doesn't look like a Croissant Stack project.
8
- `)),process.exit(1));let c=s.join(process.cwd(),"apps/mobile");if(await t.pathExists(c)){console.log(i.blue(`Mobile app is already present. Nothing to add!
9
- `));return}let{confirm:h}=await m.prompt([{type:"confirm",name:"confirm",message:"Would you like to add the Mobile App (Expo)?",default:!0}]);if(!h)return;let r=process.cwd(),d=u("Adding mobile app...").start();try{let a=s.join(f,"..","template");await t.pathExists(a)||(a=s.resolve(f,"../../.."));let g=s.join(a,"apps/mobile");await t.copy(g,c),o.scripts=o.scripts||{},o.scripts["dev:mobile"]="turbo run dev --filter=mobile",o.scripts["dev:ios"]="turbo run dev --filter=mobile -- --ios",o.scripts["dev:android"]="turbo run dev --filter=mobile -- --android",o.scripts["build:mobile"]="turbo run build --filter=mobile",await t.writeJson(n,o,{spaces:2});let p=s.join(r,"packages/auth/src/lib/auth.ts");if(await t.pathExists(p)){let e=await t.readFile(p,"utf8");e.includes("@better-auth/expo")||(e=`import { expo } from "@better-auth/expo";
10
- ${e}`),e.includes("plugins: [expo()]")||(e=e.replace("emailAndPassword: { enabled: true },",`emailAndPassword: { enabled: true },
8
+ `)),process.exit(1));let u=i.join(process.cwd(),"apps/mobile"),h=i.join(process.cwd(),"apps/desktop"),b=await t.pathExists(u),f=await t.pathExists(h);if(b&&f){console.log(s.blue(`Both mobile and desktop apps are already present. Nothing to add!
9
+ `));return}let l=[];b||l.push({name:"Mobile App (Expo)",value:"mobile"}),f||l.push({name:"Desktop App (Tauri)",value:"desktop"});let{type:a}=await k.prompt([{type:"list",name:"type",message:"Which app would you like to add?",choices:l}]),c=process.cwd(),w=g(`Adding ${a} app...`).start();try{let r=i.join(x,"..","template");if(await t.pathExists(r)||(r=i.resolve(x,"../../..")),a==="mobile"){let n=i.join(r,"apps/mobile");await t.copy(n,u),e.scripts=e.scripts||{},e.scripts["dev:mobile"]="turbo run dev --filter=mobile",e.scripts["dev:ios"]="turbo run dev --filter=mobile -- --ios",e.scripts["dev:android"]="turbo run dev --filter=mobile -- --android",e.scripts["build:mobile"]="turbo run build --filter=mobile",await t.writeJson(p,e,{spaces:2});let d=i.join(c,"packages/auth/src/lib/auth.ts");if(await t.pathExists(d)){let o=await t.readFile(d,"utf8");o.includes("@better-auth/expo")||(o=`import { expo } from "@better-auth/expo";
10
+ ${o}`),o.includes("plugins: [expo()]")||(o=o.replace("emailAndPassword: { enabled: true },",`emailAndPassword: { enabled: true },
11
11
  plugins: [expo()],
12
12
  trustedOrigins: [
13
13
  "mobile://",
@@ -19,7 +19,7 @@ ${e}`),e.includes("plugins: [expo()]")||(e=e.replace("emailAndPassword: { enable
19
19
  "http://localhost:8081",
20
20
  ]
21
21
  : []),
22
- ],`)),await t.writeFile(p,e)}let l=s.join(r,"packages/auth/package.json");if(await t.pathExists(l)){let e=await t.readJson(l);e.dependencies=e.dependencies||{},e.dependencies["@better-auth/expo"]||(e.dependencies["@better-auth/expo"]="latest",await t.writeJson(l,e,{spaces:2}))}d.succeed(i.green("Mobile app added successfully!"));let{install:w}=await m.prompt([{type:"confirm",name:"install",message:"Would you like to install dependencies now?",default:!0}]);if(w){let e=u("Installing dependencies...").start();try{await y("pnpm",["install"],{cwd:r}),e.succeed(i.green("Dependencies installed!"))}catch{e.fail(i.red("Failed to install dependencies. Run pnpm install manually."))}}console.log(i.bold.cyan(`
23
- Next steps:`)),console.log(" pnpm run dev:mobile # Start Expo development server"),console.log(i.yellow(`
22
+ ],`)),await t.writeFile(d,o)}let m=i.join(c,"packages/auth/package.json");if(await t.pathExists(m)){let o=await t.readJson(m);o.dependencies=o.dependencies||{},o.dependencies["@better-auth/expo"]||(o.dependencies["@better-auth/expo"]="latest",await t.writeJson(m,o,{spaces:2}))}}else if(a==="desktop"){let n=i.join(r,"apps/desktop");await t.copy(n,h),e.scripts=e.scripts||{},e.scripts["dev:desktop"]="turbo run dev --filter=desktop",e.scripts["build:desktop"]="turbo run build --filter=desktop",await t.writeJson(p,e,{spaces:2})}w.succeed(s.green(`${a==="mobile"?"Mobile":"Desktop"} app added successfully!`));let{install:y}=await k.prompt([{type:"confirm",name:"install",message:"Would you like to install dependencies now?",default:!0}]);if(y){let n=g("Installing dependencies...").start();try{await E("pnpm",["install"],{cwd:c}),n.succeed(s.green("Dependencies installed!"))}catch{n.fail(s.red("Failed to install dependencies. Run pnpm install manually."))}}console.log(s.bold.cyan(`
23
+ Next steps:`)),console.log(a==="mobile"?" pnpm run dev:mobile # Start Expo development server":" pnpm run dev:desktop # Start Tauri development server"),console.log(s.yellow(`
24
24
  Happy hacking! \u{1F950}
25
- `))}catch(a){d.fail(i.red("An error occurred while adding the mobile app.")),console.error(a),process.exit(1)}});b.parse(process.argv);
25
+ `))}catch(r){w.fail(s.red(`An error occurred while adding the ${a} app.`)),console.error(r),process.exit(1)}});v.parse(process.argv);
package/dist/index.js CHANGED
@@ -1,9 +1,9 @@
1
1
  #!/usr/bin/env node
2
- import n from"path";import{fileURLToPath as b}from"url";import r from"chalk";import{Command as k}from"commander";import{execa as y}from"execa";import e from"fs-extra";import P from"inquirer";import g from"ora";var j=b(import.meta.url),w=n.dirname(j),x=new k;x.name("create-croissant").description("Scaffold a new project using the Croissant Stack").argument("[project-name]","Name of the project").action(async m=>{console.log(r.bold.yellow(`
2
+ import i from"path";import{fileURLToPath as k}from"url";import p from"chalk";import{Command as b}from"commander";import{execa as P}from"execa";import e from"fs-extra";import y from"inquirer";import g from"ora";var j=k(import.meta.url),w=i.dirname(j),x=new b;x.name("create-croissant").description("Scaffold a new project using the Croissant Stack").argument("[project-name]","Name of the project").action(async u=>{console.log(p.bold.yellow(`
3
3
  \u{1F950} Welcome to the Croissant Stack!
4
- `));let u=await P.prompt([{type:"input",name:"name",message:"What is your project named?",default:m||"my-croissant-app",when:!m},{type:"confirm",name:"install",message:"Would you like to install dependencies?",default:!0},{type:"confirm",name:"mobile",message:"Would you like to include the mobile app (Expo)?",default:!0}]),p=m||u.name,s=n.resolve(process.cwd(),p);e.existsSync(s)&&(console.error(r.red(`
5
- Error: Directory ${p} already exists.
6
- `)),process.exit(1));let f=g("Scaffolding your project...").start();try{await e.ensureDir(s);let l=n.join(w,"..","template");if(await e.pathExists(l))await e.copy(l,s);else{let o=n.resolve(w,"../../.."),i=["node_modules","dist",".git","packages/create-croissant",".turbo","pnpm-lock.yaml"];await e.copy(o,s,{filter:t=>{let c=n.relative(o,t);return!i.some(a=>c.startsWith(a))}})}if(u.mobile){let o=n.join(s,"packages/auth/src/lib/auth.ts");if(await e.pathExists(o)){let t=await e.readFile(o,"utf8");t.includes("@better-auth/expo")||(t=`import { expo } from "@better-auth/expo";
4
+ `));let l=await y.prompt([{type:"input",name:"name",message:"What is your project named?",default:u||"my-croissant-app",when:!u},{type:"confirm",name:"install",message:"Would you like to install dependencies?",default:!0},{type:"confirm",name:"mobile",message:"Would you like to include the mobile app (Expo)?",default:!0},{type:"confirm",name:"desktop",message:"Would you like to include the desktop app (Tauri)?",default:!0}]),c=u||l.name,s=i.resolve(process.cwd(),c);e.existsSync(s)&&(console.error(p.red(`
5
+ Error: Directory ${c} already exists.
6
+ `)),process.exit(1));let f=g("Scaffolding your project...").start();try{await e.ensureDir(s);let d=i.join(w,"..","template");if(await e.pathExists(d))await e.copy(d,s);else{let a=i.resolve(w,"../../.."),n=["node_modules","dist",".git","packages/create-croissant",".turbo","pnpm-lock.yaml"];await e.copy(a,s,{filter:t=>{let r=i.relative(a,t);return!n.some(o=>r.startsWith(o))}})}if(l.mobile){let a=i.join(s,"packages/auth/src/lib/auth.ts");if(await e.pathExists(a)){let t=await e.readFile(a,"utf8");t.includes("@better-auth/expo")||(t=`import { expo } from "@better-auth/expo";
7
7
  ${t}`),t.includes("plugins: [expo()]")||(t=t.replace("emailAndPassword: { enabled: true },",`emailAndPassword: { enabled: true },
8
8
  plugins: [expo()],
9
9
  trustedOrigins: [
@@ -16,7 +16,7 @@ ${t}`),t.includes("plugins: [expo()]")||(t=t.replace("emailAndPassword: { enable
16
16
  "http://localhost:8081",
17
17
  ]
18
18
  : []),
19
- ],`)),await e.writeFile(o,t)}let i=n.join(s,"packages/auth/package.json");if(await e.pathExists(i)){let t=await e.readJson(i);t.dependencies=t.dependencies||{},t.dependencies["@better-auth/expo"]||(t.dependencies["@better-auth/expo"]="latest",await e.writeJson(i,t,{spaces:2}))}}else{let o=n.join(s,"apps/mobile");if(await e.pathExists(o)){await e.remove(o);let i=n.join(s,"package.json");if(await e.pathExists(i)){let a=await e.readJson(i);a.scripts&&Object.keys(a.scripts).forEach(d=>{(d.includes("mobile")||d.includes("ios")||d.includes("android"))&&delete a.scripts[d]}),await e.writeJson(i,a,{spaces:2})}let t=n.join(s,"packages/auth/src/lib/auth.ts");if(await e.pathExists(t)){let a=await e.readFile(t,"utf8");a=a.replace(/import \{ expo \} from "@better-auth\/expo";\n/,""),a=a.replace(/\s+plugins: \[expo\(\)\],/,""),a=a.replace(/\s+trustedOrigins: \[[\s\S]*?\],/,""),await e.writeFile(t,a)}let c=n.join(s,"packages/auth/package.json");if(await e.pathExists(c)){let a=await e.readJson(c);a.dependencies&&a.dependencies["@better-auth/expo"]&&(delete a.dependencies["@better-auth/expo"],await e.writeJson(c,a,{spaces:2}))}}}let h=n.join(s,"package.json");if(await e.pathExists(h)){let o=await e.readJson(h);o.name=p,o.version="0.1.0",delete o.private,await e.writeJson(h,o,{spaces:2})}if(f.succeed(r.green(`Project ${p} created at ${s}`)),u.install){let o=g("Installing dependencies...").start();try{await y("pnpm",["install"],{cwd:s}),o.succeed(r.green("Dependencies installed!"))}catch{o.fail(r.red("Failed to install dependencies. You may need to run pnpm install manually."))}}console.log(r.bold.cyan(`
20
- Next steps:`)),console.log(` cd ${p}`),console.log(" pnpm run db:up # Start your PostgreSQL database"),console.log(` pnpm run dev # Start development server
21
- `),console.log(r.yellow(`Happy hacking! \u{1F950}
22
- `))}catch(l){f.fail(r.red("An error occurred during scaffolding.")),console.error(l),process.exit(1)}});x.parse(process.argv);
19
+ ],`)),await e.writeFile(a,t)}let n=i.join(s,"packages/auth/package.json");if(await e.pathExists(n)){let t=await e.readJson(n);t.dependencies=t.dependencies||{},t.dependencies["@better-auth/expo"]||(t.dependencies["@better-auth/expo"]="latest",await e.writeJson(n,t,{spaces:2}))}}else{let a=i.join(s,"apps/mobile");if(await e.pathExists(a)){await e.remove(a);let n=i.join(s,"package.json");if(await e.pathExists(n)){let o=await e.readJson(n);o.scripts&&Object.keys(o.scripts).forEach(m=>{(m.includes("mobile")||m.includes("ios")||m.includes("android"))&&delete o.scripts[m]}),await e.writeJson(n,o,{spaces:2})}let t=i.join(s,"packages/auth/src/lib/auth.ts");if(await e.pathExists(t)){let o=await e.readFile(t,"utf8");o=o.replace(/import \{ expo \} from "@better-auth\/expo";\n/,""),o=o.replace(/\s+plugins: \[expo\(\)\],/,""),o=o.replace(/\s+trustedOrigins: \[[\s\S]*?\],/,""),await e.writeFile(t,o)}let r=i.join(s,"packages/auth/package.json");if(await e.pathExists(r)){let o=await e.readJson(r);o.dependencies&&o.dependencies["@better-auth/expo"]&&(delete o.dependencies["@better-auth/expo"],await e.writeJson(r,o,{spaces:2}))}}}if(!l.desktop){let a=i.join(s,"apps/desktop");if(await e.pathExists(a)){await e.remove(a);let n=i.join(s,"package.json");if(await e.pathExists(n)){let t=await e.readJson(n);t.scripts&&Object.keys(t.scripts).forEach(r=>{r.includes("desktop")&&delete t.scripts[r]}),await e.writeJson(n,t,{spaces:2})}}}let h=i.join(s,"package.json");if(await e.pathExists(h)){let a=await e.readJson(h);a.name=c,a.version="0.1.0",delete a.private,await e.writeJson(h,a,{spaces:2})}if(f.succeed(p.green(`Project ${c} created at ${s}`)),l.install){let a=g("Installing dependencies...").start();try{await P("pnpm",["install"],{cwd:s}),a.succeed(p.green("Dependencies installed!"))}catch{a.fail(p.red("Failed to install dependencies. You may need to run pnpm install manually."))}}console.log(p.bold.cyan(`
20
+ Next steps:`)),console.log(` cd ${c}`),console.log(" pnpm run db:up # Start your PostgreSQL database"),console.log(` pnpm run dev # Start development server
21
+ `),console.log(p.yellow(`Happy hacking! \u{1F950}
22
+ `))}catch(d){f.fail(p.red("An error occurred during scaffolding.")),console.error(d),process.exit(1)}});x.parse(process.argv);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-croissant",
3
- "version": "0.1.56",
3
+ "version": "0.1.57",
4
4
  "description": "Scaffold a new project using the Croissant Stack",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,12 +16,13 @@ pnpm dlx create-croissant@latest
16
16
 
17
17
  - **Web (Platform)**: [TanStack Start](https://tanstack.com/start) for a seamless, type-safe React experience.
18
18
  - **Mobile**: [Expo](https://expo.dev/) (React Native) for cross-platform mobile development.
19
+ - **Desktop**: [Tauri](https://tauri.app/) for native desktop applications using web technologies.
19
20
  - **Authentication**: [Better Auth](https://www.better-auth.com/) with Drizzle adapter and PostgreSQL.
20
21
  - **API**: [oRPC](https://orpc.sh/) with a modular, namespaced router for end-to-end type-safety.
21
22
  - **Database**: [Drizzle ORM](https://orm.drizzle.team/) with PostgreSQL and Docker Compose setup.
22
23
  - **Styling**: [shadcn/ui](https://ui.shadcn.com/) components with Tailwind CSS.
23
24
  - **Monorepo Management**: Powered by [pnpm](https://pnpm.io/) and [Turborepo](https://turbo.build/) for lightning-fast builds and smart task orchestration.
24
- - **Developer Experience**:
25
+ - **Developer Experience**:
25
26
  - Path aliases (`@/`) for clean imports.
26
27
  - Strict TypeScript across the entire stack.
27
28
  - Ultra-fast linting and formatting with [Oxc](https://oxc.rs/) (`oxlint` and `oxfmt`).
@@ -29,10 +30,13 @@ pnpm dlx create-croissant@latest
29
30
  ## 📁 Project Structure
30
31
 
31
32
  ### Apps
33
+
32
34
  - `apps/platform`: The main TanStack Start web application.
33
35
  - `apps/mobile`: Expo-powered mobile application.
36
+ - `apps/desktop`: Tauri-powered desktop application.
34
37
 
35
38
  ### Packages
39
+
36
40
  - `packages/auth` (`@workspace/auth`): Authentication logic and Better Auth configuration.
37
41
  - `packages/db` (`@workspace/db`): Database schema, migrations, and Drizzle client.
38
42
  - `packages/orpc` (`@workspace/orpc`): Type-safe API router and definitions.
@@ -96,6 +100,7 @@ The web application will be available at `https://platform.local`.
96
100
  All scripts are orchestrated by Turborepo. You can run them from the root directory:
97
101
 
98
102
  ### Core Scripts
103
+
99
104
  - `pnpm run dev`: Start all applications in development mode.
100
105
  - `pnpm run build`: Build all applications for production.
101
106
  - `pnpm run quality`: Run all quality checks (linting and formatting) using Oxc.
@@ -104,7 +109,9 @@ All scripts are orchestrated by Turborepo. You can run them from the root direct
104
109
  - `pnpm run ci`: Run linting, type-checking, and build (used in CI/CD).
105
110
 
106
111
  ### 🗄️ Database Scripts
112
+
107
113
  These handle Docker and Drizzle operations:
114
+
108
115
  - `pnpm run db:up`: Start the PostgreSQL Docker container.
109
116
  - `pnpm run db:down`: Stop and remove the database container.
110
117
  - `pnpm run db:logs`: Tail logs from the database container.
@@ -114,6 +121,7 @@ These handle Docker and Drizzle operations:
114
121
  ## 🎯 Turborepo Power
115
122
 
116
123
  ### Filtering Tasks
124
+
117
125
  Turbo allows you to run tasks for specific packages using the `--filter` flag:
118
126
 
119
127
  ```bash
@@ -125,6 +133,7 @@ pnpm run build --filter @workspace/db...
125
133
  ```
126
134
 
127
135
  ### Smart Caching
136
+
128
137
  Tasks like `build` and `lint` are cached. If the code hasn't changed, Turbo will replay the logs and output instantly.
129
138
 
130
139
  ## 🔗 oRPC & Type Safety
@@ -0,0 +1,3 @@
1
+ {
2
+ "recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"]
3
+ }
@@ -0,0 +1,7 @@
1
+ # Tauri + React + Typescript
2
+
3
+ This template should help get you started developing with Tauri, React and Typescript in Vite.
4
+
5
+ ## Recommended IDE Setup
6
+
7
+ - [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
@@ -0,0 +1,14 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>Tauri + React + Typescript</title>
8
+ </head>
9
+
10
+ <body>
11
+ <div id="root"></div>
12
+ <script type="module" src="/src/main.tsx"></script>
13
+ </body>
14
+ </html>
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "desktop",
3
+ "version": "0.1.0",
4
+ "private": true,
5
+ "type": "module",
6
+ "scripts": {
7
+ "dev": "vite",
8
+ "build": "tsc && vite build",
9
+ "preview": "vite preview",
10
+ "tauri": "tauri"
11
+ },
12
+ "dependencies": {
13
+ "@noble/ciphers": "^2.2.0",
14
+ "@tailwindcss/vite": "^4.2.4",
15
+ "@tanstack/react-router": "^1.168.24",
16
+ "@tanstack/router-plugin": "^1.167.27",
17
+ "@tauri-apps/api": "^2",
18
+ "@tauri-apps/plugin-opener": "^2",
19
+ "@workspace/auth": "workspace:*",
20
+ "@workspace/orpc": "workspace:*",
21
+ "@workspace/ui": "workspace:*",
22
+ "better-auth": "1.6.11",
23
+ "lucide-react": "^1.11.0",
24
+ "react": "19.2.5",
25
+ "react-dom": "19.2.5",
26
+ "sonner": "^2.0.7",
27
+ "tailwindcss": "^4.2.4"
28
+ },
29
+ "devDependencies": {
30
+ "@tauri-apps/cli": "^2",
31
+ "@types/node": "^25.6.0",
32
+ "@types/react": "19.2.14",
33
+ "@types/react-dom": "19.2.3",
34
+ "@vitejs/plugin-react": "^4.6.0",
35
+ "@workspace/config-typescript": "workspace:*",
36
+ "typescript": "~5.8.3",
37
+ "vite": "^8.0.10",
38
+ "vite-tsconfig-paths": "^6.1.1"
39
+ }
40
+ }
@@ -0,0 +1,6 @@
1
+ <svg width="206" height="231" viewBox="0 0 206 231" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M143.143 84C143.143 96.1503 133.293 106 121.143 106C108.992 106 99.1426 96.1503 99.1426 84C99.1426 71.8497 108.992 62 121.143 62C133.293 62 143.143 71.8497 143.143 84Z" fill="#FFC131"/>
3
+ <ellipse cx="84.1426" cy="147" rx="22" ry="22" transform="rotate(180 84.1426 147)" fill="#24C8DB"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M166.738 154.548C157.86 160.286 148.023 164.269 137.757 166.341C139.858 160.282 141 153.774 141 147C141 144.543 140.85 142.121 140.558 139.743C144.975 138.204 149.215 136.139 153.183 133.575C162.73 127.404 170.292 118.608 174.961 108.244C179.63 97.8797 181.207 86.3876 179.502 75.1487C177.798 63.9098 172.884 53.4021 165.352 44.8883C157.82 36.3744 147.99 30.2165 137.042 27.1546C126.095 24.0926 114.496 24.2568 103.64 27.6274C92.7839 30.998 83.1319 37.4317 75.8437 46.1553C74.9102 47.2727 74.0206 48.4216 73.176 49.5993C61.9292 50.8488 51.0363 54.0318 40.9629 58.9556C44.2417 48.4586 49.5653 38.6591 56.679 30.1442C67.0505 17.7298 80.7861 8.57426 96.2354 3.77762C111.685 -1.01901 128.19 -1.25267 143.769 3.10474C159.348 7.46215 173.337 16.2252 184.056 28.3411C194.775 40.457 201.767 55.4101 204.193 71.404C206.619 87.3978 204.374 103.752 197.73 118.501C191.086 133.25 180.324 145.767 166.738 154.548ZM41.9631 74.275L62.5557 76.8042C63.0459 72.813 63.9401 68.9018 65.2138 65.1274C57.0465 67.0016 49.2088 70.087 41.9631 74.275Z" fill="#FFC131"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M38.4045 76.4519C47.3493 70.6709 57.2677 66.6712 67.6171 64.6132C65.2774 70.9669 64 77.8343 64 85.0001C64 87.1434 64.1143 89.26 64.3371 91.3442C60.0093 92.8732 55.8533 94.9092 51.9599 97.4256C42.4128 103.596 34.8505 112.392 30.1816 122.756C25.5126 133.12 23.9357 144.612 25.6403 155.851C27.3449 167.09 32.2584 177.598 39.7906 186.112C47.3227 194.626 57.153 200.784 68.1003 203.846C79.0476 206.907 90.6462 206.743 101.502 203.373C112.359 200.002 122.011 193.568 129.299 184.845C130.237 183.722 131.131 182.567 131.979 181.383C143.235 180.114 154.132 176.91 164.205 171.962C160.929 182.49 155.596 192.319 148.464 200.856C138.092 213.27 124.357 222.426 108.907 227.222C93.458 232.019 76.9524 232.253 61.3736 227.895C45.7948 223.538 31.8055 214.775 21.0867 202.659C10.3679 190.543 3.37557 175.59 0.949823 159.596C-1.47592 143.602 0.768139 127.248 7.41237 112.499C14.0566 97.7497 24.8183 85.2327 38.4045 76.4519ZM163.062 156.711L163.062 156.711C162.954 156.773 162.846 156.835 162.738 156.897C162.846 156.835 162.954 156.773 163.062 156.711Z" fill="#24C8DB"/>
6
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
@@ -0,0 +1,116 @@
1
+ .logo.vite:hover {
2
+ filter: drop-shadow(0 0 2em #747bff);
3
+ }
4
+
5
+ .logo.react:hover {
6
+ filter: drop-shadow(0 0 2em #61dafb);
7
+ }
8
+ :root {
9
+ font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
10
+ font-size: 16px;
11
+ line-height: 24px;
12
+ font-weight: 400;
13
+
14
+ color: #0f0f0f;
15
+ background-color: #f6f6f6;
16
+
17
+ font-synthesis: none;
18
+ text-rendering: optimizeLegibility;
19
+ -webkit-font-smoothing: antialiased;
20
+ -moz-osx-font-smoothing: grayscale;
21
+ -webkit-text-size-adjust: 100%;
22
+ }
23
+
24
+ .container {
25
+ margin: 0;
26
+ padding-top: 10vh;
27
+ display: flex;
28
+ flex-direction: column;
29
+ justify-content: center;
30
+ text-align: center;
31
+ }
32
+
33
+ .logo {
34
+ height: 6em;
35
+ padding: 1.5em;
36
+ will-change: filter;
37
+ transition: 0.75s;
38
+ }
39
+
40
+ .logo.tauri:hover {
41
+ filter: drop-shadow(0 0 2em #24c8db);
42
+ }
43
+
44
+ .row {
45
+ display: flex;
46
+ justify-content: center;
47
+ }
48
+
49
+ a {
50
+ font-weight: 500;
51
+ color: #646cff;
52
+ text-decoration: inherit;
53
+ }
54
+
55
+ a:hover {
56
+ color: #535bf2;
57
+ }
58
+
59
+ h1 {
60
+ text-align: center;
61
+ }
62
+
63
+ input,
64
+ button {
65
+ border-radius: 8px;
66
+ border: 1px solid transparent;
67
+ padding: 0.6em 1.2em;
68
+ font-size: 1em;
69
+ font-weight: 500;
70
+ font-family: inherit;
71
+ color: #0f0f0f;
72
+ background-color: #ffffff;
73
+ transition: border-color 0.25s;
74
+ box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
75
+ }
76
+
77
+ button {
78
+ cursor: pointer;
79
+ }
80
+
81
+ button:hover {
82
+ border-color: #396cd8;
83
+ }
84
+ button:active {
85
+ border-color: #396cd8;
86
+ background-color: #e8e8e8;
87
+ }
88
+
89
+ input,
90
+ button {
91
+ outline: none;
92
+ }
93
+
94
+ #greet-input {
95
+ margin-right: 5px;
96
+ }
97
+
98
+ @media (prefers-color-scheme: dark) {
99
+ :root {
100
+ color: #f6f6f6;
101
+ background-color: #2f2f2f;
102
+ }
103
+
104
+ a:hover {
105
+ color: #24c8db;
106
+ }
107
+
108
+ input,
109
+ button {
110
+ color: #ffffff;
111
+ background-color: #0f0f0f98;
112
+ }
113
+ button:active {
114
+ background-color: #0f0f0f69;
115
+ }
116
+ }
@@ -0,0 +1,51 @@
1
+ import { useState } from "react";
2
+ import reactLogo from "./assets/react.svg";
3
+ import { invoke } from "@tauri-apps/api/core";
4
+ import "./App.css";
5
+
6
+ function App() {
7
+ const [greetMsg, setGreetMsg] = useState("");
8
+ const [name, setName] = useState("");
9
+
10
+ async function greet() {
11
+ // Learn more about Tauri commands at https://tauri.app/develop/calling-rust/
12
+ setGreetMsg(await invoke("greet", { name }));
13
+ }
14
+
15
+ return (
16
+ <main className="container">
17
+ <h1>Welcome to Tauri + React</h1>
18
+
19
+ <div className="row">
20
+ <a href="https://vite.dev" target="_blank">
21
+ <img src="/vite.svg" className="logo vite" alt="Vite logo" />
22
+ </a>
23
+ <a href="https://tauri.app" target="_blank">
24
+ <img src="/tauri.svg" className="logo tauri" alt="Tauri logo" />
25
+ </a>
26
+ <a href="https://react.dev" target="_blank">
27
+ <img src={reactLogo} className="logo react" alt="React logo" />
28
+ </a>
29
+ </div>
30
+ <p>Click on the Tauri, Vite, and React logos to learn more.</p>
31
+
32
+ <form
33
+ className="row"
34
+ onSubmit={(e) => {
35
+ e.preventDefault();
36
+ greet();
37
+ }}
38
+ >
39
+ <input
40
+ id="greet-input"
41
+ onChange={(e) => setName(e.currentTarget.value)}
42
+ placeholder="Enter a name..."
43
+ />
44
+ <button type="submit">Greet</button>
45
+ </form>
46
+ <p>{greetMsg}</p>
47
+ </main>
48
+ );
49
+ }
50
+
51
+ export default App;
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>
@@ -0,0 +1,186 @@
1
+ import * as React from "react";
2
+ import { Link } from "@tanstack/react-router";
3
+ import { LogOut, Settings, User } from "lucide-react";
4
+
5
+ import {
6
+ Sidebar,
7
+ SidebarContent,
8
+ SidebarFooter,
9
+ SidebarGroup,
10
+ SidebarGroupContent,
11
+ SidebarGroupLabel,
12
+ SidebarHeader,
13
+ SidebarMenu,
14
+ SidebarMenuButton,
15
+ SidebarMenuItem,
16
+ SidebarRail,
17
+ } from "@workspace/ui/components/sidebar";
18
+ import { Avatar, AvatarFallback, AvatarImage } from "@workspace/ui/components/avatar";
19
+ import { ModeToggle } from "@workspace/ui/components/mode-toggle";
20
+
21
+ import { authClient } from "@/lib/auth-client";
22
+
23
+ // This is sample data.
24
+ export const authNavItems = [
25
+ {
26
+ title: "Dashboard",
27
+ items: [
28
+ {
29
+ title: "Overview",
30
+ url: "/dashboard",
31
+ },
32
+ {
33
+ title: "Account",
34
+ url: "/account",
35
+ },
36
+ ],
37
+ },
38
+ {
39
+ title: "Examples",
40
+ items: [
41
+ {
42
+ title: "Client + oRPC (Auth)",
43
+ url: "/examples/client-orpc-auth",
44
+ },
45
+ ],
46
+ },
47
+ ];
48
+
49
+ export const publicNavItems = [
50
+ {
51
+ title: "Welcome",
52
+ items: [
53
+ {
54
+ title: "Home",
55
+ url: "/",
56
+ },
57
+ {
58
+ title: "Login",
59
+ url: "/login",
60
+ },
61
+ {
62
+ title: "Sign Up",
63
+ url: "/signup",
64
+ },
65
+ ],
66
+ },
67
+ {
68
+ title: "Examples",
69
+ items: [
70
+ {
71
+ title: "Client + oRPC",
72
+ url: "/examples/client-orpc",
73
+ },
74
+ ],
75
+ },
76
+ ];
77
+
78
+ interface AppSidebarProps extends React.ComponentProps<typeof Sidebar> {
79
+ items?: Array<{
80
+ title: string;
81
+ items: Array<{
82
+ title: string;
83
+ url: string;
84
+ }>;
85
+ }>;
86
+ }
87
+
88
+ export function AuthSidebar(props: React.ComponentProps<typeof Sidebar>) {
89
+ return <AppSidebar items={authNavItems} {...props} />;
90
+ }
91
+
92
+ export function PublicSidebar(props: React.ComponentProps<typeof Sidebar>) {
93
+ return <AppSidebar items={publicNavItems} {...props} />;
94
+ }
95
+
96
+ export function AppSidebar({ items = authNavItems, ...props }: AppSidebarProps) {
97
+ const { data: session } = authClient.useSession();
98
+
99
+ const user = session?.user || null;
100
+
101
+ return (
102
+ <Sidebar {...props}>
103
+ <SidebarHeader>
104
+ <div className="flex items-center justify-between px-4 py-2">
105
+ <span className="font-bold">Croissant Stack</span>
106
+ <ModeToggle />
107
+ </div>
108
+ </SidebarHeader>
109
+ <SidebarContent>
110
+ {items.map((item) => (
111
+ <SidebarGroup key={item.title}>
112
+ <SidebarGroupLabel>{item.title}</SidebarGroupLabel>
113
+ <SidebarGroupContent>
114
+ <SidebarMenu>
115
+ {item.items.map((subItem) => (
116
+ <SidebarMenuItem key={subItem.title}>
117
+ <SidebarMenuButton
118
+ render={
119
+ <Link to={subItem.url} activeProps={{ className: "bg-sidebar-accent" }} />
120
+ }
121
+ >
122
+ {subItem.title}
123
+ </SidebarMenuButton>
124
+ </SidebarMenuItem>
125
+ ))}
126
+ </SidebarMenu>
127
+ </SidebarGroupContent>
128
+ </SidebarGroup>
129
+ ))}
130
+ </SidebarContent>
131
+ <SidebarFooter>
132
+ <SidebarMenu>
133
+ <SidebarMenuItem>
134
+ {user ? (
135
+ <SidebarMenuButton
136
+ size="lg"
137
+ render={<div />}
138
+ className="data-[state=open]:bg-sidebar-accent data-[state=open]:text-sidebar-accent-foreground"
139
+ >
140
+ <div className="flex items-center gap-2 w-full">
141
+ <Avatar className="h-8 w-8 rounded-lg">
142
+ <AvatarImage src={user.image || ""} alt={user.name} />
143
+ <AvatarFallback className="rounded-lg">
144
+ {user.name.charAt(0) || "U"}
145
+ </AvatarFallback>
146
+ </Avatar>
147
+ <div className="grid flex-1 text-left text-sm leading-tight">
148
+ <span className="truncate font-semibold">{user.name}</span>
149
+ <span className="truncate text-xs">{user.email}</span>
150
+ </div>
151
+ <div className="flex items-center gap-1 ml-auto">
152
+ <SidebarMenuButton
153
+ render={<Link to="/account" />}
154
+ className="p-1 h-auto w-auto rounded hover:bg-sidebar-accent-foreground/10"
155
+ title="Account Settings"
156
+ >
157
+ <Settings className="h-4 w-4" />
158
+ </SidebarMenuButton>
159
+ <SidebarMenuButton
160
+ onClick={async (e) => {
161
+ e.preventDefault();
162
+ e.stopPropagation();
163
+ await authClient.signOut();
164
+ window.location.reload();
165
+ }}
166
+ className="p-1 h-auto w-auto rounded hover:bg-sidebar-accent-foreground/10"
167
+ title="Sign Out"
168
+ >
169
+ <LogOut className="h-4 w-4" />
170
+ </SidebarMenuButton>
171
+ </div>
172
+ </div>
173
+ </SidebarMenuButton>
174
+ ) : (
175
+ <SidebarMenuButton render={<Link to="/login" className="flex items-center gap-2" />}>
176
+ <User className="h-4 w-4" />
177
+ <span>Sign In</span>
178
+ </SidebarMenuButton>
179
+ )}
180
+ </SidebarMenuItem>
181
+ </SidebarMenu>
182
+ </SidebarFooter>
183
+ <SidebarRail />
184
+ </Sidebar>
185
+ );
186
+ }