@korajs/cli 0.4.0 → 0.6.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 +1636 -601
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1086 -139
- package/dist/bin.js.map +1 -1
- package/dist/{chunk-MVP5PDT4.js → chunk-EEZNRI5W.js} +51 -6
- package/dist/chunk-EEZNRI5W.js.map +1 -0
- package/dist/{chunk-YGVO4POI.js → chunk-Q2FBCOQD.js} +27 -15
- package/dist/chunk-Q2FBCOQD.js.map +1 -0
- package/dist/{chunk-CMSX76KM.js → chunk-VLTPEATY.js} +172 -99
- package/dist/chunk-VLTPEATY.js.map +1 -0
- package/dist/create.cjs +130 -54
- package/dist/create.cjs.map +1 -1
- package/dist/create.js +2 -2
- package/dist/index.cjs +143 -62
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -6
- package/dist/index.d.ts +8 -6
- 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/svelte-basic/.env.example +3 -0
- package/templates/svelte-basic/README.md.hbs +62 -0
- package/templates/svelte-basic/index.html.hbs +12 -0
- package/templates/svelte-basic/kora.config.ts +12 -0
- package/templates/svelte-basic/package.json.hbs +27 -0
- package/templates/svelte-basic/src/App.svelte +131 -0
- package/templates/svelte-basic/src/Root.svelte +14 -0
- package/templates/svelte-basic/src/index.css +287 -0
- package/templates/svelte-basic/src/kora-worker.ts +9 -0
- package/templates/svelte-basic/src/main.ts +16 -0
- package/templates/svelte-basic/src/modules/todos/todo.mutations.ts +25 -0
- package/templates/svelte-basic/src/modules/todos/todo.queries.ts +5 -0
- package/templates/svelte-basic/src/modules/todos/todo.schema.ts +10 -0
- package/templates/svelte-basic/src/modules/todos/useTodos.ts +25 -0
- package/templates/svelte-basic/src/schema.ts +9 -0
- package/templates/svelte-basic/src/vite-env.d.ts +12 -0
- package/templates/svelte-basic/svelte.config.js +5 -0
- package/templates/svelte-basic/tsconfig.json.hbs +14 -0
- package/templates/svelte-basic/vite.config.ts +52 -0
- package/templates/svelte-sync/.env.example +25 -0
- package/templates/svelte-sync/README.md.hbs +105 -0
- package/templates/svelte-sync/index.html.hbs +12 -0
- package/templates/svelte-sync/kora.config.ts +17 -0
- package/templates/svelte-sync/package.json.hbs +43 -0
- package/templates/svelte-sync/server.ts +90 -0
- package/templates/svelte-sync/src/App.svelte +154 -0
- package/templates/svelte-sync/src/Root.svelte +22 -0
- package/templates/svelte-sync/src/auth.ts +25 -0
- package/templates/svelte-sync/src/index.css +339 -0
- package/templates/svelte-sync/src/kora-worker.ts +9 -0
- package/templates/svelte-sync/src/main.ts +32 -0
- package/templates/svelte-sync/src/modules/todos/todo.mutations.ts +25 -0
- package/templates/svelte-sync/src/modules/todos/todo.queries.ts +5 -0
- package/templates/svelte-sync/src/modules/todos/todo.schema.ts +10 -0
- package/templates/svelte-sync/src/modules/todos/useTodos.ts +25 -0
- package/templates/svelte-sync/src/schema.ts +9 -0
- package/templates/svelte-sync/src/vite-env.d.ts +21 -0
- package/templates/svelte-sync/svelte.config.js +5 -0
- package/templates/svelte-sync/tsconfig.json.hbs +14 -0
- package/templates/svelte-sync/vite.config.ts +79 -0
- package/templates/svelte-tailwind/README.md.hbs +62 -0
- package/templates/svelte-tailwind/index.html.hbs +12 -0
- package/templates/svelte-tailwind/kora.config.ts +12 -0
- package/templates/svelte-tailwind/package.json.hbs +30 -0
- package/templates/svelte-tailwind/src/App.svelte +79 -0
- package/templates/svelte-tailwind/src/Root.svelte +14 -0
- package/templates/svelte-tailwind/src/index.css +7 -0
- package/templates/svelte-tailwind/src/kora-worker.ts +9 -0
- package/templates/svelte-tailwind/src/main.ts +16 -0
- package/templates/svelte-tailwind/src/modules/todos/todo.mutations.ts +25 -0
- package/templates/svelte-tailwind/src/modules/todos/todo.queries.ts +5 -0
- package/templates/svelte-tailwind/src/modules/todos/todo.schema.ts +10 -0
- package/templates/svelte-tailwind/src/modules/todos/useTodos.ts +25 -0
- package/templates/svelte-tailwind/src/schema.ts +9 -0
- package/templates/svelte-tailwind/src/vite-env.d.ts +12 -0
- package/templates/svelte-tailwind/svelte.config.js +5 -0
- package/templates/svelte-tailwind/tsconfig.json.hbs +14 -0
- package/templates/svelte-tailwind/vite.config.ts +53 -0
- package/templates/svelte-tailwind-sync/.env.example +25 -0
- package/templates/svelte-tailwind-sync/README.md.hbs +105 -0
- package/templates/svelte-tailwind-sync/index.html.hbs +12 -0
- package/templates/svelte-tailwind-sync/kora.config.ts +17 -0
- package/templates/svelte-tailwind-sync/package.json.hbs +46 -0
- package/templates/svelte-tailwind-sync/server.ts +90 -0
- package/templates/svelte-tailwind-sync/src/App.svelte +196 -0
- package/templates/svelte-tailwind-sync/src/Root.svelte +26 -0
- package/templates/svelte-tailwind-sync/src/auth.ts +25 -0
- package/templates/svelte-tailwind-sync/src/index.css +7 -0
- package/templates/svelte-tailwind-sync/src/kora-worker.ts +9 -0
- package/templates/svelte-tailwind-sync/src/main.ts +32 -0
- package/templates/svelte-tailwind-sync/src/modules/todos/todo.mutations.ts +25 -0
- package/templates/svelte-tailwind-sync/src/modules/todos/todo.queries.ts +5 -0
- package/templates/svelte-tailwind-sync/src/modules/todos/todo.schema.ts +10 -0
- package/templates/svelte-tailwind-sync/src/modules/todos/useTodos.ts +25 -0
- package/templates/svelte-tailwind-sync/src/schema.ts +9 -0
- package/templates/svelte-tailwind-sync/src/vite-env.d.ts +21 -0
- package/templates/svelte-tailwind-sync/svelte.config.js +5 -0
- package/templates/svelte-tailwind-sync/tsconfig.json.hbs +14 -0
- package/templates/svelte-tailwind-sync/vite.config.ts +80 -0
- 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 +1 -1
- package/templates/tauri-react/tsconfig.json.hbs +14 -0
- package/templates/tauri-react/vite.config.ts +9 -9
- package/templates/vue-basic/README.md.hbs +62 -0
- package/templates/vue-basic/index.html.hbs +12 -0
- package/templates/vue-basic/kora.config.ts +12 -0
- package/templates/vue-basic/package.json.hbs +26 -0
- package/templates/vue-basic/src/App.vue +117 -0
- package/templates/vue-basic/src/index.css +287 -0
- package/templates/vue-basic/src/kora-worker.ts +9 -0
- package/templates/vue-basic/src/main.ts +20 -0
- package/templates/vue-basic/src/modules/todos/todo.mutations.ts +25 -0
- package/templates/vue-basic/src/modules/todos/todo.queries.ts +5 -0
- package/templates/vue-basic/src/modules/todos/todo.schema.ts +10 -0
- package/templates/vue-basic/src/modules/todos/useTodos.ts +32 -0
- package/templates/vue-basic/src/schema.ts +9 -0
- package/templates/vue-basic/src/vite-env.d.ts +17 -0
- package/templates/vue-basic/tsconfig.json.hbs +15 -0
- package/templates/vue-basic/vite.config.ts +69 -0
- package/templates/vue-sync/.env.example +25 -0
- package/templates/vue-sync/README.md.hbs +105 -0
- package/templates/vue-sync/index.html.hbs +12 -0
- package/templates/vue-sync/kora.config.ts +17 -0
- package/templates/vue-sync/package.json.hbs +42 -0
- package/templates/vue-sync/server.ts +90 -0
- package/templates/vue-sync/src/App.vue +135 -0
- package/templates/vue-sync/src/auth.ts +25 -0
- package/templates/vue-sync/src/index.css +339 -0
- package/templates/vue-sync/src/kora-worker.ts +9 -0
- package/templates/vue-sync/src/main.ts +43 -0
- package/templates/vue-sync/src/modules/todos/todo.mutations.ts +25 -0
- package/templates/vue-sync/src/modules/todos/todo.queries.ts +5 -0
- package/templates/vue-sync/src/modules/todos/todo.schema.ts +10 -0
- package/templates/vue-sync/src/modules/todos/useTodos.ts +32 -0
- package/templates/vue-sync/src/schema.ts +9 -0
- package/templates/vue-sync/src/vite-env.d.ts +26 -0
- package/templates/vue-sync/tsconfig.json.hbs +15 -0
- package/templates/vue-sync/vite.config.ts +79 -0
- package/templates/vue-tailwind/README.md.hbs +62 -0
- package/templates/vue-tailwind/index.html.hbs +12 -0
- package/templates/vue-tailwind/kora.config.ts +12 -0
- package/templates/vue-tailwind/package.json.hbs +29 -0
- package/templates/vue-tailwind/src/App.vue +142 -0
- package/templates/vue-tailwind/src/index.css +7 -0
- package/templates/vue-tailwind/src/kora-worker.ts +9 -0
- package/templates/vue-tailwind/src/main.ts +31 -0
- package/templates/vue-tailwind/src/modules/todos/todo.mutations.ts +25 -0
- package/templates/vue-tailwind/src/modules/todos/todo.queries.ts +5 -0
- package/templates/vue-tailwind/src/modules/todos/todo.schema.ts +10 -0
- package/templates/vue-tailwind/src/modules/todos/useTodos.ts +32 -0
- package/templates/vue-tailwind/src/schema.ts +9 -0
- package/templates/vue-tailwind/src/vite-env.d.ts +17 -0
- package/templates/vue-tailwind/tsconfig.json.hbs +15 -0
- package/templates/vue-tailwind/vite.config.ts +70 -0
- package/templates/vue-tailwind-sync/.env.example +25 -0
- package/templates/vue-tailwind-sync/README.md.hbs +105 -0
- package/templates/vue-tailwind-sync/index.html.hbs +12 -0
- package/templates/vue-tailwind-sync/kora.config.ts +17 -0
- package/templates/vue-tailwind-sync/package.json.hbs +45 -0
- package/templates/vue-tailwind-sync/server.ts +90 -0
- package/templates/vue-tailwind-sync/src/App.vue +245 -0
- package/templates/vue-tailwind-sync/src/auth.ts +25 -0
- package/templates/vue-tailwind-sync/src/index.css +7 -0
- package/templates/vue-tailwind-sync/src/kora-worker.ts +9 -0
- package/templates/vue-tailwind-sync/src/main.ts +56 -0
- package/templates/vue-tailwind-sync/src/modules/todos/todo.mutations.ts +25 -0
- package/templates/vue-tailwind-sync/src/modules/todos/todo.queries.ts +5 -0
- package/templates/vue-tailwind-sync/src/modules/todos/todo.schema.ts +10 -0
- package/templates/vue-tailwind-sync/src/modules/todos/useTodos.ts +32 -0
- package/templates/vue-tailwind-sync/src/schema.ts +9 -0
- package/templates/vue-tailwind-sync/src/vite-env.d.ts +26 -0
- package/templates/vue-tailwind-sync/tsconfig.json.hbs +15 -0
- package/templates/vue-tailwind-sync/vite.config.ts +80 -0
- package/dist/chunk-CMSX76KM.js.map +0 -1
- package/dist/chunk-MVP5PDT4.js.map +0 -1
- package/dist/chunk-YGVO4POI.js.map +0 -1
- package/templates/tauri-react/tsconfig.json +0 -15
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import {
|
|
2
|
+
type CreateKoraAuthServerOptions,
|
|
3
|
+
createKoraAuthServer,
|
|
4
|
+
createPostgresOAuthStores,
|
|
5
|
+
createSqliteOAuthStores,
|
|
6
|
+
googleProvider,
|
|
7
|
+
} from '@korajs/auth/server'
|
|
8
|
+
import {
|
|
9
|
+
createPostgresServerStore,
|
|
10
|
+
createProductionServer,
|
|
11
|
+
createSqliteServerStore,
|
|
12
|
+
} from '@korajs/server'
|
|
13
|
+
import schema from './src/schema'
|
|
14
|
+
|
|
15
|
+
async function createStore() {
|
|
16
|
+
if (process.env.DATABASE_URL) {
|
|
17
|
+
return createPostgresServerStore({
|
|
18
|
+
connectionString: process.env.DATABASE_URL,
|
|
19
|
+
})
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return createSqliteServerStore({
|
|
23
|
+
filename: process.env.KORA_SERVER_DB || './kora-server.db',
|
|
24
|
+
})
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
async function start() {
|
|
28
|
+
const store = await createStore()
|
|
29
|
+
await store.setSchema(schema)
|
|
30
|
+
|
|
31
|
+
const syncPath = process.env.KORA_SYNC_PATH || '/kora-sync'
|
|
32
|
+
const auth = await createAuth()
|
|
33
|
+
const server = createProductionServer({
|
|
34
|
+
store,
|
|
35
|
+
port: Number(process.env.PORT) || 3001,
|
|
36
|
+
staticDir: './dist',
|
|
37
|
+
syncPath,
|
|
38
|
+
httpRoutes: auth ? [{ path: '/auth', handle: auth.handleRequest }] : undefined,
|
|
39
|
+
syncOptions: auth ? { auth: auth.auth } : undefined,
|
|
40
|
+
operationalAuth: {
|
|
41
|
+
adminToken: process.env.KORA_ADMIN_TOKEN,
|
|
42
|
+
metricsToken: process.env.KORA_METRICS_TOKEN,
|
|
43
|
+
backupToken: process.env.KORA_BACKUP_TOKEN,
|
|
44
|
+
},
|
|
45
|
+
})
|
|
46
|
+
|
|
47
|
+
const url = await server.start()
|
|
48
|
+
console.log(`Kora app running at ${url}`)
|
|
49
|
+
console.log(` Sync endpoint: ${url.replace('http', 'ws')}${syncPath}`)
|
|
50
|
+
if (auth) console.log(` Auth endpoint: ${url}/auth`)
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
void start()
|
|
54
|
+
|
|
55
|
+
async function createAuth() {
|
|
56
|
+
if (!process.env.KORA_AUTH_SECRET) {
|
|
57
|
+
return null
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
const oauth = await createOAuthConfig()
|
|
61
|
+
return createKoraAuthServer({
|
|
62
|
+
jwtSecret: process.env.KORA_AUTH_SECRET,
|
|
63
|
+
...(oauth ? { oauth } : {}),
|
|
64
|
+
})
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
async function createOAuthConfig(): Promise<CreateKoraAuthServerOptions['oauth'] | undefined> {
|
|
68
|
+
if (!process.env.KORA_GOOGLE_CLIENT_ID || !process.env.KORA_GOOGLE_REDIRECT_URI) {
|
|
69
|
+
return undefined
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
const oauthStores = process.env.DATABASE_URL
|
|
73
|
+
? await createPostgresOAuthStores({ connectionString: process.env.DATABASE_URL })
|
|
74
|
+
: await createSqliteOAuthStores({
|
|
75
|
+
filename: process.env.KORA_AUTH_DB || './kora-auth.db',
|
|
76
|
+
})
|
|
77
|
+
|
|
78
|
+
return {
|
|
79
|
+
providers: [
|
|
80
|
+
googleProvider({
|
|
81
|
+
clientId: process.env.KORA_GOOGLE_CLIENT_ID,
|
|
82
|
+
clientSecret: process.env.KORA_GOOGLE_CLIENT_SECRET,
|
|
83
|
+
redirectUri: process.env.KORA_GOOGLE_REDIRECT_URI,
|
|
84
|
+
pkce: process.env.KORA_OAUTH_PKCE === 'true' || !process.env.KORA_GOOGLE_CLIENT_SECRET,
|
|
85
|
+
}),
|
|
86
|
+
],
|
|
87
|
+
stateStore: oauthStores.stateStore,
|
|
88
|
+
linkedIdentityStore: oauthStores.linkedIdentityStore,
|
|
89
|
+
}
|
|
90
|
+
}
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import { createAuthStore } from '@korajs/auth/svelte'
|
|
3
|
+
import { createSyncStatusStore } from '@korajs/svelte'
|
|
4
|
+
import { createTodosStores } from './modules/todos/useTodos'
|
|
5
|
+
|
|
6
|
+
type Filter = 'all' | 'active' | 'completed'
|
|
7
|
+
|
|
8
|
+
const syncStatus = createSyncStatusStore()
|
|
9
|
+
const auth = createAuthStore()
|
|
10
|
+
const todos = createTodosStores()
|
|
11
|
+
const { allTodos, activeTodos, completedTodos, addTodo, toggleTodo, deleteTodo } = todos
|
|
12
|
+
|
|
13
|
+
let filter = $state<Filter>('all')
|
|
14
|
+
let input = $state('')
|
|
15
|
+
|
|
16
|
+
const filteredTodos = $derived(
|
|
17
|
+
filter === 'active'
|
|
18
|
+
? $activeTodos
|
|
19
|
+
: filter === 'completed'
|
|
20
|
+
? $completedTodos
|
|
21
|
+
: $allTodos,
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
function handleSubmit(event: SubmitEvent): void {
|
|
25
|
+
event.preventDefault()
|
|
26
|
+
const title = input.trim()
|
|
27
|
+
if (!title) return
|
|
28
|
+
addTodo.mutate({ title })
|
|
29
|
+
input = ''
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
function clearCompleted(): void {
|
|
33
|
+
for (const todo of $completedTodos) {
|
|
34
|
+
deleteTodo.mutate(todo.id)
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function formatTime(timestamp: number): string {
|
|
39
|
+
const date = new Date(timestamp)
|
|
40
|
+
const now = new Date()
|
|
41
|
+
if (date.toDateString() === now.toDateString()) {
|
|
42
|
+
return date.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' })
|
|
43
|
+
}
|
|
44
|
+
return date.toLocaleDateString([], { month: 'short', day: 'numeric' })
|
|
45
|
+
}
|
|
46
|
+
</script>
|
|
47
|
+
|
|
48
|
+
<div class="app">
|
|
49
|
+
<div class="header">
|
|
50
|
+
<h1>My Tasks</h1>
|
|
51
|
+
<div class="header-actions">
|
|
52
|
+
<div class="sync-badge">
|
|
53
|
+
<span class="sync-dot {$syncStatus.status}"></span>
|
|
54
|
+
<span>{$syncStatus.status}</span>
|
|
55
|
+
</div>
|
|
56
|
+
{#if $auth.isAuthenticated}
|
|
57
|
+
<button type="button" class="auth-button" onclick={() => $auth.signOut()}>
|
|
58
|
+
{$auth.user?.email || 'Sign out'}
|
|
59
|
+
</button>
|
|
60
|
+
{:else}
|
|
61
|
+
<button type="button" class="auth-button" onclick={() => $auth.signInWithOAuth('google')}>
|
|
62
|
+
Sign in
|
|
63
|
+
</button>
|
|
64
|
+
{/if}
|
|
65
|
+
</div>
|
|
66
|
+
</div>
|
|
67
|
+
|
|
68
|
+
{#if $auth.error}
|
|
69
|
+
<div class="auth-error">{$auth.error}</div>
|
|
70
|
+
{/if}
|
|
71
|
+
|
|
72
|
+
<div class="stats">
|
|
73
|
+
<div class="stat-card">
|
|
74
|
+
<div class="label">Total</div>
|
|
75
|
+
<div class="value muted">{$allTodos.length}</div>
|
|
76
|
+
</div>
|
|
77
|
+
<div class="stat-card">
|
|
78
|
+
<div class="label">Remaining</div>
|
|
79
|
+
<div class="value warning">{$activeTodos.length}</div>
|
|
80
|
+
</div>
|
|
81
|
+
<div class="stat-card">
|
|
82
|
+
<div class="label">Done</div>
|
|
83
|
+
<div class="value success">{$completedTodos.length}</div>
|
|
84
|
+
</div>
|
|
85
|
+
</div>
|
|
86
|
+
|
|
87
|
+
<form class="add-form" onsubmit={handleSubmit}>
|
|
88
|
+
<input bind:value={input} type="text" placeholder="What needs to be done?" />
|
|
89
|
+
<button type="submit" disabled={!input.trim()}>Add</button>
|
|
90
|
+
</form>
|
|
91
|
+
|
|
92
|
+
<div class="filters">
|
|
93
|
+
{#each ['all', 'active', 'completed'] as const as f}
|
|
94
|
+
<button
|
|
95
|
+
type="button"
|
|
96
|
+
class="filter-btn {filter === f ? 'active' : ''}"
|
|
97
|
+
onclick={() => (filter = f)}
|
|
98
|
+
>
|
|
99
|
+
{f.charAt(0).toUpperCase() + f.slice(1)}
|
|
100
|
+
<span class="badge">
|
|
101
|
+
{f === 'all'
|
|
102
|
+
? $allTodos.length
|
|
103
|
+
: f === 'active'
|
|
104
|
+
? $activeTodos.length
|
|
105
|
+
: $completedTodos.length}
|
|
106
|
+
</span>
|
|
107
|
+
</button>
|
|
108
|
+
{/each}
|
|
109
|
+
</div>
|
|
110
|
+
|
|
111
|
+
<div class="todo-list">
|
|
112
|
+
{#if filteredTodos.length === 0}
|
|
113
|
+
<div class="empty-state">
|
|
114
|
+
{#if filter === 'all'}
|
|
115
|
+
No tasks yet. Add one above!
|
|
116
|
+
{:else if filter === 'active'}
|
|
117
|
+
All caught up! No active tasks.
|
|
118
|
+
{:else}
|
|
119
|
+
No completed tasks yet.
|
|
120
|
+
{/if}
|
|
121
|
+
</div>
|
|
122
|
+
{:else}
|
|
123
|
+
{#each filteredTodos as todo (todo.id)}
|
|
124
|
+
<div class="todo-item">
|
|
125
|
+
<button
|
|
126
|
+
type="button"
|
|
127
|
+
class="toggle {todo.completed ? 'checked' : ''}"
|
|
128
|
+
onclick={() => toggleTodo.mutate(todo.id, { completed: !todo.completed })}
|
|
129
|
+
>
|
|
130
|
+
{todo.completed ? '✓' : ''}
|
|
131
|
+
</button>
|
|
132
|
+
<span class="title {todo.completed ? 'done' : ''}">{String(todo.title)}</span>
|
|
133
|
+
{#if todo.createdAt}
|
|
134
|
+
<span class="time">{formatTime(Number(todo.createdAt))}</span>
|
|
135
|
+
{/if}
|
|
136
|
+
<button type="button" class="delete-btn" onclick={() => deleteTodo.mutate(todo.id)}>
|
|
137
|
+
×
|
|
138
|
+
</button>
|
|
139
|
+
</div>
|
|
140
|
+
{/each}
|
|
141
|
+
{/if}
|
|
142
|
+
</div>
|
|
143
|
+
|
|
144
|
+
{#if $allTodos.length > 0}
|
|
145
|
+
<div class="footer">
|
|
146
|
+
<span>{$activeTodos.length} item{$activeTodos.length !== 1 ? 's' : ''} left</span>
|
|
147
|
+
{#if $completedTodos.length > 0}
|
|
148
|
+
<button type="button" onclick={clearCompleted}>Clear completed</button>
|
|
149
|
+
{/if}
|
|
150
|
+
</div>
|
|
151
|
+
{/if}
|
|
152
|
+
|
|
153
|
+
<p class="branding">Powered by Kora — offline-first, real-time sync</p>
|
|
154
|
+
</div>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import type { AuthClient } from '@korajs/auth'
|
|
3
|
+
import type { KoraAppLike } from '@korajs/svelte'
|
|
4
|
+
import AuthProvider from '@korajs/auth/svelte/AuthProvider.svelte'
|
|
5
|
+
import KoraProvider from '@korajs/svelte/KoraProvider.svelte'
|
|
6
|
+
import App from './App.svelte'
|
|
7
|
+
|
|
8
|
+
let { kora, authClient }: { kora: KoraAppLike; authClient: AuthClient } = $props()
|
|
9
|
+
</script>
|
|
10
|
+
|
|
11
|
+
<AuthProvider client={authClient}>
|
|
12
|
+
{#snippet fallback()}
|
|
13
|
+
<div>Restoring session...</div>
|
|
14
|
+
{/snippet}
|
|
15
|
+
|
|
16
|
+
<KoraProvider app={kora}>
|
|
17
|
+
{#snippet fallback()}
|
|
18
|
+
<div>Loading...</div>
|
|
19
|
+
{/snippet}
|
|
20
|
+
<App />
|
|
21
|
+
</KoraProvider>
|
|
22
|
+
</AuthProvider>
|
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,339 @@
|
|
|
1
|
+
*,
|
|
2
|
+
*::before,
|
|
3
|
+
*::after {
|
|
4
|
+
box-sizing: border-box;
|
|
5
|
+
margin: 0;
|
|
6
|
+
padding: 0;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
:root {
|
|
10
|
+
--color-bg: #0a0a0f;
|
|
11
|
+
--color-surface: #111118;
|
|
12
|
+
--color-border: #1e1e2a;
|
|
13
|
+
--color-border-hover: #2a2a3a;
|
|
14
|
+
--color-text: #e4e4e7;
|
|
15
|
+
--color-text-muted: #71717a;
|
|
16
|
+
--color-text-dim: #3f3f46;
|
|
17
|
+
--color-primary: #6366f1;
|
|
18
|
+
--color-primary-hover: #818cf8;
|
|
19
|
+
--color-success: #34d399;
|
|
20
|
+
--color-warning: #fbbf24;
|
|
21
|
+
--color-danger: #f87171;
|
|
22
|
+
--font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
23
|
+
--radius: 8px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
body {
|
|
27
|
+
font-family: var(--font-sans);
|
|
28
|
+
background: var(--color-bg);
|
|
29
|
+
color: var(--color-text);
|
|
30
|
+
line-height: 1.6;
|
|
31
|
+
-webkit-font-smoothing: antialiased;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.app {
|
|
35
|
+
max-width: 640px;
|
|
36
|
+
margin: 0 auto;
|
|
37
|
+
padding: 48px 16px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.header {
|
|
41
|
+
display: flex;
|
|
42
|
+
align-items: center;
|
|
43
|
+
justify-content: space-between;
|
|
44
|
+
margin-bottom: 32px;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.header h1 {
|
|
48
|
+
font-size: 1.5rem;
|
|
49
|
+
font-weight: 700;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.header-actions {
|
|
53
|
+
display: flex;
|
|
54
|
+
align-items: center;
|
|
55
|
+
gap: 8px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.sync-badge {
|
|
59
|
+
display: inline-flex;
|
|
60
|
+
align-items: center;
|
|
61
|
+
gap: 6px;
|
|
62
|
+
padding: 4px 12px;
|
|
63
|
+
border-radius: 999px;
|
|
64
|
+
background: var(--color-surface);
|
|
65
|
+
font-size: 0.8rem;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.sync-dot {
|
|
69
|
+
width: 8px;
|
|
70
|
+
height: 8px;
|
|
71
|
+
border-radius: 50%;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.sync-dot.connected,
|
|
75
|
+
.sync-dot.synced {
|
|
76
|
+
background: var(--color-success);
|
|
77
|
+
}
|
|
78
|
+
.sync-dot.syncing {
|
|
79
|
+
background: var(--color-warning);
|
|
80
|
+
}
|
|
81
|
+
.sync-dot.offline {
|
|
82
|
+
background: var(--color-text-muted);
|
|
83
|
+
}
|
|
84
|
+
.sync-dot.error {
|
|
85
|
+
background: var(--color-danger);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.auth-button {
|
|
89
|
+
border: 1px solid var(--color-border);
|
|
90
|
+
border-radius: 999px;
|
|
91
|
+
background: var(--color-surface);
|
|
92
|
+
color: var(--color-text);
|
|
93
|
+
cursor: pointer;
|
|
94
|
+
font-size: 0.8rem;
|
|
95
|
+
max-width: 180px;
|
|
96
|
+
overflow: hidden;
|
|
97
|
+
padding: 4px 12px;
|
|
98
|
+
text-overflow: ellipsis;
|
|
99
|
+
white-space: nowrap;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.auth-button:hover {
|
|
103
|
+
border-color: var(--color-border-hover);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.auth-error {
|
|
107
|
+
border: 1px solid rgba(248, 113, 113, 0.35);
|
|
108
|
+
border-radius: var(--radius);
|
|
109
|
+
color: var(--color-danger);
|
|
110
|
+
font-size: 0.85rem;
|
|
111
|
+
margin-bottom: 16px;
|
|
112
|
+
padding: 10px 12px;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.stats {
|
|
116
|
+
display: grid;
|
|
117
|
+
grid-template-columns: repeat(3, 1fr);
|
|
118
|
+
gap: 12px;
|
|
119
|
+
margin-bottom: 32px;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.stat-card {
|
|
123
|
+
background: var(--color-surface);
|
|
124
|
+
border: 1px solid var(--color-border);
|
|
125
|
+
border-radius: var(--radius);
|
|
126
|
+
padding: 16px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.stat-card .label {
|
|
130
|
+
font-size: 0.8rem;
|
|
131
|
+
color: var(--color-text-muted);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.stat-card .value {
|
|
135
|
+
font-size: 1.5rem;
|
|
136
|
+
font-weight: 700;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.stat-card .value.muted {
|
|
140
|
+
color: var(--color-text-muted);
|
|
141
|
+
}
|
|
142
|
+
.stat-card .value.warning {
|
|
143
|
+
color: var(--color-warning);
|
|
144
|
+
}
|
|
145
|
+
.stat-card .value.success {
|
|
146
|
+
color: var(--color-success);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.add-form {
|
|
150
|
+
display: flex;
|
|
151
|
+
gap: 12px;
|
|
152
|
+
margin-bottom: 32px;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.add-form input {
|
|
156
|
+
flex: 1;
|
|
157
|
+
padding: 10px 16px;
|
|
158
|
+
border: 1px solid var(--color-border);
|
|
159
|
+
border-radius: var(--radius);
|
|
160
|
+
background: var(--color-surface);
|
|
161
|
+
color: var(--color-text);
|
|
162
|
+
font-size: 0.95rem;
|
|
163
|
+
outline: none;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.add-form input:focus {
|
|
167
|
+
border-color: var(--color-primary);
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.add-form input::placeholder {
|
|
171
|
+
color: var(--color-text-muted);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.add-form button {
|
|
175
|
+
padding: 10px 20px;
|
|
176
|
+
border: none;
|
|
177
|
+
border-radius: var(--radius);
|
|
178
|
+
background: var(--color-primary);
|
|
179
|
+
color: white;
|
|
180
|
+
font-size: 0.95rem;
|
|
181
|
+
font-weight: 500;
|
|
182
|
+
cursor: pointer;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.add-form button:hover {
|
|
186
|
+
background: var(--color-primary-hover);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.add-form button:disabled {
|
|
190
|
+
opacity: 0.5;
|
|
191
|
+
cursor: not-allowed;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.filters {
|
|
195
|
+
display: flex;
|
|
196
|
+
gap: 8px;
|
|
197
|
+
margin-bottom: 24px;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.filter-btn {
|
|
201
|
+
padding: 6px 16px;
|
|
202
|
+
border: none;
|
|
203
|
+
border-radius: var(--radius);
|
|
204
|
+
background: var(--color-surface);
|
|
205
|
+
color: var(--color-text-muted);
|
|
206
|
+
font-size: 0.85rem;
|
|
207
|
+
font-weight: 500;
|
|
208
|
+
cursor: pointer;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.filter-btn:hover {
|
|
212
|
+
background: var(--color-border-hover);
|
|
213
|
+
color: var(--color-text);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.filter-btn.active {
|
|
217
|
+
background: var(--color-primary);
|
|
218
|
+
color: white;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.filter-btn .badge {
|
|
222
|
+
display: inline-block;
|
|
223
|
+
margin-left: 6px;
|
|
224
|
+
padding: 1px 6px;
|
|
225
|
+
border-radius: 999px;
|
|
226
|
+
font-size: 0.75rem;
|
|
227
|
+
background: rgba(255, 255, 255, 0.15);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.filter-btn:not(.active) .badge {
|
|
231
|
+
background: var(--color-border);
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.todo-list {
|
|
235
|
+
display: flex;
|
|
236
|
+
flex-direction: column;
|
|
237
|
+
gap: 8px;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.todo-item {
|
|
241
|
+
display: flex;
|
|
242
|
+
align-items: center;
|
|
243
|
+
gap: 12px;
|
|
244
|
+
padding: 12px 16px;
|
|
245
|
+
border: 1px solid var(--color-border);
|
|
246
|
+
border-radius: var(--radius);
|
|
247
|
+
background: var(--color-surface);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.todo-item:hover {
|
|
251
|
+
border-color: var(--color-border-hover);
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.todo-item .toggle {
|
|
255
|
+
background: none;
|
|
256
|
+
border: 2px solid var(--color-text-muted);
|
|
257
|
+
width: 20px;
|
|
258
|
+
height: 20px;
|
|
259
|
+
border-radius: 50%;
|
|
260
|
+
cursor: pointer;
|
|
261
|
+
display: flex;
|
|
262
|
+
align-items: center;
|
|
263
|
+
justify-content: center;
|
|
264
|
+
color: transparent;
|
|
265
|
+
font-size: 0.7rem;
|
|
266
|
+
flex-shrink: 0;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.todo-item .toggle.checked {
|
|
270
|
+
border-color: var(--color-success);
|
|
271
|
+
background: var(--color-success);
|
|
272
|
+
color: white;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.todo-item .title {
|
|
276
|
+
flex: 1;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.todo-item .title.done {
|
|
280
|
+
text-decoration: line-through;
|
|
281
|
+
color: var(--color-text-muted);
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.todo-item .time {
|
|
285
|
+
font-size: 0.75rem;
|
|
286
|
+
color: var(--color-text-dim);
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.todo-item .delete-btn {
|
|
290
|
+
background: none;
|
|
291
|
+
border: none;
|
|
292
|
+
color: var(--color-text-dim);
|
|
293
|
+
cursor: pointer;
|
|
294
|
+
padding: 4px;
|
|
295
|
+
opacity: 0;
|
|
296
|
+
transition: opacity 0.15s;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.todo-item:hover .delete-btn {
|
|
300
|
+
opacity: 1;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.todo-item .delete-btn:hover {
|
|
304
|
+
color: var(--color-danger);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.empty-state {
|
|
308
|
+
padding: 48px 0;
|
|
309
|
+
text-align: center;
|
|
310
|
+
color: var(--color-text-dim);
|
|
311
|
+
border: 1px dashed var(--color-border);
|
|
312
|
+
border-radius: var(--radius);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.footer {
|
|
316
|
+
display: flex;
|
|
317
|
+
justify-content: space-between;
|
|
318
|
+
margin-top: 24px;
|
|
319
|
+
font-size: 0.85rem;
|
|
320
|
+
color: var(--color-text-muted);
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.footer button {
|
|
324
|
+
background: none;
|
|
325
|
+
border: none;
|
|
326
|
+
color: var(--color-text-muted);
|
|
327
|
+
cursor: pointer;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.footer button:hover {
|
|
331
|
+
color: var(--color-text);
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.branding {
|
|
335
|
+
margin-top: 48px;
|
|
336
|
+
text-align: center;
|
|
337
|
+
font-size: 0.75rem;
|
|
338
|
+
color: var(--color-text-dim);
|
|
339
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// Web Worker entry point for SQLite WASM.
|
|
2
|
+
// Loaded automatically by the Kora store to run SQLite in a background thread.
|
|
3
|
+
|
|
4
|
+
// Import the WASM binary URL so Vite resolves it with the correct content hash.
|
|
5
|
+
// Without this, production builds fail because sqlite3 looks for the unhashed filename.
|
|
6
|
+
import sqliteWasmUrl from '@sqlite.org/sqlite-wasm/sqlite3.wasm?url'
|
|
7
|
+
;(globalThis as Record<string, unknown>).__KORA_SQLITE_WASM_URL = sqliteWasmUrl
|
|
8
|
+
|
|
9
|
+
import '@korajs/store/sqlite-wasm/worker'
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { createKoraAuthSync } from '@korajs/auth'
|
|
2
|
+
import { createApp as createKoraApp } from 'korajs'
|
|
3
|
+
import { mount } from 'svelte'
|
|
4
|
+
import Root from './Root.svelte'
|
|
5
|
+
import { authClient, completeOAuthCallbackFromLocation } from './auth'
|
|
6
|
+
import schema from './schema'
|
|
7
|
+
import './index.css'
|
|
8
|
+
import koraWorkerUrl from './kora-worker.ts?worker&url'
|
|
9
|
+
|
|
10
|
+
const syncUrl =
|
|
11
|
+
import.meta.env.VITE_SYNC_URL ||
|
|
12
|
+
`${window.location.protocol === 'https:' ? 'wss:' : 'ws:'}//${window.location.host}/kora-sync`
|
|
13
|
+
|
|
14
|
+
const kora = createKoraApp({
|
|
15
|
+
schema,
|
|
16
|
+
sync: {
|
|
17
|
+
url: syncUrl,
|
|
18
|
+
authClient: createKoraAuthSync({ authClient, schema }),
|
|
19
|
+
},
|
|
20
|
+
store: {
|
|
21
|
+
workerUrl: koraWorkerUrl,
|
|
22
|
+
},
|
|
23
|
+
devtools: true,
|
|
24
|
+
})
|
|
25
|
+
|
|
26
|
+
kora.ready.then(() => kora.sync?.connect())
|
|
27
|
+
|
|
28
|
+
void completeOAuthCallbackFromLocation().catch((error) => {
|
|
29
|
+
console.error('[Kora Auth] OAuth callback failed:', error)
|
|
30
|
+
})
|
|
31
|
+
|
|
32
|
+
mount(Root, { target: document.getElementById('app')!, props: { kora, authClient } })
|
|
@@ -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
|
+
}
|