@livestore/sync-electric 0.3.0-dev.3 → 0.3.0-dev.31
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/.tsbuildinfo +1 -1
- package/dist/api-schema.d.ts +47 -0
- package/dist/api-schema.d.ts.map +1 -0
- package/dist/api-schema.js +16 -0
- package/dist/api-schema.js.map +1 -0
- package/dist/index.d.ts +49 -81
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +161 -66
- package/dist/index.js.map +1 -1
- package/package.json +5 -3
- package/src/api-schema.ts +20 -0
- package/src/index.ts +288 -169
- package/tmp/pack.tgz +0 -0
package/src/index.ts
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
import type { SyncBackend,
|
|
2
|
-
import { InvalidPullError, InvalidPushError } from '@livestore/common'
|
|
3
|
-
import
|
|
4
|
-
import {
|
|
5
|
-
import type { Scope } from '@livestore/utils/effect'
|
|
1
|
+
import type { IsOfflineError, SyncBackend, SyncBackendConstructor } from '@livestore/common'
|
|
2
|
+
import { InvalidPullError, InvalidPushError, UnexpectedError } from '@livestore/common'
|
|
3
|
+
import { LiveStoreEvent } from '@livestore/common/schema'
|
|
4
|
+
import { notYetImplemented, shouldNeverHappen } from '@livestore/utils'
|
|
6
5
|
import {
|
|
7
6
|
Chunk,
|
|
8
|
-
Deferred,
|
|
9
7
|
Effect,
|
|
10
8
|
HttpClient,
|
|
11
9
|
HttpClientRequest,
|
|
@@ -16,211 +14,332 @@ import {
|
|
|
16
14
|
SubscriptionRef,
|
|
17
15
|
} from '@livestore/utils/effect'
|
|
18
16
|
|
|
17
|
+
import * as ApiSchema from './api-schema.js'
|
|
18
|
+
|
|
19
|
+
export * as ApiSchema from './api-schema.js'
|
|
20
|
+
|
|
19
21
|
/*
|
|
20
22
|
Example data:
|
|
21
23
|
|
|
22
|
-
[
|
|
23
|
-
|
|
24
|
-
|
|
24
|
+
[
|
|
25
|
+
{
|
|
26
|
+
"value": {
|
|
27
|
+
"args": "{\"id\": \"127c3df4-0855-4587-ae75-14463f4a3aa0\", \"text\": \"1\"}",
|
|
28
|
+
"clientId": "S_YOa",
|
|
29
|
+
"id": "0",
|
|
30
|
+
"name": "todoCreated",
|
|
31
|
+
"parentId": "-1"
|
|
32
|
+
},
|
|
33
|
+
"key": "\"public\".\"events_9069baf0_b3e6_42f7_980f_188416eab3fx3\"/\"0\"",
|
|
34
|
+
"headers": {
|
|
35
|
+
"last": true,
|
|
36
|
+
"relation": [
|
|
37
|
+
"public",
|
|
38
|
+
"events_9069baf0_b3e6_42f7_980f_188416eab3fx3"
|
|
39
|
+
],
|
|
40
|
+
"operation": "insert",
|
|
41
|
+
"lsn": 27294160,
|
|
42
|
+
"op_position": 0,
|
|
43
|
+
"txids": [
|
|
44
|
+
753
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"headers": {
|
|
50
|
+
"control": "up-to-date",
|
|
51
|
+
"global_last_seen_lsn": 27294160
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
|
|
25
56
|
|
|
26
57
|
Also see: https://github.com/electric-sql/electric/blob/main/packages/typescript-client/src/client.ts
|
|
27
58
|
|
|
28
59
|
*/
|
|
29
60
|
|
|
61
|
+
const LiveStoreEventGlobalFromStringRecord = Schema.Struct({
|
|
62
|
+
id: Schema.NumberFromString,
|
|
63
|
+
parentId: Schema.NumberFromString,
|
|
64
|
+
name: Schema.String,
|
|
65
|
+
args: Schema.parseJson(Schema.Any),
|
|
66
|
+
clientId: Schema.String,
|
|
67
|
+
sessionId: Schema.String,
|
|
68
|
+
}).pipe(
|
|
69
|
+
Schema.transform(LiveStoreEvent.AnyEncodedGlobal, {
|
|
70
|
+
decode: (_) => _,
|
|
71
|
+
encode: (_) => _,
|
|
72
|
+
}),
|
|
73
|
+
)
|
|
74
|
+
|
|
30
75
|
const ResponseItem = Schema.Struct({
|
|
31
|
-
/** Postgres path (e.g. "public.
|
|
76
|
+
/** Postgres path (e.g. `"public"."events_9069baf0_b3e6_42f7_980f_188416eab3fx3"/"0"`) */
|
|
32
77
|
key: Schema.optional(Schema.String),
|
|
33
|
-
value: Schema.optional(
|
|
34
|
-
headers: Schema.
|
|
35
|
-
|
|
78
|
+
value: Schema.optional(LiveStoreEventGlobalFromStringRecord),
|
|
79
|
+
headers: Schema.Union(
|
|
80
|
+
Schema.Struct({
|
|
81
|
+
operation: Schema.Union(Schema.Literal('insert'), Schema.Literal('update'), Schema.Literal('delete')),
|
|
82
|
+
relation: Schema.Array(Schema.String),
|
|
83
|
+
}),
|
|
84
|
+
Schema.Struct({
|
|
85
|
+
control: Schema.String,
|
|
86
|
+
}),
|
|
87
|
+
),
|
|
36
88
|
})
|
|
37
89
|
|
|
38
90
|
const ResponseHeaders = Schema.Struct({
|
|
39
|
-
'
|
|
40
|
-
// '
|
|
91
|
+
'electric-handle': Schema.String,
|
|
92
|
+
// 'electric-schema': Schema.parseJson(Schema.Any),
|
|
41
93
|
/** e.g. 26799576_0 */
|
|
42
|
-
'
|
|
94
|
+
'electric-offset': Schema.String,
|
|
43
95
|
})
|
|
44
96
|
|
|
45
97
|
export const syncBackend = {} as any
|
|
46
98
|
|
|
47
|
-
export const ApiPushEventPayload = Schema.TaggedStruct('sync-electric.PushEvent', {
|
|
48
|
-
roomId: Schema.String,
|
|
49
|
-
batch: Schema.Array(MutationEvent.EncodedAny),
|
|
50
|
-
})
|
|
51
|
-
|
|
52
|
-
export const ApiInitRoomPayload = Schema.TaggedStruct('sync-electric.InitRoom', {
|
|
53
|
-
roomId: Schema.String,
|
|
54
|
-
})
|
|
55
|
-
|
|
56
|
-
export const ApiPayload = Schema.Union(ApiPushEventPayload, ApiInitRoomPayload)
|
|
57
|
-
|
|
58
99
|
export const syncBackendOptions = <TOptions extends SyncBackendOptions>(options: TOptions) => options
|
|
59
100
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
101
|
+
/**
|
|
102
|
+
* This function should be called in a trusted environment (e.g. a proxy server) as it
|
|
103
|
+
* requires access to senstive information (e.g. `apiSecret` / `sourceSecret`).
|
|
104
|
+
*/
|
|
105
|
+
export const makeElectricUrl = ({
|
|
106
|
+
electricHost,
|
|
107
|
+
searchParams: providedSearchParams,
|
|
108
|
+
sourceId,
|
|
109
|
+
sourceSecret,
|
|
110
|
+
apiSecret,
|
|
111
|
+
}: {
|
|
67
112
|
electricHost: string
|
|
68
|
-
roomId: string
|
|
69
113
|
/**
|
|
70
|
-
*
|
|
71
|
-
*
|
|
72
|
-
*
|
|
73
|
-
*
|
|
114
|
+
* Needed to extract information from the search params which the `@livestore/sync-electric`
|
|
115
|
+
* client implementation automatically adds:
|
|
116
|
+
* - `handle`: the ElectricSQL handle
|
|
117
|
+
* - `storeId`: the Livestore storeId
|
|
74
118
|
*/
|
|
75
|
-
|
|
119
|
+
searchParams: URLSearchParams
|
|
120
|
+
/** Needed for Electric Cloud */
|
|
121
|
+
sourceId?: string
|
|
122
|
+
/** Needed for Electric Cloud */
|
|
123
|
+
sourceSecret?: string
|
|
124
|
+
/** For self-hosted ElectricSQL */
|
|
125
|
+
apiSecret?: string
|
|
126
|
+
}) => {
|
|
127
|
+
const endpointUrl = `${electricHost}/v1/shape`
|
|
128
|
+
const argsResult = Schema.decodeUnknownEither(Schema.Struct({ args: Schema.parseJson(ApiSchema.PullPayload) }))(
|
|
129
|
+
Object.fromEntries(providedSearchParams.entries()),
|
|
130
|
+
)
|
|
131
|
+
|
|
132
|
+
if (argsResult._tag === 'Left') {
|
|
133
|
+
return shouldNeverHappen(
|
|
134
|
+
'Invalid search params provided to makeElectricUrl',
|
|
135
|
+
providedSearchParams,
|
|
136
|
+
Object.fromEntries(providedSearchParams.entries()),
|
|
137
|
+
)
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
const args = argsResult.right.args
|
|
141
|
+
const tableName = toTableName(args.storeId)
|
|
142
|
+
const searchParams = new URLSearchParams()
|
|
143
|
+
searchParams.set('table', tableName)
|
|
144
|
+
if (sourceId !== undefined) {
|
|
145
|
+
searchParams.set('source_id', sourceId)
|
|
146
|
+
}
|
|
147
|
+
if (sourceSecret !== undefined) {
|
|
148
|
+
searchParams.set('source_secret', sourceSecret)
|
|
149
|
+
}
|
|
150
|
+
if (apiSecret !== undefined) {
|
|
151
|
+
searchParams.set('api_secret', apiSecret)
|
|
152
|
+
}
|
|
153
|
+
if (args.handle._tag === 'None') {
|
|
154
|
+
searchParams.set('offset', '-1')
|
|
155
|
+
} else {
|
|
156
|
+
searchParams.set('offset', args.handle.value.offset)
|
|
157
|
+
searchParams.set('handle', args.handle.value.handle)
|
|
158
|
+
searchParams.set('live', 'true')
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
const payload = args.payload
|
|
162
|
+
|
|
163
|
+
const url = `${endpointUrl}?${searchParams.toString()}`
|
|
164
|
+
|
|
165
|
+
return { url, storeId: args.storeId, needsInit: args.handle._tag === 'None', payload }
|
|
76
166
|
}
|
|
77
167
|
|
|
78
|
-
interface
|
|
79
|
-
|
|
168
|
+
export interface SyncBackendOptions {
|
|
169
|
+
/**
|
|
170
|
+
* The endpoint to pull/push events. Pull is a `GET` request, push is a `POST` request.
|
|
171
|
+
* Usually this endpoint is part of your API layer to proxy requests to the Electric server
|
|
172
|
+
* e.g. to implement auth, rate limiting, etc.
|
|
173
|
+
*
|
|
174
|
+
* @example "/api/electric"
|
|
175
|
+
* @example { push: "/api/push-event", pull: "/api/pull-event" }
|
|
176
|
+
*/
|
|
177
|
+
endpoint:
|
|
178
|
+
| string
|
|
179
|
+
| {
|
|
180
|
+
push: string
|
|
181
|
+
pull: string
|
|
182
|
+
}
|
|
80
183
|
}
|
|
81
184
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
185
|
+
export const SyncMetadata = Schema.Struct({
|
|
186
|
+
offset: Schema.String,
|
|
187
|
+
// TODO move this into some kind of "global" sync metadata as it's the same for each event
|
|
188
|
+
handle: Schema.String,
|
|
189
|
+
})
|
|
85
190
|
|
|
86
191
|
type SyncMetadata = {
|
|
87
192
|
offset: string
|
|
88
193
|
// TODO move this into some kind of "global" sync metadata as it's the same for each event
|
|
89
|
-
|
|
194
|
+
handle: string
|
|
90
195
|
}
|
|
91
196
|
|
|
92
|
-
export const makeSyncBackend =
|
|
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
|
-
// The correct behavior here is to refetch the shape from scratch and to reset the local state.
|
|
121
|
-
error.response.status === 400 ? initRoom : Effect.fail(error),
|
|
122
|
-
),
|
|
123
|
-
Effect.retry({ times: 1 }),
|
|
124
|
-
)
|
|
125
|
-
|
|
126
|
-
const headers = yield* HttpClientResponse.schemaHeaders(ResponseHeaders)(resp)
|
|
127
|
-
const nextCursor = {
|
|
128
|
-
offset: headers['x-electric-chunk-last-offset'],
|
|
129
|
-
shapeId: headers['x-electric-shape-id'],
|
|
130
|
-
}
|
|
197
|
+
export const makeSyncBackend =
|
|
198
|
+
({ endpoint }: SyncBackendOptions): SyncBackendConstructor<SyncMetadata> =>
|
|
199
|
+
({ storeId, payload }) =>
|
|
200
|
+
Effect.gen(function* () {
|
|
201
|
+
const isConnected = yield* SubscriptionRef.make(true)
|
|
202
|
+
const pullEndpoint = typeof endpoint === 'string' ? endpoint : endpoint.pull
|
|
203
|
+
const pushEndpoint = typeof endpoint === 'string' ? endpoint : endpoint.push
|
|
204
|
+
|
|
205
|
+
const pull = (
|
|
206
|
+
handle: Option.Option<SyncMetadata>,
|
|
207
|
+
): Effect.Effect<
|
|
208
|
+
Option.Option<
|
|
209
|
+
readonly [
|
|
210
|
+
Chunk.Chunk<{
|
|
211
|
+
metadata: Option.Option<SyncMetadata>
|
|
212
|
+
eventEncoded: LiveStoreEvent.AnyEncodedGlobal
|
|
213
|
+
}>,
|
|
214
|
+
Option.Option<SyncMetadata>,
|
|
215
|
+
]
|
|
216
|
+
>,
|
|
217
|
+
InvalidPullError | IsOfflineError,
|
|
218
|
+
HttpClient.HttpClient
|
|
219
|
+
> =>
|
|
220
|
+
Effect.gen(function* () {
|
|
221
|
+
const argsJson = yield* Schema.encode(Schema.parseJson(ApiSchema.PullPayload))(
|
|
222
|
+
ApiSchema.PullPayload.make({ storeId, handle, payload }),
|
|
223
|
+
)
|
|
224
|
+
const url = `${pullEndpoint}?args=${argsJson}`
|
|
131
225
|
|
|
132
|
-
|
|
133
|
-
// In this case we just retry where we left off
|
|
134
|
-
if (resp.status === 204) {
|
|
135
|
-
return Option.some([Chunk.empty(), Option.some(nextCursor)] as const)
|
|
136
|
-
}
|
|
226
|
+
const resp = yield* HttpClient.get(url)
|
|
137
227
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
mutationEventEncoded: {
|
|
145
|
-
mutation: item.value!.mutation,
|
|
146
|
-
args: JSON.parse(item.value!.args),
|
|
147
|
-
id: item.value!.id,
|
|
148
|
-
parentId: item.value!.parentId,
|
|
149
|
-
},
|
|
150
|
-
}))
|
|
151
|
-
|
|
152
|
-
// // TODO implement proper `remaining` handling
|
|
153
|
-
// remaining: 0,
|
|
154
|
-
|
|
155
|
-
// if (listenForNew === false && items.length === 0) {
|
|
156
|
-
// return Option.none()
|
|
157
|
-
// }
|
|
158
|
-
|
|
159
|
-
const [newItems, pendingPushItems] = Chunk.fromIterable(items).pipe(
|
|
160
|
-
Chunk.partition((item) => pendingPushDeferredMap.has(eventIdToString(item.mutationEventEncoded.id))),
|
|
161
|
-
)
|
|
228
|
+
if (resp.status === 401) {
|
|
229
|
+
const body = yield* resp.text.pipe(Effect.catchAll(() => Effect.succeed('-')))
|
|
230
|
+
return yield* InvalidPullError.make({
|
|
231
|
+
message: `Unauthorized (401): Couldn't connect to ElectricSQL: ${body}`,
|
|
232
|
+
})
|
|
233
|
+
}
|
|
162
234
|
|
|
163
|
-
|
|
164
|
-
const
|
|
165
|
-
|
|
166
|
-
|
|
235
|
+
const headers = yield* HttpClientResponse.schemaHeaders(ResponseHeaders)(resp)
|
|
236
|
+
const nextHandle = {
|
|
237
|
+
offset: headers['electric-offset'],
|
|
238
|
+
handle: headers['electric-handle'],
|
|
239
|
+
}
|
|
167
240
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
(metadataOption) => pull(metadataOption),
|
|
182
|
-
).pipe(
|
|
183
|
-
Stream.chunks,
|
|
184
|
-
Stream.map((chunk) => ({ batch: [...chunk], remaining: 0 })),
|
|
185
|
-
),
|
|
241
|
+
// TODO handle case where Electric shape is not found for a given handle
|
|
242
|
+
// https://electric-sql.com/openapi.html#/paths/~1v1~1shape/get
|
|
243
|
+
// {
|
|
244
|
+
// "message": "The shape associated with this shape_handle and offset was not found. Resync to fetch the latest shape",
|
|
245
|
+
// "shape_handle": "2494_84241",
|
|
246
|
+
// "offset": "-1"
|
|
247
|
+
// }
|
|
248
|
+
if (resp.status === 409) {
|
|
249
|
+
// TODO: implementation plan:
|
|
250
|
+
// start pulling events from scratch with the new handle and ignore the "old events"
|
|
251
|
+
// until we found a new event, then, continue with the new handle
|
|
252
|
+
return notYetImplemented(`Electric shape not found for handle ${nextHandle.handle}`)
|
|
253
|
+
}
|
|
186
254
|
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
const deferred = yield* Deferred.make<SyncMetadata>()
|
|
192
|
-
pendingPushDeferredMap.set(eventIdToString(mutationEventEncoded.id), deferred)
|
|
193
|
-
deferreds.push(deferred)
|
|
255
|
+
// Electric completes the long-poll request after ~20 seconds with a 204 status
|
|
256
|
+
// In this case we just retry where we left off
|
|
257
|
+
if (resp.status === 204) {
|
|
258
|
+
return Option.some([Chunk.empty(), Option.some(nextHandle)] as const)
|
|
194
259
|
}
|
|
195
260
|
|
|
196
|
-
const
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
).pipe(
|
|
200
|
-
Effect.andThen(HttpClient.execute),
|
|
201
|
-
Effect.andThen(HttpClientResponse.schemaBodyJson(Schema.Struct({ success: Schema.Boolean }))),
|
|
202
|
-
Effect.scoped,
|
|
203
|
-
Effect.mapError((cause) =>
|
|
204
|
-
InvalidPushError.make({ reason: { _tag: 'Unexpected', message: cause.toString() } }),
|
|
205
|
-
),
|
|
206
|
-
)
|
|
261
|
+
const body = yield* HttpClientResponse.schemaBodyJson(Schema.Array(ResponseItem), {
|
|
262
|
+
onExcessProperty: 'preserve',
|
|
263
|
+
})(resp)
|
|
207
264
|
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
265
|
+
const items = body
|
|
266
|
+
.filter((item) => item.value !== undefined && (item.headers as any).operation === 'insert')
|
|
267
|
+
.map((item) => ({
|
|
268
|
+
metadata: Option.some({ offset: nextHandle.offset!, handle: nextHandle.handle }),
|
|
269
|
+
eventEncoded: item.value! as LiveStoreEvent.AnyEncodedGlobal,
|
|
270
|
+
}))
|
|
211
271
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
)
|
|
272
|
+
// // TODO implement proper `remaining` handling
|
|
273
|
+
// remaining: 0,
|
|
215
274
|
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
}
|
|
275
|
+
// if (listenForNew === false && items.length === 0) {
|
|
276
|
+
// return Option.none()
|
|
277
|
+
// }
|
|
219
278
|
|
|
220
|
-
return
|
|
221
|
-
})
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
279
|
+
return Option.some([Chunk.fromIterable(items), Option.some(nextHandle)] as const)
|
|
280
|
+
}).pipe(
|
|
281
|
+
Effect.scoped,
|
|
282
|
+
Effect.mapError((cause) => InvalidPullError.make({ message: cause.toString() })),
|
|
283
|
+
)
|
|
284
|
+
|
|
285
|
+
const pullEndpointHasSameOrigin =
|
|
286
|
+
pullEndpoint.startsWith('/') ||
|
|
287
|
+
(globalThis.location !== undefined && globalThis.location.origin === new URL(pullEndpoint).origin)
|
|
288
|
+
|
|
289
|
+
return {
|
|
290
|
+
// If the pull endpoint has the same origin as the current page, we can assume that we already have a connection
|
|
291
|
+
// otherwise we send a HEAD request to speed up the connection process
|
|
292
|
+
connect: pullEndpointHasSameOrigin
|
|
293
|
+
? Effect.void
|
|
294
|
+
: HttpClient.head(pullEndpoint).pipe(UnexpectedError.mapToUnexpectedError),
|
|
295
|
+
pull: (args) =>
|
|
296
|
+
Stream.unfoldChunkEffect(
|
|
297
|
+
args.pipe(
|
|
298
|
+
Option.map((_) => _.metadata),
|
|
299
|
+
Option.flatten,
|
|
300
|
+
),
|
|
301
|
+
(metadataOption) => pull(metadataOption),
|
|
302
|
+
).pipe(
|
|
303
|
+
Stream.chunks,
|
|
304
|
+
Stream.map((chunk) => ({ batch: [...chunk], remaining: 0 })),
|
|
305
|
+
),
|
|
225
306
|
|
|
226
|
-
|
|
307
|
+
push: (batch) =>
|
|
308
|
+
Effect.gen(function* () {
|
|
309
|
+
const resp = yield* HttpClientRequest.schemaBodyJson(ApiSchema.PushPayload)(
|
|
310
|
+
HttpClientRequest.post(pushEndpoint),
|
|
311
|
+
ApiSchema.PushPayload.make({ storeId, batch }),
|
|
312
|
+
).pipe(
|
|
313
|
+
Effect.andThen(HttpClient.execute),
|
|
314
|
+
Effect.andThen(HttpClientResponse.schemaBodyJson(Schema.Struct({ success: Schema.Boolean }))),
|
|
315
|
+
Effect.scoped,
|
|
316
|
+
Effect.mapError((cause) =>
|
|
317
|
+
InvalidPushError.make({ reason: { _tag: 'Unexpected', message: cause.toString() } }),
|
|
318
|
+
),
|
|
319
|
+
)
|
|
320
|
+
|
|
321
|
+
if (!resp.success) {
|
|
322
|
+
yield* InvalidPushError.make({ reason: { _tag: 'Unexpected', message: 'Push failed' } })
|
|
323
|
+
}
|
|
324
|
+
}),
|
|
325
|
+
isConnected,
|
|
326
|
+
metadata: {
|
|
327
|
+
name: '@livestore/sync-electric',
|
|
328
|
+
description: 'LiveStore sync backend implementation using ElectricSQL',
|
|
329
|
+
protocol: 'http',
|
|
330
|
+
endpoint,
|
|
331
|
+
},
|
|
332
|
+
} satisfies SyncBackend<SyncMetadata>
|
|
333
|
+
})
|
|
334
|
+
|
|
335
|
+
/**
|
|
336
|
+
* Needs to be bumped when the storage format changes (e.g. eventlogTable schema changes)
|
|
337
|
+
*
|
|
338
|
+
* Changing this version number will lead to a "soft reset".
|
|
339
|
+
*/
|
|
340
|
+
export const PERSISTENCE_FORMAT_VERSION = 5
|
|
341
|
+
|
|
342
|
+
export const toTableName = (storeId: string) => {
|
|
343
|
+
const escapedStoreId = storeId.replaceAll(/[^a-zA-Z0-9_]/g, '_')
|
|
344
|
+
return `eventlog_${PERSISTENCE_FORMAT_VERSION}_${escapedStoreId}`
|
|
345
|
+
}
|
package/tmp/pack.tgz
ADDED
|
Binary file
|