create-croissant 0.1.55 → 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.
- package/dist/add.js +5 -5
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/template/README.md +10 -3
- package/template/apps/desktop/.vscode/extensions.json +1 -1
- package/template/apps/desktop/README.md +3 -30
- package/template/apps/desktop/index.html +14 -0
- package/template/apps/desktop/package.json +21 -32
- package/template/apps/desktop/public/tauri.svg +6 -0
- package/template/apps/desktop/public/vite.svg +1 -0
- package/template/apps/desktop/src/App.css +116 -0
- package/template/apps/desktop/src/App.tsx +51 -0
- package/template/apps/desktop/src/assets/react.svg +1 -0
- package/template/apps/desktop/src/{renderer/src/components → components}/app-sidebar.tsx +7 -3
- package/template/apps/desktop/src/components/login-form.tsx +160 -0
- package/template/apps/desktop/src/components/search-form.tsx +19 -0
- package/template/apps/desktop/src/components/signup-form.tsx +206 -0
- package/template/apps/desktop/src/components/version-switcher.tsx +54 -0
- package/template/apps/desktop/src/env.d.ts +1 -0
- package/template/apps/desktop/src/lib/auth-client.ts +5 -0
- package/template/apps/desktop/src/lib/orpc.ts +10 -0
- package/template/apps/desktop/src/main.tsx +12 -0
- package/template/apps/desktop/src/{renderer/src/routeTree.gen.ts → routeTree.gen.ts} +21 -0
- package/template/apps/desktop/src/router.tsx +19 -0
- package/template/apps/desktop/src/{renderer/src/routes → routes}/__root.tsx +9 -5
- package/template/apps/desktop/src/{renderer/src/routes → routes}/_auth/account.tsx +18 -10
- package/template/apps/desktop/src/routes/_auth/dashboard.tsx +58 -0
- package/template/apps/desktop/src/{renderer/src/routes → routes}/_auth/examples/client-orpc-auth.tsx +17 -6
- package/template/apps/desktop/src/{renderer/src/routes → routes}/_auth.tsx +2 -14
- package/template/apps/desktop/src/{renderer/src/routes → routes}/_public/examples/client-orpc.tsx +25 -5
- package/template/apps/desktop/src/{renderer/src/routes → routes}/_public/index.tsx +21 -9
- package/template/apps/desktop/src/routes/_public/login.tsx +34 -0
- package/template/apps/desktop/src/routes/_public/signup.tsx +31 -0
- package/template/apps/desktop/src/{renderer/src/routes → routes}/_public.tsx +1 -1
- package/template/apps/desktop/src/vite-env.d.ts +1 -0
- package/template/apps/desktop/src-tauri/Cargo.toml +25 -0
- package/template/apps/desktop/src-tauri/build.rs +3 -0
- package/template/apps/desktop/src-tauri/capabilities/default.json +7 -0
- package/template/apps/desktop/src-tauri/icons/128x128.png +0 -0
- package/template/apps/desktop/src-tauri/icons/128x128@2x.png +0 -0
- package/template/apps/desktop/src-tauri/icons/32x32.png +0 -0
- package/template/apps/desktop/src-tauri/icons/Square107x107Logo.png +0 -0
- package/template/apps/desktop/src-tauri/icons/Square142x142Logo.png +0 -0
- package/template/apps/desktop/src-tauri/icons/Square150x150Logo.png +0 -0
- package/template/apps/desktop/src-tauri/icons/Square284x284Logo.png +0 -0
- package/template/apps/desktop/src-tauri/icons/Square30x30Logo.png +0 -0
- package/template/apps/desktop/src-tauri/icons/Square310x310Logo.png +0 -0
- package/template/apps/desktop/src-tauri/icons/Square44x44Logo.png +0 -0
- package/template/apps/desktop/src-tauri/icons/Square71x71Logo.png +0 -0
- package/template/apps/desktop/src-tauri/icons/Square89x89Logo.png +0 -0
- package/template/apps/desktop/src-tauri/icons/StoreLogo.png +0 -0
- package/template/apps/desktop/src-tauri/icons/icon.icns +0 -0
- package/template/apps/desktop/src-tauri/icons/icon.ico +0 -0
- package/template/apps/desktop/src-tauri/icons/icon.png +0 -0
- package/template/apps/desktop/src-tauri/src/lib.rs +14 -0
- package/template/apps/desktop/src-tauri/src/main.rs +6 -0
- package/template/apps/desktop/src-tauri/tauri.conf.json +35 -0
- package/template/apps/desktop/tsconfig.json +15 -4
- package/template/apps/desktop/tsconfig.node.json +5 -3
- package/template/apps/desktop/vite.config.ts +40 -0
- package/template/apps/mobile/app/(tabs)/_layout.tsx +11 -10
- package/template/apps/mobile/app/(tabs)/explore.tsx +29 -27
- package/template/apps/mobile/app/(tabs)/index.tsx +25 -24
- package/template/apps/mobile/app/_layout.tsx +8 -8
- package/template/apps/mobile/app/modal.tsx +6 -6
- package/template/apps/mobile/components/external-link.tsx +5 -5
- package/template/apps/mobile/components/haptic-tab.tsx +4 -4
- package/template/apps/mobile/components/hello-wave.tsx +5 -4
- package/template/apps/mobile/components/parallax-scroll-view.tsx +15 -13
- package/template/apps/mobile/components/themed-text.tsx +14 -14
- package/template/apps/mobile/components/themed-view.tsx +3 -3
- package/template/apps/mobile/components/ui/collapsible.tsx +14 -13
- package/template/apps/mobile/components/ui/icon-symbol.ios.tsx +4 -4
- package/template/apps/mobile/components/ui/icon-symbol.tsx +9 -9
- package/template/apps/mobile/constants/theme.ts +19 -19
- package/template/apps/mobile/hooks/use-color-scheme.ts +1 -1
- package/template/apps/mobile/hooks/use-color-scheme.web.ts +3 -3
- package/template/apps/mobile/hooks/use-theme-color.ts +4 -4
- package/template/apps/mobile/package.json +7 -7
- package/template/apps/mobile/scripts/reset-project.js +2 -2
- package/template/apps/mobile/tsconfig.json +3 -13
- package/template/apps/platform/package.json +0 -1
- package/template/apps/platform/src/components/login-form.tsx +4 -1
- package/template/apps/platform/src/components/signup-form.tsx +15 -12
- package/template/apps/platform/src/routes/__root.tsx +7 -1
- package/template/apps/platform/src/routes/_public/examples/client-orpc.tsx +12 -3
- package/template/apps/platform/src/routes/_public/examples/ssr-orpc.tsx +2 -1
- package/template/package.json +7 -7
- package/template/packages/orpc/package.json +4 -4
- package/template/pnpm-workspace.yaml +5 -5
- package/template/apps/desktop/.editorconfig +0 -9
- package/template/apps/desktop/.eslintcache +0 -1
- package/template/apps/desktop/.vscode/launch.json +0 -39
- package/template/apps/desktop/.vscode/settings.json +0 -11
- package/template/apps/desktop/build/entitlements.mac.plist +0 -12
- package/template/apps/desktop/build/icon.icns +0 -0
- package/template/apps/desktop/build/icon.ico +0 -0
- package/template/apps/desktop/build/icon.png +0 -0
- package/template/apps/desktop/dev-app-update.yml +0 -3
- package/template/apps/desktop/electron-builder.yml +0 -45
- package/template/apps/desktop/electron.vite.config.ts +0 -26
- package/template/apps/desktop/resources/icon.png +0 -0
- package/template/apps/desktop/src/main/index.ts +0 -88
- package/template/apps/desktop/src/preload/index.d.ts +0 -11
- package/template/apps/desktop/src/preload/index.ts +0 -29
- package/template/apps/desktop/src/renderer/index.html +0 -17
- package/template/apps/desktop/src/renderer/src/assets/base.css +0 -67
- package/template/apps/desktop/src/renderer/src/assets/electron.svg +0 -10
- package/template/apps/desktop/src/renderer/src/assets/main.css +0 -171
- package/template/apps/desktop/src/renderer/src/assets/wavy-lines.svg +0 -25
- package/template/apps/desktop/src/renderer/src/components/Versions.tsx +0 -15
- package/template/apps/desktop/src/renderer/src/components/login-form.tsx +0 -57
- package/template/apps/desktop/src/renderer/src/env.d.ts +0 -6
- package/template/apps/desktop/src/renderer/src/lib/auth-client.ts +0 -5
- package/template/apps/desktop/src/renderer/src/lib/orpc.ts +0 -12
- package/template/apps/desktop/src/renderer/src/main.tsx +0 -22
- package/template/apps/desktop/src/renderer/src/routes/_auth/dashboard.tsx +0 -46
- package/template/apps/desktop/src/renderer/src/routes/_public/login.tsx +0 -16
- package/template/apps/desktop/tsconfig.web.json +0 -19
- package/template/apps/platform/src/lib/auth-client-electron.ts +0 -13
package/dist/add.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import i from"path";import{fileURLToPath as
|
|
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
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
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
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 (
|
|
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
10
|
${o}`),o.includes("plugins: [expo()]")||(o=o.replace("emailAndPassword: { enabled: true },",`emailAndPassword: { enabled: true },
|
|
11
11
|
plugins: [expo()],
|
|
12
12
|
trustedOrigins: [
|
|
@@ -19,7 +19,7 @@ ${o}`),o.includes("plugins: [expo()]")||(o=o.replace("emailAndPassword: { enable
|
|
|
19
19
|
"http://localhost:8081",
|
|
20
20
|
]
|
|
21
21
|
: []),
|
|
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
|
|
23
|
-
Next steps:`)),console.log(a==="mobile"?" pnpm run dev:mobile # Start Expo development server":" pnpm run dev:desktop # Start
|
|
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(
|
|
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,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
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 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 (
|
|
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
5
|
Error: Directory ${c} already exists.
|
|
6
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 },
|
package/package.json
CHANGED
package/template/README.md
CHANGED
|
@@ -16,13 +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**: [
|
|
19
|
+
- **Desktop**: [Tauri](https://tauri.app/) for native desktop applications using web technologies.
|
|
20
20
|
- **Authentication**: [Better Auth](https://www.better-auth.com/) with Drizzle adapter and PostgreSQL.
|
|
21
21
|
- **API**: [oRPC](https://orpc.sh/) with a modular, namespaced router for end-to-end type-safety.
|
|
22
22
|
- **Database**: [Drizzle ORM](https://orm.drizzle.team/) with PostgreSQL and Docker Compose setup.
|
|
23
23
|
- **Styling**: [shadcn/ui](https://ui.shadcn.com/) components with Tailwind CSS.
|
|
24
24
|
- **Monorepo Management**: Powered by [pnpm](https://pnpm.io/) and [Turborepo](https://turbo.build/) for lightning-fast builds and smart task orchestration.
|
|
25
|
-
- **Developer Experience**:
|
|
25
|
+
- **Developer Experience**:
|
|
26
26
|
- Path aliases (`@/`) for clean imports.
|
|
27
27
|
- Strict TypeScript across the entire stack.
|
|
28
28
|
- Ultra-fast linting and formatting with [Oxc](https://oxc.rs/) (`oxlint` and `oxfmt`).
|
|
@@ -30,11 +30,13 @@ pnpm dlx create-croissant@latest
|
|
|
30
30
|
## 📁 Project Structure
|
|
31
31
|
|
|
32
32
|
### Apps
|
|
33
|
+
|
|
33
34
|
- `apps/platform`: The main TanStack Start web application.
|
|
34
35
|
- `apps/mobile`: Expo-powered mobile application.
|
|
35
|
-
- `apps/desktop`:
|
|
36
|
+
- `apps/desktop`: Tauri-powered desktop application.
|
|
36
37
|
|
|
37
38
|
### Packages
|
|
39
|
+
|
|
38
40
|
- `packages/auth` (`@workspace/auth`): Authentication logic and Better Auth configuration.
|
|
39
41
|
- `packages/db` (`@workspace/db`): Database schema, migrations, and Drizzle client.
|
|
40
42
|
- `packages/orpc` (`@workspace/orpc`): Type-safe API router and definitions.
|
|
@@ -98,6 +100,7 @@ The web application will be available at `https://platform.local`.
|
|
|
98
100
|
All scripts are orchestrated by Turborepo. You can run them from the root directory:
|
|
99
101
|
|
|
100
102
|
### Core Scripts
|
|
103
|
+
|
|
101
104
|
- `pnpm run dev`: Start all applications in development mode.
|
|
102
105
|
- `pnpm run build`: Build all applications for production.
|
|
103
106
|
- `pnpm run quality`: Run all quality checks (linting and formatting) using Oxc.
|
|
@@ -106,7 +109,9 @@ All scripts are orchestrated by Turborepo. You can run them from the root direct
|
|
|
106
109
|
- `pnpm run ci`: Run linting, type-checking, and build (used in CI/CD).
|
|
107
110
|
|
|
108
111
|
### 🗄️ Database Scripts
|
|
112
|
+
|
|
109
113
|
These handle Docker and Drizzle operations:
|
|
114
|
+
|
|
110
115
|
- `pnpm run db:up`: Start the PostgreSQL Docker container.
|
|
111
116
|
- `pnpm run db:down`: Stop and remove the database container.
|
|
112
117
|
- `pnpm run db:logs`: Tail logs from the database container.
|
|
@@ -116,6 +121,7 @@ These handle Docker and Drizzle operations:
|
|
|
116
121
|
## 🎯 Turborepo Power
|
|
117
122
|
|
|
118
123
|
### Filtering Tasks
|
|
124
|
+
|
|
119
125
|
Turbo allows you to run tasks for specific packages using the `--filter` flag:
|
|
120
126
|
|
|
121
127
|
```bash
|
|
@@ -127,6 +133,7 @@ pnpm run build --filter @workspace/db...
|
|
|
127
133
|
```
|
|
128
134
|
|
|
129
135
|
### Smart Caching
|
|
136
|
+
|
|
130
137
|
Tasks like `build` and `lint` are cached. If the code hasn't changed, Turbo will replay the logs and output instantly.
|
|
131
138
|
|
|
132
139
|
## 🔗 oRPC & Type Safety
|
|
@@ -1,34 +1,7 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Tauri + React + Typescript
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This template should help get you started developing with Tauri, React and Typescript in Vite.
|
|
4
4
|
|
|
5
5
|
## Recommended IDE Setup
|
|
6
6
|
|
|
7
|
-
- [
|
|
8
|
-
|
|
9
|
-
## Project Setup
|
|
10
|
-
|
|
11
|
-
### Install
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
$ pnpm install
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
### Development
|
|
18
|
-
|
|
19
|
-
```bash
|
|
20
|
-
$ pnpm run dev
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
### Build
|
|
24
|
-
|
|
25
|
-
```bash
|
|
26
|
-
# For windows
|
|
27
|
-
$ pnpm run build:win
|
|
28
|
-
|
|
29
|
-
# For macOS
|
|
30
|
-
$ pnpm run build:mac
|
|
31
|
-
|
|
32
|
-
# For Linux
|
|
33
|
-
$ pnpm run build:linux
|
|
34
|
-
```
|
|
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>
|
|
@@ -1,51 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "desktop",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"author": "example.com",
|
|
7
|
-
"main": "./out/main/index.js",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"type": "module",
|
|
8
6
|
"scripts": {
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"dev": "electron-vite dev",
|
|
14
|
-
"build": "pnpm run typecheck && electron-vite build",
|
|
15
|
-
"postinstall": "electron-builder install-app-deps",
|
|
16
|
-
"build:unpack": "pnpm run build && electron-builder --dir",
|
|
17
|
-
"build:win": "pnpm run build && electron-builder --win",
|
|
18
|
-
"build:mac": "electron-vite build && electron-builder --mac",
|
|
19
|
-
"build:linux": "electron-vite build && electron-builder --linux"
|
|
7
|
+
"dev": "vite",
|
|
8
|
+
"build": "tsc && vite build",
|
|
9
|
+
"preview": "vite preview",
|
|
10
|
+
"tauri": "tauri"
|
|
20
11
|
},
|
|
21
12
|
"dependencies": {
|
|
22
|
-
"@
|
|
23
|
-
"@electron-toolkit/utils": "^4.0.0",
|
|
13
|
+
"@noble/ciphers": "^2.2.0",
|
|
24
14
|
"@tailwindcss/vite": "^4.2.4",
|
|
25
|
-
"@tanstack/react-router": "^1.
|
|
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",
|
|
26
19
|
"@workspace/auth": "workspace:*",
|
|
27
20
|
"@workspace/orpc": "workspace:*",
|
|
28
21
|
"@workspace/ui": "workspace:*",
|
|
29
22
|
"better-auth": "1.6.11",
|
|
30
|
-
"
|
|
31
|
-
"lucide-react": "^1.14.0",
|
|
23
|
+
"lucide-react": "^1.11.0",
|
|
32
24
|
"react": "19.2.5",
|
|
33
25
|
"react-dom": "19.2.5",
|
|
34
26
|
"sonner": "^2.0.7",
|
|
35
27
|
"tailwindcss": "^4.2.4"
|
|
36
28
|
},
|
|
37
29
|
"devDependencies": {
|
|
38
|
-
"@
|
|
39
|
-
"@
|
|
40
|
-
"@
|
|
41
|
-
"@types/
|
|
42
|
-
"@
|
|
43
|
-
"@types/react-dom": "^19.2.3",
|
|
44
|
-
"@vitejs/plugin-react": "^5.1.1",
|
|
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",
|
|
45
35
|
"@workspace/config-typescript": "workspace:*",
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"vite": "^8.0.12"
|
|
36
|
+
"typescript": "~5.8.3",
|
|
37
|
+
"vite": "^8.0.10",
|
|
38
|
+
"vite-tsconfig-paths": "^6.1.1"
|
|
50
39
|
}
|
|
51
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>
|
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
import { Avatar, AvatarFallback, AvatarImage } from "@workspace/ui/components/avatar";
|
|
19
19
|
import { ModeToggle } from "@workspace/ui/components/mode-toggle";
|
|
20
20
|
|
|
21
|
-
import { authClient } from "
|
|
21
|
+
import { authClient } from "@/lib/auth-client";
|
|
22
22
|
|
|
23
23
|
// This is sample data.
|
|
24
24
|
export const authNavItems = [
|
|
@@ -58,6 +58,10 @@ export const publicNavItems = [
|
|
|
58
58
|
title: "Login",
|
|
59
59
|
url: "/login",
|
|
60
60
|
},
|
|
61
|
+
{
|
|
62
|
+
title: "Sign Up",
|
|
63
|
+
url: "/signup",
|
|
64
|
+
},
|
|
61
65
|
],
|
|
62
66
|
},
|
|
63
67
|
{
|
|
@@ -98,7 +102,7 @@ export function AppSidebar({ items = authNavItems, ...props }: AppSidebarProps)
|
|
|
98
102
|
<Sidebar {...props}>
|
|
99
103
|
<SidebarHeader>
|
|
100
104
|
<div className="flex items-center justify-between px-4 py-2">
|
|
101
|
-
<span className="font-bold">Croissant
|
|
105
|
+
<span className="font-bold">Croissant Stack</span>
|
|
102
106
|
<ModeToggle />
|
|
103
107
|
</div>
|
|
104
108
|
</SidebarHeader>
|
|
@@ -153,7 +157,7 @@ export function AppSidebar({ items = authNavItems, ...props }: AppSidebarProps)
|
|
|
153
157
|
<Settings className="h-4 w-4" />
|
|
154
158
|
</SidebarMenuButton>
|
|
155
159
|
<SidebarMenuButton
|
|
156
|
-
onClick={async (e
|
|
160
|
+
onClick={async (e) => {
|
|
157
161
|
e.preventDefault();
|
|
158
162
|
e.stopPropagation();
|
|
159
163
|
await authClient.signOut();
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
import { cn } from "@workspace/ui/lib/utils";
|
|
2
|
+
import { Button } from "@workspace/ui/components/button";
|
|
3
|
+
import {
|
|
4
|
+
Card,
|
|
5
|
+
CardContent,
|
|
6
|
+
CardDescription,
|
|
7
|
+
CardHeader,
|
|
8
|
+
CardTitle,
|
|
9
|
+
} from "@workspace/ui/components/card";
|
|
10
|
+
import {
|
|
11
|
+
Field,
|
|
12
|
+
FieldDescription,
|
|
13
|
+
FieldError,
|
|
14
|
+
FieldGroup,
|
|
15
|
+
FieldLabel,
|
|
16
|
+
} from "@workspace/ui/components/field";
|
|
17
|
+
import { Input } from "@workspace/ui/components/input";
|
|
18
|
+
import { useState } from "react";
|
|
19
|
+
import { Link, useSearch } from "@tanstack/react-router";
|
|
20
|
+
import { useForm } from "@tanstack/react-form";
|
|
21
|
+
import { z } from "zod";
|
|
22
|
+
|
|
23
|
+
import { authClient } from "@/lib/auth-client";
|
|
24
|
+
|
|
25
|
+
const loginSchema = z.object({
|
|
26
|
+
email: z.string().email("Invalid email address"),
|
|
27
|
+
password: z.string().min(8, "Password must be at least 8 characters"),
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
export function LoginForm({ className, ...props }: React.ComponentProps<"div">) {
|
|
31
|
+
const [loading, setLoading] = useState(false);
|
|
32
|
+
const [error, setError] = useState<string | null>(null);
|
|
33
|
+
const search = useSearch({ from: "/_public/login" }) as { redirect?: string };
|
|
34
|
+
|
|
35
|
+
const form = useForm({
|
|
36
|
+
defaultValues: {
|
|
37
|
+
email: "",
|
|
38
|
+
password: "",
|
|
39
|
+
},
|
|
40
|
+
validators: {
|
|
41
|
+
onChange: loginSchema,
|
|
42
|
+
},
|
|
43
|
+
onSubmit: async ({ value }) => {
|
|
44
|
+
setLoading(true);
|
|
45
|
+
setError(null);
|
|
46
|
+
const { error: signInError } = await authClient.signIn.email({
|
|
47
|
+
email: value.email,
|
|
48
|
+
password: value.password,
|
|
49
|
+
callbackURL: search.redirect || "/dashboard",
|
|
50
|
+
});
|
|
51
|
+
if (signInError) {
|
|
52
|
+
setError(signInError.message || "Failed to sign in");
|
|
53
|
+
}
|
|
54
|
+
setLoading(false);
|
|
55
|
+
},
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
return (
|
|
59
|
+
<div className={cn("flex flex-col gap-6", className)} {...props}>
|
|
60
|
+
<Card>
|
|
61
|
+
<CardHeader>
|
|
62
|
+
<CardTitle>Login to your account</CardTitle>
|
|
63
|
+
<CardDescription>Enter your email below to login to your account</CardDescription>
|
|
64
|
+
</CardHeader>
|
|
65
|
+
<CardContent>
|
|
66
|
+
<form
|
|
67
|
+
onSubmit={(e) => {
|
|
68
|
+
e.preventDefault();
|
|
69
|
+
e.stopPropagation();
|
|
70
|
+
form.handleSubmit();
|
|
71
|
+
}}
|
|
72
|
+
>
|
|
73
|
+
<FieldGroup>
|
|
74
|
+
{error && <div className="rounded bg-red-100 p-2 text-sm text-red-600">{error}</div>}
|
|
75
|
+
<form.Field
|
|
76
|
+
name="email"
|
|
77
|
+
children={(field) => {
|
|
78
|
+
const isInvalid =
|
|
79
|
+
field.state.meta.isTouched && field.state.meta.errors.length > 0;
|
|
80
|
+
return (
|
|
81
|
+
<Field data-invalid={isInvalid}>
|
|
82
|
+
<FieldLabel htmlFor={field.name}>Email</FieldLabel>
|
|
83
|
+
<Input
|
|
84
|
+
id={field.name}
|
|
85
|
+
name={field.name}
|
|
86
|
+
type="email"
|
|
87
|
+
placeholder="m@example.com"
|
|
88
|
+
value={field.state.value}
|
|
89
|
+
onBlur={field.handleBlur}
|
|
90
|
+
onChange={(e) => field.handleChange(e.target.value)}
|
|
91
|
+
required
|
|
92
|
+
/>
|
|
93
|
+
{isInvalid && <FieldError errors={field.state.meta.errors} />}
|
|
94
|
+
</Field>
|
|
95
|
+
);
|
|
96
|
+
}}
|
|
97
|
+
/>
|
|
98
|
+
<form.Field
|
|
99
|
+
name="password"
|
|
100
|
+
children={(field) => {
|
|
101
|
+
const isInvalid =
|
|
102
|
+
field.state.meta.isTouched && field.state.meta.errors.length > 0;
|
|
103
|
+
return (
|
|
104
|
+
<Field data-invalid={isInvalid}>
|
|
105
|
+
<div className="flex items-center">
|
|
106
|
+
<FieldLabel htmlFor={field.name}>Password</FieldLabel>
|
|
107
|
+
<a
|
|
108
|
+
href="#"
|
|
109
|
+
className="ml-auto inline-block text-sm underline-offset-4 hover:underline"
|
|
110
|
+
>
|
|
111
|
+
Forgot your password?
|
|
112
|
+
</a>
|
|
113
|
+
</div>
|
|
114
|
+
<Input
|
|
115
|
+
id={field.name}
|
|
116
|
+
name={field.name}
|
|
117
|
+
type="password"
|
|
118
|
+
value={field.state.value}
|
|
119
|
+
onBlur={field.handleBlur}
|
|
120
|
+
onChange={(e) => field.handleChange(e.target.value)}
|
|
121
|
+
required
|
|
122
|
+
/>
|
|
123
|
+
{isInvalid && <FieldError errors={field.state.meta.errors} />}
|
|
124
|
+
</Field>
|
|
125
|
+
);
|
|
126
|
+
}}
|
|
127
|
+
/>
|
|
128
|
+
<Field>
|
|
129
|
+
<form.Subscribe
|
|
130
|
+
selector={(state) => ({
|
|
131
|
+
canSubmit: state.canSubmit,
|
|
132
|
+
isSubmitting: state.isSubmitting,
|
|
133
|
+
})}
|
|
134
|
+
>
|
|
135
|
+
{(state: { canSubmit: boolean; isSubmitting: boolean }) => (
|
|
136
|
+
<Button
|
|
137
|
+
type="submit"
|
|
138
|
+
disabled={!state.canSubmit || state.isSubmitting || loading}
|
|
139
|
+
>
|
|
140
|
+
{state.isSubmitting || loading ? "Logging in..." : "Login"}
|
|
141
|
+
</Button>
|
|
142
|
+
)}
|
|
143
|
+
</form.Subscribe>
|
|
144
|
+
<Button variant="outline" type="button" disabled={loading}>
|
|
145
|
+
Login with Google
|
|
146
|
+
</Button>
|
|
147
|
+
<FieldDescription className="text-center">
|
|
148
|
+
Don't have an account?{" "}
|
|
149
|
+
<Link to="/signup" className="underline">
|
|
150
|
+
Sign up
|
|
151
|
+
</Link>
|
|
152
|
+
</FieldDescription>
|
|
153
|
+
</Field>
|
|
154
|
+
</FieldGroup>
|
|
155
|
+
</form>
|
|
156
|
+
</CardContent>
|
|
157
|
+
</Card>
|
|
158
|
+
</div>
|
|
159
|
+
);
|
|
160
|
+
}
|