@korajs/cli 0.3.4 → 0.5.0
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/bin.cjs +1839 -829
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1107 -146
- package/dist/bin.js.map +1 -1
- package/dist/{chunk-HNVCNPER.js → chunk-3WNFM3QB.js} +107 -97
- package/dist/chunk-3WNFM3QB.js.map +1 -0
- package/dist/{chunk-ULTO5NFA.js → chunk-PSRM56B7.js} +2 -2
- package/dist/chunk-PSRM56B7.js.map +1 -0
- package/dist/{chunk-MIMLCXSX.js → chunk-SOTZIWIF.js} +267 -228
- package/dist/chunk-SOTZIWIF.js.map +1 -0
- package/dist/create.cjs +58 -48
- package/dist/create.cjs.map +1 -1
- package/dist/create.js +2 -2
- package/dist/index.cjs +322 -273
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +31 -29
- package/dist/index.d.ts +31 -29
- package/dist/index.js +2 -2
- package/package.json +9 -3
- package/templates/react-basic/README.md.hbs +10 -1
- package/templates/react-basic/src/App.tsx +112 -126
- package/templates/react-basic/src/index.css +165 -159
- package/templates/react-basic/src/kora-worker.ts +0 -1
- package/templates/react-basic/src/main.tsx +12 -12
- package/templates/react-basic/src/modules/todos/todo.mutations.ts +25 -0
- package/templates/react-basic/src/modules/todos/todo.queries.ts +5 -0
- package/templates/react-basic/src/modules/todos/todo.schema.ts +10 -0
- package/templates/react-basic/src/modules/todos/useTodos.ts +31 -0
- package/templates/react-basic/src/schema.ts +6 -12
- package/templates/react-basic/src/vite-env.d.ts +17 -0
- package/templates/react-basic/{tsconfig.json → tsconfig.json.hbs} +1 -2
- package/templates/react-basic/vite.config.ts +57 -50
- package/templates/react-sync/.env.example +19 -0
- package/templates/react-sync/README.md.hbs +43 -1
- package/templates/react-sync/package.json.hbs +3 -0
- package/templates/react-sync/server.ts +90 -26
- package/templates/react-sync/src/App.tsx +132 -130
- package/templates/react-sync/src/auth.ts +25 -0
- package/templates/react-sync/src/index.css +212 -165
- package/templates/react-sync/src/kora-worker.ts +0 -1
- package/templates/react-sync/src/main.tsx +34 -18
- package/templates/react-sync/src/modules/todos/todo.mutations.ts +25 -0
- package/templates/react-sync/src/modules/todos/todo.queries.ts +5 -0
- package/templates/react-sync/src/modules/todos/todo.schema.ts +10 -0
- package/templates/react-sync/src/modules/todos/useTodos.ts +31 -0
- package/templates/react-sync/src/schema.ts +6 -12
- package/templates/react-sync/src/vite-env.d.ts +17 -0
- package/templates/react-sync/{tsconfig.json → tsconfig.json.hbs} +1 -2
- package/templates/react-sync/vite.config.ts +67 -60
- package/templates/react-tailwind/README.md.hbs +10 -1
- package/templates/react-tailwind/src/App.tsx +186 -197
- package/templates/react-tailwind/src/index.css +3 -3
- package/templates/react-tailwind/src/kora-worker.ts +0 -1
- package/templates/react-tailwind/src/main.tsx +19 -12
- package/templates/react-tailwind/src/modules/todos/todo.mutations.ts +25 -0
- package/templates/react-tailwind/src/modules/todos/todo.queries.ts +5 -0
- package/templates/react-tailwind/src/modules/todos/todo.schema.ts +10 -0
- package/templates/react-tailwind/src/modules/todos/useTodos.ts +31 -0
- package/templates/react-tailwind/src/schema.ts +6 -12
- package/templates/react-tailwind/src/vite-env.d.ts +17 -0
- package/templates/react-tailwind/{tsconfig.json → tsconfig.json.hbs} +1 -2
- package/templates/react-tailwind/vite.config.ts +57 -50
- package/templates/react-tailwind-sync/.env.example +19 -0
- package/templates/react-tailwind-sync/README.md.hbs +43 -1
- package/templates/react-tailwind-sync/package.json.hbs +3 -0
- package/templates/react-tailwind-sync/server.ts +90 -26
- package/templates/react-tailwind-sync/src/App.tsx +246 -222
- package/templates/react-tailwind-sync/src/auth.ts +25 -0
- package/templates/react-tailwind-sync/src/index.css +3 -3
- package/templates/react-tailwind-sync/src/kora-worker.ts +0 -1
- package/templates/react-tailwind-sync/src/main.tsx +48 -18
- package/templates/react-tailwind-sync/src/modules/todos/todo.mutations.ts +25 -0
- package/templates/react-tailwind-sync/src/modules/todos/todo.queries.ts +5 -0
- package/templates/react-tailwind-sync/src/modules/todos/todo.schema.ts +10 -0
- package/templates/react-tailwind-sync/src/modules/todos/useTodos.ts +31 -0
- package/templates/react-tailwind-sync/src/schema.ts +6 -12
- package/templates/react-tailwind-sync/src/vite-env.d.ts +17 -0
- package/templates/react-tailwind-sync/{tsconfig.json → tsconfig.json.hbs} +1 -2
- package/templates/react-tailwind-sync/vite.config.ts +67 -60
- package/templates/tauri-react/.env.example +20 -0
- package/templates/tauri-react/README.md.hbs +36 -1
- package/templates/tauri-react/dev.ts +11 -11
- package/templates/tauri-react/package.json.hbs +2 -0
- package/templates/tauri-react/server.ts +86 -12
- package/templates/tauri-react/src/App.tsx +769 -544
- package/templates/tauri-react/src/AppShell.tsx +125 -83
- package/templates/tauri-react/src/SetupScreen.tsx +257 -208
- package/templates/tauri-react/src/auth.ts +45 -0
- package/templates/tauri-react/src/main.tsx +3 -3
- package/templates/tauri-react/src/modules/todos/todo.mutations.ts +25 -0
- package/templates/tauri-react/src/modules/todos/todo.queries.ts +5 -0
- package/templates/tauri-react/src/modules/todos/todo.schema.ts +10 -0
- package/templates/tauri-react/src/modules/todos/useTodos.ts +31 -0
- package/templates/tauri-react/src/schema.ts +6 -12
- package/templates/tauri-react/src/sync-config.ts +47 -47
- package/templates/tauri-react/src/updater.ts +15 -15
- package/templates/tauri-react/src/vite-env.d.ts +17 -0
- package/templates/tauri-react/src-tauri/tauri.conf.json +2 -2
- package/templates/tauri-react/tsconfig.json.hbs +14 -0
- package/templates/tauri-react/vite.config.ts +9 -9
- package/dist/chunk-HNVCNPER.js.map +0 -1
- package/dist/chunk-MIMLCXSX.js.map +0 -1
- package/dist/chunk-ULTO5NFA.js.map +0 -1
- package/templates/tauri-react/tsconfig.json +0 -15
|
@@ -1,241 +1,265 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { useAuth } from '@korajs/auth/react'
|
|
2
|
+
import { useSyncStatus } from '@korajs/react'
|
|
3
3
|
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
4
|
+
AlertCircle,
|
|
5
|
+
CheckCircle2,
|
|
6
|
+
Circle,
|
|
7
|
+
ClipboardList,
|
|
8
|
+
Loader2,
|
|
9
|
+
Plus,
|
|
10
|
+
Trash2,
|
|
11
|
+
Wifi,
|
|
12
|
+
WifiOff,
|
|
13
13
|
} from 'lucide-react'
|
|
14
|
+
import { useState } from 'react'
|
|
15
|
+
import { useTodos } from './modules/todos/useTodos'
|
|
14
16
|
|
|
15
17
|
type Filter = 'all' | 'active' | 'completed'
|
|
16
18
|
|
|
17
19
|
export function App() {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
20
|
+
const { allTodos, activeTodos, completedTodos, addTodo, toggleTodo, deleteTodo } = useTodos()
|
|
21
|
+
const isAdding = addTodo.isLoading
|
|
22
|
+
const status = useSyncStatus()
|
|
23
|
+
const { user, isAuthenticated, signInWithOAuth, signOut, error } = useAuth()
|
|
24
|
+
|
|
25
|
+
const [filter, setFilter] = useState<Filter>('all')
|
|
26
|
+
const [input, setInput] = useState('')
|
|
27
|
+
|
|
28
|
+
const filteredTodos =
|
|
29
|
+
filter === 'active' ? activeTodos : filter === 'completed' ? completedTodos : allTodos
|
|
30
|
+
|
|
31
|
+
const handleSubmit = (e: React.FormEvent) => {
|
|
32
|
+
e.preventDefault()
|
|
33
|
+
const title = input.trim()
|
|
34
|
+
if (title) {
|
|
35
|
+
addTodo.mutate({ title })
|
|
36
|
+
setInput('')
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const clearCompleted = () => {
|
|
41
|
+
for (const todo of completedTodos) {
|
|
42
|
+
deleteTodo.mutate(todo.id)
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
return (
|
|
47
|
+
<div className="min-h-screen bg-gray-950 text-gray-100">
|
|
48
|
+
<div className="mx-auto max-w-2xl px-4 py-12">
|
|
49
|
+
{/* Header */}
|
|
50
|
+
<div className="flex items-center justify-between mb-8">
|
|
51
|
+
<div className="flex items-center gap-3">
|
|
52
|
+
<ClipboardList className="h-8 w-8 text-indigo-400" />
|
|
53
|
+
<h1 className="text-2xl font-bold">My Tasks</h1>
|
|
54
|
+
</div>
|
|
55
|
+
<div className="flex items-center gap-2">
|
|
56
|
+
<SyncBadge status={status} />
|
|
57
|
+
{isAuthenticated ? (
|
|
58
|
+
<button
|
|
59
|
+
type="button"
|
|
60
|
+
onClick={() => signOut()}
|
|
61
|
+
className="max-w-44 truncate rounded-full border border-gray-700 bg-gray-900 px-3 py-1.5 text-sm text-gray-300 transition hover:border-gray-600"
|
|
62
|
+
>
|
|
63
|
+
{user?.email || 'Sign out'}
|
|
64
|
+
</button>
|
|
65
|
+
) : (
|
|
66
|
+
<button
|
|
67
|
+
type="button"
|
|
68
|
+
onClick={() => signInWithOAuth('google')}
|
|
69
|
+
className="rounded-full border border-gray-700 bg-gray-900 px-3 py-1.5 text-sm text-gray-300 transition hover:border-gray-600"
|
|
70
|
+
>
|
|
71
|
+
Sign in
|
|
72
|
+
</button>
|
|
73
|
+
)}
|
|
74
|
+
</div>
|
|
75
|
+
</div>
|
|
76
|
+
|
|
77
|
+
{error && (
|
|
78
|
+
<div className="mb-4 rounded-lg border border-red-400/30 px-3 py-2 text-sm text-red-300">
|
|
79
|
+
{error}
|
|
80
|
+
</div>
|
|
81
|
+
)}
|
|
82
|
+
|
|
83
|
+
{/* Stats */}
|
|
84
|
+
<div className="grid grid-cols-3 gap-4 mb-8">
|
|
85
|
+
<StatCard label="Total" value={allTodos.length} color="text-gray-300" />
|
|
86
|
+
<StatCard label="Remaining" value={activeTodos.length} color="text-amber-400" />
|
|
87
|
+
<StatCard label="Done" value={completedTodos.length} color="text-emerald-400" />
|
|
88
|
+
</div>
|
|
89
|
+
|
|
90
|
+
{/* Add form */}
|
|
91
|
+
<form onSubmit={handleSubmit} className="flex gap-3 mb-8">
|
|
92
|
+
<input
|
|
93
|
+
type="text"
|
|
94
|
+
value={input}
|
|
95
|
+
onChange={(e) => setInput(e.target.value)}
|
|
96
|
+
placeholder="What needs to be done?"
|
|
97
|
+
className="flex-1 rounded-lg border border-gray-700 bg-gray-900 px-4 py-3 text-gray-100 placeholder-gray-500 outline-none focus:border-indigo-500 focus:ring-1 focus:ring-indigo-500"
|
|
98
|
+
/>
|
|
99
|
+
<button
|
|
100
|
+
type="submit"
|
|
101
|
+
disabled={isAdding || !input.trim()}
|
|
102
|
+
className="flex items-center gap-2 rounded-lg bg-indigo-600 px-5 py-3 font-medium text-white transition hover:bg-indigo-500 disabled:opacity-50 disabled:cursor-not-allowed"
|
|
103
|
+
>
|
|
104
|
+
{isAdding ? <Loader2 className="h-4 w-4 animate-spin" /> : <Plus className="h-4 w-4" />}
|
|
105
|
+
Add
|
|
106
|
+
</button>
|
|
107
|
+
</form>
|
|
108
|
+
|
|
109
|
+
{/* Filter tabs */}
|
|
110
|
+
<div className="flex gap-2 mb-6">
|
|
111
|
+
{(['all', 'active', 'completed'] as const).map((f) => {
|
|
112
|
+
const count =
|
|
113
|
+
f === 'all'
|
|
114
|
+
? allTodos.length
|
|
115
|
+
: f === 'active'
|
|
116
|
+
? activeTodos.length
|
|
117
|
+
: completedTodos.length
|
|
118
|
+
return (
|
|
119
|
+
<button
|
|
120
|
+
key={f}
|
|
121
|
+
onClick={() => setFilter(f)}
|
|
122
|
+
className={`flex items-center gap-2 rounded-lg px-4 py-2 text-sm font-medium transition ${
|
|
123
|
+
filter === f
|
|
124
|
+
? 'bg-indigo-600 text-white'
|
|
125
|
+
: 'bg-gray-800 text-gray-400 hover:bg-gray-700 hover:text-gray-200'
|
|
126
|
+
}`}
|
|
127
|
+
>
|
|
128
|
+
{f.charAt(0).toUpperCase() + f.slice(1)}
|
|
129
|
+
<span
|
|
130
|
+
className={`rounded-full px-2 py-0.5 text-xs ${
|
|
131
|
+
filter === f ? 'bg-indigo-500 text-white' : 'bg-gray-700 text-gray-400'
|
|
132
|
+
}`}
|
|
133
|
+
>
|
|
134
|
+
{count}
|
|
135
|
+
</span>
|
|
136
|
+
</button>
|
|
137
|
+
)
|
|
138
|
+
})}
|
|
139
|
+
</div>
|
|
140
|
+
|
|
141
|
+
{/* Todo list */}
|
|
142
|
+
<div className="space-y-2">
|
|
143
|
+
{filteredTodos.length === 0 ? (
|
|
144
|
+
<EmptyState filter={filter} />
|
|
145
|
+
) : (
|
|
146
|
+
filteredTodos.map((todo) => (
|
|
147
|
+
<div
|
|
148
|
+
key={todo.id}
|
|
149
|
+
className="group flex items-center gap-3 rounded-lg border border-gray-800 bg-gray-900 px-4 py-3 transition hover:border-gray-700"
|
|
150
|
+
>
|
|
151
|
+
<button
|
|
152
|
+
onClick={() => toggleTodo.mutate(todo.id, { completed: !todo.completed })}
|
|
153
|
+
className="shrink-0 text-gray-500 hover:text-indigo-400 transition"
|
|
154
|
+
>
|
|
155
|
+
{todo.completed ? (
|
|
156
|
+
<CheckCircle2 className="h-5 w-5 text-emerald-400" />
|
|
157
|
+
) : (
|
|
158
|
+
<Circle className="h-5 w-5" />
|
|
159
|
+
)}
|
|
160
|
+
</button>
|
|
161
|
+
<span
|
|
162
|
+
className={`flex-1 ${
|
|
163
|
+
todo.completed ? 'text-gray-500 line-through' : 'text-gray-100'
|
|
164
|
+
}`}
|
|
165
|
+
>
|
|
166
|
+
{String(todo.title)}
|
|
167
|
+
</span>
|
|
168
|
+
{todo.createdAt && (
|
|
169
|
+
<span className="text-xs text-gray-600">
|
|
170
|
+
{formatTime(Number(todo.createdAt))}
|
|
171
|
+
</span>
|
|
172
|
+
)}
|
|
173
|
+
<button
|
|
174
|
+
onClick={() => deleteTodo.mutate(todo.id)}
|
|
175
|
+
className="shrink-0 text-gray-600 opacity-0 transition hover:text-red-400 group-hover:opacity-100"
|
|
176
|
+
>
|
|
177
|
+
<Trash2 className="h-4 w-4" />
|
|
178
|
+
</button>
|
|
179
|
+
</div>
|
|
180
|
+
))
|
|
181
|
+
)}
|
|
182
|
+
</div>
|
|
183
|
+
|
|
184
|
+
{/* Footer */}
|
|
185
|
+
{allTodos.length > 0 && (
|
|
186
|
+
<div className="mt-6 flex items-center justify-between text-sm text-gray-500">
|
|
187
|
+
<span>
|
|
188
|
+
{activeTodos.length} item{activeTodos.length !== 1 ? 's' : ''} left
|
|
189
|
+
</span>
|
|
190
|
+
{completedTodos.length > 0 && (
|
|
191
|
+
<button
|
|
192
|
+
onClick={clearCompleted}
|
|
193
|
+
className="text-gray-500 transition hover:text-gray-300"
|
|
194
|
+
>
|
|
195
|
+
Clear completed
|
|
196
|
+
</button>
|
|
197
|
+
)}
|
|
198
|
+
</div>
|
|
199
|
+
)}
|
|
200
|
+
|
|
201
|
+
<p className="mt-12 text-center text-xs text-gray-700">
|
|
202
|
+
Powered by Kora — offline-first, real-time sync
|
|
203
|
+
</p>
|
|
204
|
+
</div>
|
|
205
|
+
</div>
|
|
206
|
+
)
|
|
183
207
|
}
|
|
184
208
|
|
|
185
209
|
function SyncBadge({ status }: { status: { status: string; pendingOperations?: number } }) {
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
+
const s = status.status
|
|
211
|
+
const pending = status.pendingOperations ?? 0
|
|
212
|
+
|
|
213
|
+
const config: Record<string, { icon: typeof Wifi; color: string; label: string }> = {
|
|
214
|
+
connected: { icon: Wifi, color: 'text-emerald-400', label: 'Connected' },
|
|
215
|
+
syncing: { icon: Wifi, color: 'text-amber-400', label: 'Syncing' },
|
|
216
|
+
synced: { icon: Wifi, color: 'text-emerald-400', label: 'Synced' },
|
|
217
|
+
offline: { icon: WifiOff, color: 'text-gray-500', label: 'Offline' },
|
|
218
|
+
error: { icon: AlertCircle, color: 'text-red-400', label: 'Error' },
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
const { icon: Icon, color, label } = config[s] ?? config.offline!
|
|
222
|
+
|
|
223
|
+
return (
|
|
224
|
+
<div className="flex items-center gap-2 rounded-full bg-gray-800 px-3 py-1.5 text-sm">
|
|
225
|
+
<Icon className={`h-4 w-4 ${color}`} />
|
|
226
|
+
<span className={color}>{label}</span>
|
|
227
|
+
{pending > 0 && (
|
|
228
|
+
<span className="rounded-full bg-gray-700 px-2 py-0.5 text-xs text-gray-400">
|
|
229
|
+
{pending} pending
|
|
230
|
+
</span>
|
|
231
|
+
)}
|
|
232
|
+
</div>
|
|
233
|
+
)
|
|
210
234
|
}
|
|
211
235
|
|
|
212
236
|
function StatCard({ label, value, color }: { label: string; value: number; color: string }) {
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
237
|
+
return (
|
|
238
|
+
<div className="rounded-lg border border-gray-800 bg-gray-900 p-4">
|
|
239
|
+
<p className="text-sm text-gray-500">{label}</p>
|
|
240
|
+
<p className={`text-2xl font-bold ${color}`}>{value}</p>
|
|
241
|
+
</div>
|
|
242
|
+
)
|
|
219
243
|
}
|
|
220
244
|
|
|
221
245
|
function EmptyState({ filter }: { filter: Filter }) {
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
246
|
+
const messages: Record<Filter, string> = {
|
|
247
|
+
all: 'No tasks yet. Add one above!',
|
|
248
|
+
active: 'All caught up! No active tasks.',
|
|
249
|
+
completed: 'No completed tasks yet.',
|
|
250
|
+
}
|
|
251
|
+
return (
|
|
252
|
+
<div className="rounded-lg border border-dashed border-gray-800 py-12 text-center text-gray-600">
|
|
253
|
+
{messages[filter]}
|
|
254
|
+
</div>
|
|
255
|
+
)
|
|
232
256
|
}
|
|
233
257
|
|
|
234
258
|
function formatTime(timestamp: number): string {
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
259
|
+
const date = new Date(timestamp)
|
|
260
|
+
const now = new Date()
|
|
261
|
+
if (date.toDateString() === now.toDateString()) {
|
|
262
|
+
return date.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' })
|
|
263
|
+
}
|
|
264
|
+
return date.toLocaleDateString([], { month: 'short', day: 'numeric' })
|
|
241
265
|
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { createKoraAuth } from '@korajs/auth'
|
|
2
|
+
|
|
3
|
+
export const authServerUrl =
|
|
4
|
+
import.meta.env.VITE_AUTH_URL || `${window.location.protocol}//${window.location.host}`
|
|
5
|
+
|
|
6
|
+
export const authClient = createKoraAuth({
|
|
7
|
+
serverUrl: authServerUrl,
|
|
8
|
+
})
|
|
9
|
+
|
|
10
|
+
export async function completeOAuthCallbackFromLocation(): Promise<void> {
|
|
11
|
+
const url = new URL(window.location.href)
|
|
12
|
+
const code = url.searchParams.get('code')
|
|
13
|
+
const state = url.searchParams.get('state')
|
|
14
|
+
const provider = url.searchParams.get('provider') || 'google'
|
|
15
|
+
|
|
16
|
+
if (!code || !state) {
|
|
17
|
+
return
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
await authClient.completeOAuthSignIn(provider, { code, state })
|
|
21
|
+
url.searchParams.delete('code')
|
|
22
|
+
url.searchParams.delete('state')
|
|
23
|
+
url.searchParams.delete('provider')
|
|
24
|
+
window.history.replaceState({}, document.title, `${url.pathname}${url.search}${url.hash}`)
|
|
25
|
+
}
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
// Import the WASM binary URL so Vite resolves it with the correct content hash.
|
|
5
5
|
// Without this, production builds fail because sqlite3 looks for the unhashed filename.
|
|
6
6
|
import sqliteWasmUrl from '@sqlite.org/sqlite-wasm/sqlite3.wasm?url'
|
|
7
|
-
|
|
8
7
|
;(globalThis as Record<string, unknown>).__KORA_SQLITE_WASM_URL = sqliteWasmUrl
|
|
9
8
|
|
|
10
9
|
import '@korajs/store/sqlite-wasm/worker'
|
|
@@ -1,36 +1,66 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { createKoraAuthSync } from '@korajs/auth'
|
|
2
|
+
import { AuthProvider } from '@korajs/auth/react'
|
|
2
3
|
import { KoraProvider } from '@korajs/react'
|
|
4
|
+
import { createApp } from 'korajs'
|
|
3
5
|
import { StrictMode } from 'react'
|
|
4
6
|
import { createRoot } from 'react-dom/client'
|
|
5
|
-
import schema from './schema'
|
|
6
7
|
import { App } from './App'
|
|
8
|
+
import { authClient, completeOAuthCallbackFromLocation } from './auth'
|
|
9
|
+
import schema from './schema'
|
|
7
10
|
import './index.css'
|
|
8
11
|
import koraWorkerUrl from './kora-worker.ts?worker&url'
|
|
9
12
|
|
|
10
13
|
// Build sync URL: use env var if set, otherwise derive from current page host.
|
|
11
14
|
// This allows the Vite proxy (/kora-sync → ws://localhost:3001) to work in dev,
|
|
12
15
|
// and also works through any tunnel (ngrok, cloudflared) without extra configuration.
|
|
13
|
-
const syncUrl =
|
|
14
|
-
|
|
16
|
+
const syncUrl =
|
|
17
|
+
import.meta.env.VITE_SYNC_URL ||
|
|
18
|
+
`${window.location.protocol === 'https:' ? 'wss:' : 'ws:'}//${window.location.host}/kora-sync`
|
|
15
19
|
|
|
16
20
|
const app = createApp({
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
21
|
+
schema,
|
|
22
|
+
sync: {
|
|
23
|
+
url: syncUrl,
|
|
24
|
+
authClient: createKoraAuthSync({ authClient, schema }),
|
|
25
|
+
},
|
|
26
|
+
store: {
|
|
27
|
+
workerUrl: koraWorkerUrl,
|
|
28
|
+
},
|
|
29
|
+
devtools: true,
|
|
25
30
|
})
|
|
26
31
|
|
|
27
32
|
// Connect to sync server once the app is ready
|
|
28
33
|
app.ready.then(() => app.sync?.connect())
|
|
34
|
+
void completeOAuthCallbackFromLocation().catch((error) => {
|
|
35
|
+
console.error('[Kora Auth] OAuth callback failed:', error)
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
const rootElement = document.getElementById('root')
|
|
39
|
+
|
|
40
|
+
if (!rootElement) {
|
|
41
|
+
throw new Error('Root element not found')
|
|
42
|
+
}
|
|
29
43
|
|
|
30
|
-
createRoot(
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
44
|
+
createRoot(rootElement).render(
|
|
45
|
+
<StrictMode>
|
|
46
|
+
<AuthProvider
|
|
47
|
+
client={authClient}
|
|
48
|
+
fallback={
|
|
49
|
+
<div className="flex h-screen items-center justify-center bg-gray-950 text-gray-400">
|
|
50
|
+
Restoring session...
|
|
51
|
+
</div>
|
|
52
|
+
}
|
|
53
|
+
>
|
|
54
|
+
<KoraProvider
|
|
55
|
+
app={app}
|
|
56
|
+
fallback={
|
|
57
|
+
<div className="flex h-screen items-center justify-center bg-gray-950 text-gray-400">
|
|
58
|
+
Loading...
|
|
59
|
+
</div>
|
|
60
|
+
}
|
|
61
|
+
>
|
|
62
|
+
<App />
|
|
63
|
+
</KoraProvider>
|
|
64
|
+
</AuthProvider>
|
|
65
|
+
</StrictMode>,
|
|
36
66
|
)
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { CollectionAccessor } from 'korajs'
|
|
2
|
+
|
|
3
|
+
export interface CreateTodoInput {
|
|
4
|
+
title: string
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export interface UpdateTodoStatusInput {
|
|
8
|
+
completed: boolean
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export function createTodo(todos: CollectionAccessor, data: CreateTodoInput) {
|
|
12
|
+
return todos.insert({ title: data.title })
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export function updateTodoStatus(
|
|
16
|
+
todos: CollectionAccessor,
|
|
17
|
+
id: string,
|
|
18
|
+
data: UpdateTodoStatusInput,
|
|
19
|
+
) {
|
|
20
|
+
return todos.update(id, { completed: data.completed })
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export function deleteTodo(todos: CollectionAccessor, id: string) {
|
|
24
|
+
return todos.delete(id)
|
|
25
|
+
}
|