@colixsystems/widget-sdk 0.11.0 → 0.12.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/README.md +7 -2
- package/dist/contract.cjs +31 -0
- package/dist/contract.js +31 -0
- package/dist/hooks.js +147 -0
- package/dist/index.d.ts +34 -0
- package/dist/index.js +2 -0
- package/dist/index.native.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,12 @@ See the design reference for the full architecture: [`docs/architecture/widget-m
|
|
|
6
6
|
|
|
7
7
|
## Status
|
|
8
8
|
|
|
9
|
-
`v0.
|
|
9
|
+
`v0.12.0` — pre-publish. The package surface (types, function names, export paths) is the v1 contract; runtime behaviour for some hooks is stubbed (each hook documents what's wired and what isn't). It is **not yet published to npm**.
|
|
10
|
+
|
|
11
|
+
### What's new in 0.12.0
|
|
12
|
+
|
|
13
|
+
- **`useDatastoreRecord(tableId, recordId)` is wired.** Returns `{ data, loading, error, refetch }` for a single record fetched through the host's `records(table).get(id)`. Sister to `useDatastoreQuery`; mirrors its ref discipline so `refetch` stays a stable callback identity. A 404 surfaces as `DatastoreError.code === "NOT_FOUND"`. Additive.
|
|
14
|
+
- **`useFile(fileId)` is wired** + new `WidgetContext.files` slice. Returns `{ url, file, loading, error, refetch }` — the `url` is an absolute URL the widget can drop straight into `<Image source>`. Backed by a new `files.get(fileId)` host facade (web: `widgetHostFiles` through `api/client`; native: `hostFiles` in the export's `widgetHost.js`). Additive.
|
|
10
15
|
|
|
11
16
|
### What's new in 0.11.0
|
|
12
17
|
|
|
@@ -80,7 +85,7 @@ import { defineWidget, validateManifest, useDatastoreQuery, Text, View } from "@
|
|
|
80
85
|
|
|
81
86
|
- `defineWidget({ manifest, component })` — validates the manifest and produces a widget module the host can register.
|
|
82
87
|
- `validateManifest(m)` / `validatePropertySchema(s)` / `validateProps(schema, props)` — shape validation; no third-party deps.
|
|
83
|
-
- `useDatastoreQuery`, `useDatastoreMutation`, `useDirectory`, `useWidgetEvent`, `usePayments`, `useTheme`, `useI18n`, `useUser`, `useNavigation` — hooks that read from the host-provided `WidgetContext`. `useDirectory(query?)` returns `{ users, loading, error, refetch }` (each user `{ id, name, role }`) and requires the `directory.read:users` scope. `usePayments()` returns `{ requestPayment, getPayment }` and requires the `payments.charge:appUser` scope; `requestPayment(...)` rejects with a `PaymentError`. `useUser()` returns the active end-user identity `{ id, email, displayName, roles, groupIds }` (`id` is `null` for anonymous / preview). `useNavigation()` returns `{ goTo, goBack, push, replace, back, currentRoute }` for internal page navigation — for external URLs use the `Linking` primitive (`Linking.openURL(url)`).
|
|
88
|
+
- `useDatastoreQuery`, `useDatastoreRecord`, `useDatastoreMutation`, `useDirectory`, `useFile`, `useWidgetEvent`, `usePayments`, `useTheme`, `useI18n`, `useUser`, `useNavigation` — hooks that read from the host-provided `WidgetContext`. `useDirectory(query?)` returns `{ users, loading, error, refetch }` (each user `{ id, name, role }`) and requires the `directory.read:users` scope. `usePayments()` returns `{ requestPayment, getPayment }` and requires the `payments.charge:appUser` scope; `requestPayment(...)` rejects with a `PaymentError`. `useUser()` returns the active end-user identity `{ id, email, displayName, roles, groupIds }` (`id` is `null` for anonymous / preview). `useNavigation()` returns `{ goTo, goBack, push, replace, back, currentRoute }` for internal page navigation — for external URLs use the `Linking` primitive (`Linking.openURL(url)`). `useDatastoreRecord(tableId, recordId)` returns `{ data, loading, error, refetch }` for a single record (data is one row or null). `useFile(fileId)` returns `{ url, file, loading, error, refetch }` — the `url` is an absolute URL composed against the host's API base.
|
|
84
89
|
- `Text`, `View`, `Pressable`, `Image`, `ScrollView`, `TextInput`, `FlatList`, `SectionList`, `ActivityIndicator`, `Switch`, `StyleSheet` — re-exported from `react-native`. The web build aliases `react-native` to `react-native-web` so widgets render in the browser without any per-platform code; the exported Expo app's Metro bundler resolves the real `react-native` library. See https://reactnative.dev/docs/ for per-component props.
|
|
85
90
|
- `WidgetContextProvider` — React context provider that the host (Studio, Player, exported app) wraps widgets with.
|
|
86
91
|
|
package/dist/contract.cjs
CHANGED
|
@@ -82,6 +82,31 @@ const HOOKS = [
|
|
|
82
82
|
requiredContextSlice: ["navigation"],
|
|
83
83
|
scopes: null,
|
|
84
84
|
},
|
|
85
|
+
{
|
|
86
|
+
name: "useDatastoreRecord",
|
|
87
|
+
signature: "useDatastoreRecord(tableId, recordId)",
|
|
88
|
+
returnShape: {
|
|
89
|
+
data: "Record | null",
|
|
90
|
+
loading: "boolean",
|
|
91
|
+
error: "DatastoreError | null",
|
|
92
|
+
refetch: "() => Promise<void>",
|
|
93
|
+
},
|
|
94
|
+
requiredContextSlice: ["datastore.records"],
|
|
95
|
+
scopes: ["datastore.read:<table>"],
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: "useFile",
|
|
99
|
+
signature: "useFile(fileId)",
|
|
100
|
+
returnShape: {
|
|
101
|
+
url: "string | null",
|
|
102
|
+
file: "{ id, url, storedFilename, mimeType, sizeBytes, ... } | null",
|
|
103
|
+
loading: "boolean",
|
|
104
|
+
error: "DatastoreError | null",
|
|
105
|
+
refetch: "() => Promise<void>",
|
|
106
|
+
},
|
|
107
|
+
requiredContextSlice: ["files.get"],
|
|
108
|
+
scopes: null,
|
|
109
|
+
},
|
|
85
110
|
{
|
|
86
111
|
name: "useDatastoreQuery",
|
|
87
112
|
signature: "useDatastoreQuery(tableId, options?)",
|
|
@@ -376,6 +401,12 @@ const WIDGET_CONTEXT_SHAPE = {
|
|
|
376
401
|
required: true,
|
|
377
402
|
fields: { listUsers: "function" },
|
|
378
403
|
},
|
|
404
|
+
files: {
|
|
405
|
+
description:
|
|
406
|
+
"Read-only asset resolver. { get(fileId) -> Promise<{ id, url, storedFilename, mimeType, sizeBytes, ... }> }. Backs useFile(); resolves an asset id to an absolute URL the widget can drop into an <Image source>. The url field is always an absolute URL composed against the host's API base.",
|
|
407
|
+
required: true,
|
|
408
|
+
fields: { get: "function" },
|
|
409
|
+
},
|
|
379
410
|
events: {
|
|
380
411
|
description: "{ emit(name, payload) }.",
|
|
381
412
|
required: true,
|
package/dist/contract.js
CHANGED
|
@@ -82,6 +82,31 @@ const HOOKS = [
|
|
|
82
82
|
requiredContextSlice: ["navigation"],
|
|
83
83
|
scopes: null,
|
|
84
84
|
},
|
|
85
|
+
{
|
|
86
|
+
name: "useDatastoreRecord",
|
|
87
|
+
signature: "useDatastoreRecord(tableId, recordId)",
|
|
88
|
+
returnShape: {
|
|
89
|
+
data: "Record | null",
|
|
90
|
+
loading: "boolean",
|
|
91
|
+
error: "DatastoreError | null",
|
|
92
|
+
refetch: "() => Promise<void>",
|
|
93
|
+
},
|
|
94
|
+
requiredContextSlice: ["datastore.records"],
|
|
95
|
+
scopes: ["datastore.read:<table>"],
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: "useFile",
|
|
99
|
+
signature: "useFile(fileId)",
|
|
100
|
+
returnShape: {
|
|
101
|
+
url: "string | null",
|
|
102
|
+
file: "{ id, url, storedFilename, mimeType, sizeBytes, ... } | null",
|
|
103
|
+
loading: "boolean",
|
|
104
|
+
error: "DatastoreError | null",
|
|
105
|
+
refetch: "() => Promise<void>",
|
|
106
|
+
},
|
|
107
|
+
requiredContextSlice: ["files.get"],
|
|
108
|
+
scopes: null,
|
|
109
|
+
},
|
|
85
110
|
{
|
|
86
111
|
name: "useDatastoreQuery",
|
|
87
112
|
signature: "useDatastoreQuery(tableId, options?)",
|
|
@@ -370,6 +395,12 @@ const WIDGET_CONTEXT_SHAPE = {
|
|
|
370
395
|
required: true,
|
|
371
396
|
fields: { listUsers: "function" },
|
|
372
397
|
},
|
|
398
|
+
files: {
|
|
399
|
+
description:
|
|
400
|
+
"Read-only asset resolver. { get(fileId) -> Promise<{ id, url, storedFilename, mimeType, sizeBytes, ... }> }. Backs useFile(); resolves an asset id to an absolute URL the widget can drop into an <Image source>. The url field is always an absolute URL composed against the host's API base.",
|
|
401
|
+
required: true,
|
|
402
|
+
fields: { get: "function" },
|
|
403
|
+
},
|
|
373
404
|
events: {
|
|
374
405
|
description: "{ emit(name, payload) }.",
|
|
375
406
|
required: true,
|
package/dist/hooks.js
CHANGED
|
@@ -219,6 +219,153 @@ export function useDatastoreQuery(table, query) {
|
|
|
219
219
|
return { data, loading, error, refetch };
|
|
220
220
|
}
|
|
221
221
|
|
|
222
|
+
/**
|
|
223
|
+
* Stateful single-record query hook. Returns { data, loading, error, refetch }
|
|
224
|
+
* where `data` is one row (`null` until loaded, never an array).
|
|
225
|
+
*
|
|
226
|
+
* The host's datastore client exposes `records(table).get(id)` which
|
|
227
|
+
* resolves to a single record object. We hold the result in component
|
|
228
|
+
* state and re-fetch when [table, id] changes. `refetch` re-runs the
|
|
229
|
+
* call on demand.
|
|
230
|
+
*
|
|
231
|
+
* When `table` OR `recordId` is falsy (e.g. the author hasn't bound the
|
|
232
|
+
* record id yet), the hook resolves to { data: null, loading: false,
|
|
233
|
+
* error: null, refetch } so the widget can render its empty state
|
|
234
|
+
* without throwing. A 404 surfaces as a DatastoreError with
|
|
235
|
+
* `code: "NOT_FOUND"`.
|
|
236
|
+
*/
|
|
237
|
+
export function useDatastoreRecord(table, recordId) {
|
|
238
|
+
const ctx = useWidgetContextOrThrow("useDatastoreRecord");
|
|
239
|
+
if (!ctx.datastore || typeof ctx.datastore.records !== "function") {
|
|
240
|
+
throw new Error(
|
|
241
|
+
"useDatastoreRecord: host did not inject a datastore client",
|
|
242
|
+
);
|
|
243
|
+
}
|
|
244
|
+
const ready = Boolean(table && recordId);
|
|
245
|
+
const [data, setData] = useState(null);
|
|
246
|
+
const [loading, setLoading] = useState(ready);
|
|
247
|
+
const [error, setError] = useState(null);
|
|
248
|
+
|
|
249
|
+
// Same ref discipline as useDatastoreQuery — `ctx` is a fresh object
|
|
250
|
+
// identity on every host render, so we hold the live inputs in refs
|
|
251
|
+
// to keep `refetch` a stable callback.
|
|
252
|
+
const tableRef = useRef(table);
|
|
253
|
+
const recordIdRef = useRef(recordId);
|
|
254
|
+
const recordsRef = useRef(ctx.datastore.records);
|
|
255
|
+
tableRef.current = table;
|
|
256
|
+
recordIdRef.current = recordId;
|
|
257
|
+
recordsRef.current = ctx.datastore.records;
|
|
258
|
+
|
|
259
|
+
const runRef = useRef(0);
|
|
260
|
+
|
|
261
|
+
const doFetch = useCallback(async () => {
|
|
262
|
+
const myRun = ++runRef.current;
|
|
263
|
+
const t = tableRef.current;
|
|
264
|
+
const id = recordIdRef.current;
|
|
265
|
+
if (!t || !id) {
|
|
266
|
+
setLoading(false);
|
|
267
|
+
setError(null);
|
|
268
|
+
setData(null);
|
|
269
|
+
return;
|
|
270
|
+
}
|
|
271
|
+
setLoading(true);
|
|
272
|
+
setError(null);
|
|
273
|
+
try {
|
|
274
|
+
const ns = recordsRef.current(t);
|
|
275
|
+
const row = await ns.get(id);
|
|
276
|
+
if (runRef.current !== myRun) return;
|
|
277
|
+
setData(row || null);
|
|
278
|
+
setLoading(false);
|
|
279
|
+
} catch (err) {
|
|
280
|
+
if (runRef.current !== myRun) return;
|
|
281
|
+
setError(toDatastoreError(err));
|
|
282
|
+
setLoading(false);
|
|
283
|
+
}
|
|
284
|
+
}, []);
|
|
285
|
+
|
|
286
|
+
useEffect(() => {
|
|
287
|
+
doFetch();
|
|
288
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
289
|
+
}, [table, recordId]);
|
|
290
|
+
|
|
291
|
+
const refetch = useCallback(async () => {
|
|
292
|
+
await doFetch();
|
|
293
|
+
}, [doFetch]);
|
|
294
|
+
|
|
295
|
+
return { data, loading, error, refetch };
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
/**
|
|
299
|
+
* Stateful file-asset resolver hook. Returns { url, file, loading, error,
|
|
300
|
+
* refetch }.
|
|
301
|
+
*
|
|
302
|
+
* The host's file client exposes `files.get(fileId)` which resolves to
|
|
303
|
+
* `{ url, ...meta }` — the absolute URL is composed against the host's
|
|
304
|
+
* API base so the widget can drop it straight into an `<Image source>`
|
|
305
|
+
* without knowing where the API lives. A missing/soft-deleted asset
|
|
306
|
+
* surfaces as `{ url: null, error: <DatastoreError NOT_FOUND> }`.
|
|
307
|
+
*
|
|
308
|
+
* When `fileId` is falsy the hook collapses to { url: null, file: null,
|
|
309
|
+
* loading: false, error: null, refetch } without a network round-trip,
|
|
310
|
+
* so a widget rendering before the author has bound an asset stays
|
|
311
|
+
* loop-free.
|
|
312
|
+
*/
|
|
313
|
+
export function useFile(fileId) {
|
|
314
|
+
const ctx = useWidgetContextOrThrow("useFile");
|
|
315
|
+
if (!ctx.files || typeof ctx.files.get !== "function") {
|
|
316
|
+
throw new Error("useFile: host did not inject a files client");
|
|
317
|
+
}
|
|
318
|
+
const ready = Boolean(fileId);
|
|
319
|
+
const [file, setFile] = useState(null);
|
|
320
|
+
const [loading, setLoading] = useState(ready);
|
|
321
|
+
const [error, setError] = useState(null);
|
|
322
|
+
|
|
323
|
+
const fileIdRef = useRef(fileId);
|
|
324
|
+
const getRef = useRef(ctx.files.get);
|
|
325
|
+
fileIdRef.current = fileId;
|
|
326
|
+
getRef.current = ctx.files.get;
|
|
327
|
+
|
|
328
|
+
const runRef = useRef(0);
|
|
329
|
+
|
|
330
|
+
const doFetch = useCallback(async () => {
|
|
331
|
+
const myRun = ++runRef.current;
|
|
332
|
+
const id = fileIdRef.current;
|
|
333
|
+
if (!id) {
|
|
334
|
+
setLoading(false);
|
|
335
|
+
setError(null);
|
|
336
|
+
setFile(null);
|
|
337
|
+
return;
|
|
338
|
+
}
|
|
339
|
+
setLoading(true);
|
|
340
|
+
setError(null);
|
|
341
|
+
try {
|
|
342
|
+
const f = await getRef.current(id);
|
|
343
|
+
if (runRef.current !== myRun) return;
|
|
344
|
+
setFile(f || null);
|
|
345
|
+
setLoading(false);
|
|
346
|
+
} catch (err) {
|
|
347
|
+
if (runRef.current !== myRun) return;
|
|
348
|
+
setError(toDatastoreError(err));
|
|
349
|
+
setLoading(false);
|
|
350
|
+
}
|
|
351
|
+
}, []);
|
|
352
|
+
|
|
353
|
+
useEffect(() => {
|
|
354
|
+
doFetch();
|
|
355
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
356
|
+
}, [fileId]);
|
|
357
|
+
|
|
358
|
+
const refetch = useCallback(async () => {
|
|
359
|
+
await doFetch();
|
|
360
|
+
}, [doFetch]);
|
|
361
|
+
|
|
362
|
+
const url =
|
|
363
|
+
file && typeof file.url === "string" && file.url.length > 0
|
|
364
|
+
? file.url
|
|
365
|
+
: null;
|
|
366
|
+
return { url, file, loading, error, refetch };
|
|
367
|
+
}
|
|
368
|
+
|
|
222
369
|
/**
|
|
223
370
|
* Datastore mutation hook. Returns { create, update, delete }, each method
|
|
224
371
|
* returning a Promise. Rejected promises throw a DatastoreError carrying a
|
package/dist/index.d.ts
CHANGED
|
@@ -363,6 +363,40 @@ export function usePayments(): PaymentsApi;
|
|
|
363
363
|
|
|
364
364
|
export function useTheme(): ThemeTokens;
|
|
365
365
|
|
|
366
|
+
/**
|
|
367
|
+
* Stateful single-record fetch hook. Returns `{ data, loading, error,
|
|
368
|
+
* refetch }`. `data` is one row or `null` (never an array).
|
|
369
|
+
*/
|
|
370
|
+
export function useDatastoreRecord(
|
|
371
|
+
tableId: string | null | undefined,
|
|
372
|
+
recordId: string | null | undefined,
|
|
373
|
+
): {
|
|
374
|
+
data: unknown | null;
|
|
375
|
+
loading: boolean;
|
|
376
|
+
error: DatastoreError | null;
|
|
377
|
+
refetch(): Promise<void>;
|
|
378
|
+
};
|
|
379
|
+
|
|
380
|
+
/**
|
|
381
|
+
* Stateful file-asset resolver hook. Returns `{ url, file, loading, error,
|
|
382
|
+
* refetch }`. The `url` is an absolute URL composed against the host's API
|
|
383
|
+
* base; safe to pass straight to `<Image source>`.
|
|
384
|
+
*/
|
|
385
|
+
export function useFile(fileId: string | null | undefined): {
|
|
386
|
+
url: string | null;
|
|
387
|
+
file: {
|
|
388
|
+
id: string;
|
|
389
|
+
url: string;
|
|
390
|
+
storedFilename?: string;
|
|
391
|
+
mimeType?: string;
|
|
392
|
+
sizeBytes?: number;
|
|
393
|
+
[k: string]: unknown;
|
|
394
|
+
} | null;
|
|
395
|
+
loading: boolean;
|
|
396
|
+
error: DatastoreError | null;
|
|
397
|
+
refetch(): Promise<void>;
|
|
398
|
+
};
|
|
399
|
+
|
|
366
400
|
export function useI18n(): {
|
|
367
401
|
locale: string;
|
|
368
402
|
t(key: string, fallback?: string): string;
|
package/dist/index.js
CHANGED
package/dist/index.native.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colixsystems/widget-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "Common widget interface for AppStudio. Implements WidgetManifest, WidgetContext, property schema, and helper hooks.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|