@lotics/app-sdk 0.13.0 → 0.15.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/src/analytics.d.ts +1 -0
- package/dist/src/analytics.js +75 -0
- package/dist/src/mock.d.ts +8 -0
- package/dist/src/mock.js +14 -7
- package/dist/src/mount.d.ts +2 -2
- package/dist/src/mount.js +6 -0
- package/dist/src/rpc.d.ts +23 -1
- package/dist/src/rpc.js +42 -9
- package/package.json +8 -5
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function bootstrapAnalytics(): Promise<void>;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* PostHog analytics for custom-code apps.
|
|
3
|
+
*
|
|
4
|
+
* Apps run as a separate cross-origin bundle at `<slug>.lotics.app`, so the
|
|
5
|
+
* product's PostHog instance (on `app.lotics.ai`) can't see them — every app
|
|
6
|
+
* was previously dark. `bootstrapAnalytics` runs once from `mount()` and gives
|
|
7
|
+
* every app tracking for free, with no per-app wiring: PostHog **autocapture**
|
|
8
|
+
* (clicks, pageview, pageleave) records the user actions, plus exception
|
|
9
|
+
* capture for error visibility. Every event is tagged with app identity so it's
|
|
10
|
+
* attributable per app/workspace/org and rolls up under the existing
|
|
11
|
+
* `organization` group; embedded apps `identify` the authenticated member the
|
|
12
|
+
* host passes down, so app + product events share one person. See `rpc.ts`
|
|
13
|
+
* `AppContext` for how identity is resolved per transport.
|
|
14
|
+
*
|
|
15
|
+
* Autocapture is the only event source. RPC/data lifecycle (query / workflow /
|
|
16
|
+
* upload) is a system signal, not a user action — and the interaction that
|
|
17
|
+
* triggers each is already autocaptured — so the SDK emits no custom events.
|
|
18
|
+
*
|
|
19
|
+
* Best-effort: any failure (offline, an un-updated host that doesn't know the
|
|
20
|
+
* `context` op, tracking disabled for the environment) leaves the app fully
|
|
21
|
+
* functional and silently untracked.
|
|
22
|
+
*/
|
|
23
|
+
import posthog from "posthog-js";
|
|
24
|
+
import { rpc } from "./rpc.js";
|
|
25
|
+
import { hasMockFlag } from "./mock.js";
|
|
26
|
+
export async function bootstrapAnalytics() {
|
|
27
|
+
// A design-time / screenshot load (?__mock=1) is never real usage.
|
|
28
|
+
if (hasMockFlag())
|
|
29
|
+
return;
|
|
30
|
+
let ctx;
|
|
31
|
+
try {
|
|
32
|
+
ctx = await rpc("context", {});
|
|
33
|
+
}
|
|
34
|
+
catch {
|
|
35
|
+
// Best-effort: a context-resolution failure (offline, an un-updated host
|
|
36
|
+
// that doesn't know the op) must never break the app.
|
|
37
|
+
return;
|
|
38
|
+
}
|
|
39
|
+
// No key → tracking disabled for this environment (dev/preview/test, or a
|
|
40
|
+
// host running in a non-production build). Mirrors the frontend's prod gate.
|
|
41
|
+
if (!ctx.posthog_key)
|
|
42
|
+
return;
|
|
43
|
+
posthog.init(ctx.posthog_key, {
|
|
44
|
+
api_host: ctx.posthog_host,
|
|
45
|
+
autocapture: true,
|
|
46
|
+
capture_pageview: true,
|
|
47
|
+
capture_pageleave: true,
|
|
48
|
+
// Error tracking for the app: this is the app bundle's only exception
|
|
49
|
+
// channel (mount() renders a local banner but never posts), and we run
|
|
50
|
+
// customer apps — their crashes are ours to see.
|
|
51
|
+
capture_exceptions: true,
|
|
52
|
+
// Session replay is on by default at the project level (docs/security.md
|
|
53
|
+
// §11.4), but apps were never scoped for it and it would silently record
|
|
54
|
+
// anonymous public-app visitors. Keep it off on this surface.
|
|
55
|
+
disable_session_recording: true,
|
|
56
|
+
});
|
|
57
|
+
// Tag every event (autocapture included) so app traffic is attributable and
|
|
58
|
+
// filterable — any event carrying `app_id` is an app event. `app_name` spares
|
|
59
|
+
// an id lookup when debugging; the org's name lives on the `organization`
|
|
60
|
+
// group, not denormalized here.
|
|
61
|
+
posthog.register({
|
|
62
|
+
app_id: ctx.app_id,
|
|
63
|
+
app_name: ctx.app_name,
|
|
64
|
+
workspace_id: ctx.workspace_id,
|
|
65
|
+
organization_id: ctx.organization_id,
|
|
66
|
+
});
|
|
67
|
+
// Guarded: a bridged host that answered `context` before its auth member
|
|
68
|
+
// loaded sends an empty org — never group on an empty key.
|
|
69
|
+
if (ctx.organization_id)
|
|
70
|
+
posthog.group("organization", ctx.organization_id);
|
|
71
|
+
// Embedded apps attach to the same person as the product; standalone
|
|
72
|
+
// visitors stay anonymous (member_id null).
|
|
73
|
+
if (ctx.member_id)
|
|
74
|
+
posthog.identify(ctx.member_id);
|
|
75
|
+
}
|
package/dist/src/mock.d.ts
CHANGED
|
@@ -36,6 +36,14 @@ export interface AppFixture {
|
|
|
36
36
|
* for HMR.
|
|
37
37
|
*/
|
|
38
38
|
export declare function registerMockFixture(fixture: AppFixture | undefined): void;
|
|
39
|
+
/**
|
|
40
|
+
* True iff the iframe URL carries the `__mock=1` activation flag. Throws never;
|
|
41
|
+
* a malformed URL or missing `window` (SSR / jsdom without location) silently
|
|
42
|
+
* returns false. Distinct from `isMockMode`: analytics keys off the raw flag
|
|
43
|
+
* (a design-time / screenshot load emits no events regardless of fixtures),
|
|
44
|
+
* while query mocking additionally requires a registered fixture.
|
|
45
|
+
*/
|
|
46
|
+
export declare function hasMockFlag(): boolean;
|
|
39
47
|
/**
|
|
40
48
|
* Returns the fixture rows for an alias when mock mode is active *and* the
|
|
41
49
|
* fixture has an entry for that alias. Otherwise null — the hook falls
|
package/dist/src/mock.js
CHANGED
|
@@ -36,14 +36,13 @@ export function registerMockFixture(fixture) {
|
|
|
36
36
|
registeredFixture = fixture;
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
|
-
* True iff the iframe URL carries the `__mock=1` activation flag
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
*
|
|
39
|
+
* True iff the iframe URL carries the `__mock=1` activation flag. Throws never;
|
|
40
|
+
* a malformed URL or missing `window` (SSR / jsdom without location) silently
|
|
41
|
+
* returns false. Distinct from `isMockMode`: analytics keys off the raw flag
|
|
42
|
+
* (a design-time / screenshot load emits no events regardless of fixtures),
|
|
43
|
+
* while query mocking additionally requires a registered fixture.
|
|
43
44
|
*/
|
|
44
|
-
function
|
|
45
|
-
if (!registeredFixture)
|
|
46
|
-
return false;
|
|
45
|
+
export function hasMockFlag() {
|
|
47
46
|
try {
|
|
48
47
|
return new URLSearchParams(window.location.search).get("__mock") === "1";
|
|
49
48
|
}
|
|
@@ -51,6 +50,14 @@ function isMockMode() {
|
|
|
51
50
|
return false;
|
|
52
51
|
}
|
|
53
52
|
}
|
|
53
|
+
/**
|
|
54
|
+
* True iff the iframe URL carries the `__mock=1` activation flag AND a
|
|
55
|
+
* fixture was registered. Safe to call before mount — returns false when no
|
|
56
|
+
* fixture exists.
|
|
57
|
+
*/
|
|
58
|
+
function isMockMode() {
|
|
59
|
+
return Boolean(registeredFixture) && hasMockFlag();
|
|
60
|
+
}
|
|
54
61
|
/**
|
|
55
62
|
* Returns the fixture rows for an alias when mock mode is active *and* the
|
|
56
63
|
* fixture has an entry for that alias. Otherwise null — the hook falls
|
package/dist/src/mount.d.ts
CHANGED
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
*
|
|
27
27
|
* `mount` wires up React 19's createRoot against `#root` in the iframe shell,
|
|
28
28
|
* sets up window.onerror/unhandledrejection forwarding so runtime crashes
|
|
29
|
-
* surface in the parent's debug pane, registers the fixture (if any),
|
|
30
|
-
*
|
|
29
|
+
* surface in the parent's debug pane, registers the fixture (if any), renders
|
|
30
|
+
* the user's tree, and bootstraps PostHog analytics (see `./analytics.ts`).
|
|
31
31
|
*
|
|
32
32
|
* If the bundler doesn't ship #root in the user's `index.html`, we create it
|
|
33
33
|
* — Vite's default scaffold provides one, but defensive creation keeps the
|
package/dist/src/mount.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { createRoot } from "react-dom/client";
|
|
2
2
|
import { registerMockFixture } from "./mock.js";
|
|
3
|
+
import { bootstrapAnalytics } from "./analytics.js";
|
|
3
4
|
export function mount(element, options = {}) {
|
|
4
5
|
registerMockFixture(options.fixture);
|
|
5
6
|
let container = document.getElementById("root");
|
|
@@ -13,6 +14,11 @@ export function mount(element, options = {}) {
|
|
|
13
14
|
// *something* even before the parent's debug telemetry is wired up.
|
|
14
15
|
installVisibleErrorHandlers(container);
|
|
15
16
|
createRoot(container).render(element);
|
|
17
|
+
// Fire-and-forget: resolve the app's identity + analytics config and start
|
|
18
|
+
// PostHog autocapture. Never awaited — analytics must not delay first paint,
|
|
19
|
+
// and is best-effort so its failure can't break the app. No-ops in mock mode
|
|
20
|
+
// and when tracking is disabled for the environment.
|
|
21
|
+
void bootstrapAnalytics();
|
|
16
22
|
}
|
|
17
23
|
function installVisibleErrorHandlers(container) {
|
|
18
24
|
const showError = (message) => {
|
package/dist/src/rpc.d.ts
CHANGED
|
@@ -18,5 +18,27 @@
|
|
|
18
18
|
* app → host: { id, op, payload }
|
|
19
19
|
* host → app: { id, type: "result", data } | { id, type: "error", message }
|
|
20
20
|
*/
|
|
21
|
-
export type RpcOp = "query" | "workflow" | "upload";
|
|
21
|
+
export type RpcOp = "query" | "workflow" | "upload" | "context";
|
|
22
|
+
/**
|
|
23
|
+
* The app's identity + analytics config, resolved once at startup to bootstrap
|
|
24
|
+
* PostHog. Assembled by whichever transport is active:
|
|
25
|
+
*
|
|
26
|
+
* - **Bridged** — the host (authenticated) supplies `member_id` so app events
|
|
27
|
+
* attach to the same PostHog person as the product, plus org/workspace/app
|
|
28
|
+
* from its own context and the PostHog key from its env.
|
|
29
|
+
* - **Standalone** — the public `/by-subdomain` endpoint returns identity +
|
|
30
|
+
* config; `member_id` is null (anonymous visitor).
|
|
31
|
+
*
|
|
32
|
+
* `posthog_key` is null when tracking is disabled for the environment
|
|
33
|
+
* (dev/preview/test, or a non-production host build) — the SDK then no-ops.
|
|
34
|
+
*/
|
|
35
|
+
export interface AppContext {
|
|
36
|
+
app_id: string;
|
|
37
|
+
app_name: string;
|
|
38
|
+
workspace_id: string;
|
|
39
|
+
organization_id: string;
|
|
40
|
+
member_id: string | null;
|
|
41
|
+
posthog_key: string | null;
|
|
42
|
+
posthog_host: string;
|
|
43
|
+
}
|
|
22
44
|
export declare function rpc<T = unknown>(op: RpcOp, payload: unknown): Promise<T>;
|
package/dist/src/rpc.js
CHANGED
|
@@ -3,11 +3,10 @@ import { runUploadPipeline } from "./upload/pipeline.js";
|
|
|
3
3
|
/**
|
|
4
4
|
* The embedding Lotics host's origin — present iff the app is bridged.
|
|
5
5
|
*
|
|
6
|
-
* Lazy + memoized so the module's top level doesn't touch `window`.
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* imports the SDK.
|
|
6
|
+
* Lazy + memoized so the module's top level doesn't touch `window`. A test
|
|
7
|
+
* runner can pull this module in at evaluation time before its jsdom
|
|
8
|
+
* environment finishes setting up `window.location` — an eager read would
|
|
9
|
+
* crash every suite that transitively imports the SDK.
|
|
11
10
|
*
|
|
12
11
|
* `undefined` = not yet computed; `string | null` = computed result.
|
|
13
12
|
*/
|
|
@@ -69,6 +68,7 @@ const PASSWORD_REQUIRED_CODE = "PASSWORD_REQUIRED";
|
|
|
69
68
|
* `/by-subdomain` fetch and at most one password prompt.
|
|
70
69
|
*/
|
|
71
70
|
let bootPromise = null;
|
|
71
|
+
let appInfoPromise = null;
|
|
72
72
|
let sessionToken = null;
|
|
73
73
|
function sessionStorageKey(appId) {
|
|
74
74
|
return `lotics_app_session:${appId}`;
|
|
@@ -109,12 +109,32 @@ function clearStoredSession(appId) {
|
|
|
109
109
|
// ignore
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
|
+
/**
|
|
113
|
+
* Resolve the app's identity + analytics config from its own subdomain. Shared
|
|
114
|
+
* promise so the context bootstrap and the first data call coalesce into one
|
|
115
|
+
* `/by-subdomain` fetch. Does NOT touch the password gate — identity is needed
|
|
116
|
+
* for analytics regardless of whether the visitor has unlocked the data, so a
|
|
117
|
+
* password-gated app still resolves (and tracks) before the prompt.
|
|
118
|
+
*/
|
|
119
|
+
function resolveAppInfo() {
|
|
120
|
+
if (appInfoPromise)
|
|
121
|
+
return appInfoPromise;
|
|
122
|
+
const slug = window.location.hostname.split(".")[0];
|
|
123
|
+
const attempt = apiCall("GET", `/v1/apps/by-subdomain/${encodeURIComponent(slug)}`);
|
|
124
|
+
// Don't cache a rejection — a transient failure on first load would brick
|
|
125
|
+
// every later data call. Clear the slot so the next call retries.
|
|
126
|
+
attempt.catch(() => {
|
|
127
|
+
if (appInfoPromise === attempt)
|
|
128
|
+
appInfoPromise = null;
|
|
129
|
+
});
|
|
130
|
+
appInfoPromise = attempt;
|
|
131
|
+
return attempt;
|
|
132
|
+
}
|
|
112
133
|
async function boot() {
|
|
113
134
|
if (bootPromise)
|
|
114
135
|
return bootPromise;
|
|
115
|
-
const slug = window.location.hostname.split(".")[0];
|
|
116
136
|
const attempt = (async () => {
|
|
117
|
-
const info =
|
|
137
|
+
const info = await resolveAppInfo();
|
|
118
138
|
if (info.requires_password) {
|
|
119
139
|
const stored = readStoredSession(info.app_id);
|
|
120
140
|
if (stored) {
|
|
@@ -126,8 +146,6 @@ async function boot() {
|
|
|
126
146
|
}
|
|
127
147
|
return info;
|
|
128
148
|
})();
|
|
129
|
-
// Don't cache a rejection — a transient failure on first load would brick
|
|
130
|
-
// every later data call. Clear the slot so the next call retries.
|
|
131
149
|
attempt.catch(() => {
|
|
132
150
|
if (bootPromise === attempt)
|
|
133
151
|
bootPromise = null;
|
|
@@ -199,8 +217,23 @@ function rpcStandalone(op, payload) {
|
|
|
199
217
|
return standaloneWorkflow(payload);
|
|
200
218
|
case "upload":
|
|
201
219
|
return standaloneUpload(payload.file);
|
|
220
|
+
case "context":
|
|
221
|
+
return standaloneContext();
|
|
202
222
|
}
|
|
203
223
|
}
|
|
224
|
+
async function standaloneContext() {
|
|
225
|
+
const info = await resolveAppInfo();
|
|
226
|
+
return {
|
|
227
|
+
app_id: info.app_id,
|
|
228
|
+
app_name: info.app_name,
|
|
229
|
+
workspace_id: info.workspace_id,
|
|
230
|
+
organization_id: info.organization_id,
|
|
231
|
+
// No host session in standalone mode — the visitor is anonymous.
|
|
232
|
+
member_id: null,
|
|
233
|
+
posthog_key: info.posthog_key,
|
|
234
|
+
posthog_host: info.posthog_host,
|
|
235
|
+
};
|
|
236
|
+
}
|
|
204
237
|
async function standaloneQuery(p) {
|
|
205
238
|
const { app_id } = await boot();
|
|
206
239
|
const r = (await apiCall("POST", `/v1/apps/${app_id}/query`, { alias: p.alias, params: p.params }, { appId: app_id }));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lotics/app-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "Runtime SDK for Lotics custom-code apps — typed hooks, postMessage bridge, mount entry point",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -17,15 +17,18 @@
|
|
|
17
17
|
"test": "vitest run",
|
|
18
18
|
"prepublishOnly": "npm run build"
|
|
19
19
|
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"posthog-js": "^1.352.0"
|
|
22
|
+
},
|
|
20
23
|
"peerDependencies": {
|
|
21
|
-
"react": "^19.
|
|
22
|
-
"react-dom": "^19.
|
|
24
|
+
"react": "^19.2.0",
|
|
25
|
+
"react-dom": "^19.2.0"
|
|
23
26
|
},
|
|
24
27
|
"devDependencies": {
|
|
25
28
|
"@types/react": "^19.0.0",
|
|
26
29
|
"@types/react-dom": "^19.0.0",
|
|
27
|
-
"react": "^19.
|
|
28
|
-
"react-dom": "^19.
|
|
30
|
+
"react": "^19.2.0",
|
|
31
|
+
"react-dom": "^19.2.0"
|
|
29
32
|
},
|
|
30
33
|
"keywords": [
|
|
31
34
|
"lotics",
|