@devvit/ui-renderer 0.11.6-next-2025-01-13-6cc27b78a.0 → 0.11.6-next-2025-01-15-1caf0b617.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/client/dispatcher/performance.d.ts +11 -0
- package/client/dispatcher/performance.d.ts.map +1 -1
- package/client/dispatcher/performance.js.map +1 -1
- package/client/dispatcher/remote-app.d.ts +3 -2
- package/client/dispatcher/remote-app.d.ts.map +1 -1
- package/client/dispatcher/remote-app.js +19 -12
- package/client/dispatcher/remote-app.js.map +1 -1
- package/devvit-custom-post-meta.min.json +5 -5
- package/devvit-custom-post.min.js +1 -1
- package/devvit-custom-post.min.js.map +2 -2
- package/devvit-surface-meta.min.json +5 -5
- package/devvit-surface.min.js +1 -1
- package/devvit-surface.min.js.map +2 -2
- package/package.json +8 -8
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
export type RemoteRuntimePerformanceService = {
|
|
2
|
+
/**
|
|
3
|
+
* Returns a traceparent header for a method call.
|
|
4
|
+
* More info on https://www.w3.org/TR/trace-context.
|
|
5
|
+
*
|
|
6
|
+
* Can return undefined if no tracing context is present/required for the operation
|
|
7
|
+
*
|
|
8
|
+
* @param method name of the method, e.g. 'RenderPostContent'
|
|
9
|
+
*/
|
|
10
|
+
getTraceparent(method: string): string | undefined;
|
|
11
|
+
};
|
|
1
12
|
export declare class PerformanceTracker {
|
|
2
13
|
#private;
|
|
3
14
|
constructor();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"performance.d.ts","sourceRoot":"","sources":["../../../library/src/client/dispatcher/performance.ts"],"names":[],"mappings":"AAAA,qBAAa,kBAAkB;;;IAQ7B,8EAA8E;IAC9E,IAAI,SAAS,IAAI,mBAAmB,CAEnC;IAED;;;;OAIG;IACH,IAAI,OAAO,IAAI,MAAM,GAAG,SAAS,CAEhC;IAED,MAAM,IAAI,IAAI;CAMf"}
|
|
1
|
+
{"version":3,"file":"performance.d.ts","sourceRoot":"","sources":["../../../library/src/client/dispatcher/performance.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,+BAA+B,GAAG;IAC5C;;;;;;;OAOG;IACH,cAAc,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAAC;CACpD,CAAC;AAEF,qBAAa,kBAAkB;;;IAQ7B,8EAA8E;IAC9E,IAAI,SAAS,IAAI,mBAAmB,CAEnC;IAED;;;;OAIG;IACH,IAAI,OAAO,IAAI,MAAM,GAAG,SAAS,CAEhC;IAED,MAAM,IAAI,IAAI;CAMf"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"performance.js","sourceRoot":"","sources":["../../../library/src/client/dispatcher/performance.ts"],"names":[],"mappings":";;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"performance.js","sourceRoot":"","sources":["../../../library/src/client/dispatcher/performance.ts"],"names":[],"mappings":";;;;;;;;;;;;AAYA,MAAM,OAAO,kBAAkB;IAI7B;QAHA,gDAAgC;QAChC,8CAA+B;QAG7B,uBAAA,IAAI,iCAAc,WAAW,CAAC,UAAU,GAAG,WAAW,CAAC,GAAG,EAAE,MAAA,CAAC;IAC/D,CAAC;IAED,8EAA8E;IAC9E,IAAI,SAAS;QACX,OAAO,uBAAA,IAAI,qCAAW,CAAC;IACzB,CAAC;IAED;;;;OAIG;IACH,IAAI,OAAO;QACT,OAAO,uBAAA,IAAI,mCAAS,CAAC;IACvB,CAAC;IAED,MAAM;QACJ,IAAI,uBAAA,IAAI,mCAAS,KAAK,SAAS,EAAE,CAAC;YAChC,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;QACvD,CAAC;QACD,uBAAA,IAAI,+BAAY,WAAW,CAAC,GAAG,EAAE,GAAG,WAAW,CAAC,UAAU,MAAA,CAAC;IAC7D,CAAC;CACF"}
|
|
@@ -3,6 +3,7 @@ import { type HandleUIEventRequest, type HandleUIEventResponse, type Metadata, t
|
|
|
3
3
|
import type { UIEventHandler } from '@devvit/protos/types/devvit/ui/events/v1alpha/handle_ui.js';
|
|
4
4
|
import type { Empty } from '@devvit/protos/types/google/protobuf/empty.js';
|
|
5
5
|
import { type CallOptions } from 'nice-grpc-web';
|
|
6
|
+
import type { RemoteRuntimePerformanceService } from './performance.js';
|
|
6
7
|
type CustomPostNiceClient = {
|
|
7
8
|
renderPost(req: Readonly<RenderPostRequest>, opts: Readonly<CallOptions>): Promise<RenderPostResponse>;
|
|
8
9
|
renderPostComposer(req: Readonly<UIRequest>, opts: Readonly<CallOptions>): Promise<UIResponse>;
|
|
@@ -22,8 +23,8 @@ type Meta = {
|
|
|
22
23
|
};
|
|
23
24
|
export declare class RemoteApp implements UIApp, ContextAction {
|
|
24
25
|
#private;
|
|
25
|
-
static new(gatewayOrigin: string, meta: Meta): RemoteApp;
|
|
26
|
-
constructor(contextAction: ContextActionNiceClient, customPost: CustomPostNiceClient, uiEventHandler: UIEventHandlerNiceClient, meta: Meta);
|
|
26
|
+
static new(gatewayOrigin: string, meta: Meta, performanceService: RemoteRuntimePerformanceService | undefined): RemoteApp;
|
|
27
|
+
constructor(contextAction: ContextActionNiceClient, customPost: CustomPostNiceClient, uiEventHandler: UIEventHandlerNiceClient, meta: Meta, performanceService: RemoteRuntimePerformanceService | undefined);
|
|
27
28
|
GetActions(req: Readonly<Empty>, meta: Readonly<Metadata> | undefined): Promise<ContextActionList>;
|
|
28
29
|
HandleUIEvent(req: Readonly<HandleUIEventRequest>, meta: Readonly<Metadata> | undefined): Promise<HandleUIEventResponse>;
|
|
29
30
|
OnAction(req: Readonly<ContextActionRequest>, meta: Readonly<Metadata> | undefined): Promise<ContextActionResponse>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote-app.d.ts","sourceRoot":"","sources":["../../../library/src/client/dispatcher/remote-app.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,aAAa,EACb,iBAAiB,EACjB,oBAAoB,EACpB,qBAAqB,EACrB,UAAU,EACX,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAGL,KAAK,oBAAoB,EACzB,KAAK,qBAAqB,EAC1B,KAAK,QAAQ,EACb,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EAEvB,KAAK,SAAS,EACd,KAAK,UAAU,EAChB,MAAM,gBAAgB,CAAC;AACxB,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4DAA4D,CAAC;AACjG,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,+CAA+C,CAAC;AAE3E,OAAO,EACL,KAAK,WAAW,EAKjB,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"remote-app.d.ts","sourceRoot":"","sources":["../../../library/src/client/dispatcher/remote-app.ts"],"names":[],"mappings":"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"}
|
|
@@ -9,24 +9,25 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
9
9
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
10
10
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
11
11
|
};
|
|
12
|
-
var _RemoteApp_instances, _RemoteApp_contextAction, _RemoteApp_customPost, _RemoteApp_meta, _RemoteApp_uiEventHandler, _RemoteApp_newNiceMeta;
|
|
12
|
+
var _RemoteApp_instances, _RemoteApp_contextAction, _RemoteApp_customPost, _RemoteApp_meta, _RemoteApp_uiEventHandler, _RemoteApp_performanceService, _RemoteApp_newNiceMeta;
|
|
13
13
|
import { ContextActionDefinition, CustomPostDefinition, UIEventHandlerDefinition, } from '@devvit/protos';
|
|
14
14
|
import { Header } from '@devvit/shared-types/Header.js';
|
|
15
15
|
import { createChannel, createClient, FetchTransport, Metadata as NiceMeta, } from 'nice-grpc-web';
|
|
16
16
|
export class RemoteApp {
|
|
17
|
-
static new(gatewayOrigin, meta) {
|
|
17
|
+
static new(gatewayOrigin, meta, performanceService) {
|
|
18
18
|
const channel = createChannel(gatewayOrigin, FetchTransport({ credentials: 'include' }));
|
|
19
19
|
const contextAction = createClient(ContextActionDefinition, channel);
|
|
20
20
|
const customPost = createClient(CustomPostDefinition, channel);
|
|
21
21
|
const uiEventHandler = createClient(UIEventHandlerDefinition, channel);
|
|
22
|
-
return new RemoteApp(contextAction, customPost, uiEventHandler, meta);
|
|
22
|
+
return new RemoteApp(contextAction, customPost, uiEventHandler, meta, performanceService);
|
|
23
23
|
}
|
|
24
|
-
constructor(contextAction, customPost, uiEventHandler, meta) {
|
|
24
|
+
constructor(contextAction, customPost, uiEventHandler, meta, performanceService) {
|
|
25
25
|
_RemoteApp_instances.add(this);
|
|
26
26
|
_RemoteApp_contextAction.set(this, void 0);
|
|
27
27
|
_RemoteApp_customPost.set(this, void 0);
|
|
28
28
|
_RemoteApp_meta.set(this, void 0);
|
|
29
29
|
_RemoteApp_uiEventHandler.set(this, void 0);
|
|
30
|
+
_RemoteApp_performanceService.set(this, void 0);
|
|
30
31
|
__classPrivateFieldSet(this, _RemoteApp_contextAction, contextAction, "f");
|
|
31
32
|
__classPrivateFieldSet(this, _RemoteApp_customPost, customPost, "f");
|
|
32
33
|
__classPrivateFieldSet(this, _RemoteApp_meta, {
|
|
@@ -34,39 +35,45 @@ export class RemoteApp {
|
|
|
34
35
|
[Header.Actor]: { values: [meta.actor] },
|
|
35
36
|
}, "f");
|
|
36
37
|
__classPrivateFieldSet(this, _RemoteApp_uiEventHandler, uiEventHandler, "f");
|
|
38
|
+
__classPrivateFieldSet(this, _RemoteApp_performanceService, performanceService, "f");
|
|
37
39
|
}
|
|
38
40
|
async GetActions(req, meta) {
|
|
39
41
|
return __classPrivateFieldGet(this, _RemoteApp_contextAction, "f").getActions(req, {
|
|
40
|
-
metadata: __classPrivateFieldGet(this, _RemoteApp_instances, "m", _RemoteApp_newNiceMeta).call(this, meta),
|
|
42
|
+
metadata: __classPrivateFieldGet(this, _RemoteApp_instances, "m", _RemoteApp_newNiceMeta).call(this, meta, undefined),
|
|
41
43
|
});
|
|
42
44
|
}
|
|
43
45
|
async HandleUIEvent(req, meta) {
|
|
44
46
|
return __classPrivateFieldGet(this, _RemoteApp_uiEventHandler, "f").handleUIEvent(req, {
|
|
45
|
-
metadata: __classPrivateFieldGet(this, _RemoteApp_instances, "m", _RemoteApp_newNiceMeta).call(this, meta),
|
|
47
|
+
metadata: __classPrivateFieldGet(this, _RemoteApp_instances, "m", _RemoteApp_newNiceMeta).call(this, meta, undefined),
|
|
46
48
|
});
|
|
47
49
|
}
|
|
48
50
|
async OnAction(req, meta) {
|
|
49
51
|
return __classPrivateFieldGet(this, _RemoteApp_contextAction, "f").onAction(req, {
|
|
50
|
-
metadata: __classPrivateFieldGet(this, _RemoteApp_instances, "m", _RemoteApp_newNiceMeta).call(this, meta),
|
|
52
|
+
metadata: __classPrivateFieldGet(this, _RemoteApp_instances, "m", _RemoteApp_newNiceMeta).call(this, meta, undefined),
|
|
51
53
|
});
|
|
52
54
|
}
|
|
53
55
|
async RenderPost(req, meta) {
|
|
54
56
|
return __classPrivateFieldGet(this, _RemoteApp_customPost, "f").renderPost(req, {
|
|
55
|
-
metadata: __classPrivateFieldGet(this, _RemoteApp_instances, "m", _RemoteApp_newNiceMeta).call(this, meta),
|
|
57
|
+
metadata: __classPrivateFieldGet(this, _RemoteApp_instances, "m", _RemoteApp_newNiceMeta).call(this, meta, undefined),
|
|
56
58
|
});
|
|
57
59
|
}
|
|
58
60
|
async RenderPostContent(req, meta) {
|
|
61
|
+
const traceparent = __classPrivateFieldGet(this, _RemoteApp_performanceService, "f")?.getTraceparent('RenderPostContent');
|
|
59
62
|
return __classPrivateFieldGet(this, _RemoteApp_customPost, "f").renderPostContent(req, {
|
|
60
|
-
metadata: __classPrivateFieldGet(this, _RemoteApp_instances, "m", _RemoteApp_newNiceMeta).call(this, meta),
|
|
63
|
+
metadata: __classPrivateFieldGet(this, _RemoteApp_instances, "m", _RemoteApp_newNiceMeta).call(this, meta, traceparent),
|
|
61
64
|
});
|
|
62
65
|
}
|
|
63
66
|
async RenderPostComposer(req, meta) {
|
|
64
67
|
return __classPrivateFieldGet(this, _RemoteApp_customPost, "f").renderPostComposer(req, {
|
|
65
|
-
metadata: __classPrivateFieldGet(this, _RemoteApp_instances, "m", _RemoteApp_newNiceMeta).call(this, meta),
|
|
68
|
+
metadata: __classPrivateFieldGet(this, _RemoteApp_instances, "m", _RemoteApp_newNiceMeta).call(this, meta, undefined),
|
|
66
69
|
});
|
|
67
70
|
}
|
|
68
71
|
}
|
|
69
|
-
_RemoteApp_contextAction = new WeakMap(), _RemoteApp_customPost = new WeakMap(), _RemoteApp_meta = new WeakMap(), _RemoteApp_uiEventHandler = new WeakMap(), _RemoteApp_instances = new WeakSet(), _RemoteApp_newNiceMeta = function _RemoteApp_newNiceMeta(meta) {
|
|
70
|
-
return new NiceMeta(Object.entries({
|
|
72
|
+
_RemoteApp_contextAction = new WeakMap(), _RemoteApp_customPost = new WeakMap(), _RemoteApp_meta = new WeakMap(), _RemoteApp_uiEventHandler = new WeakMap(), _RemoteApp_performanceService = new WeakMap(), _RemoteApp_instances = new WeakSet(), _RemoteApp_newNiceMeta = function _RemoteApp_newNiceMeta(meta, traceparent) {
|
|
73
|
+
return new NiceMeta(Object.entries({
|
|
74
|
+
...__classPrivateFieldGet(this, _RemoteApp_meta, "f"),
|
|
75
|
+
...meta,
|
|
76
|
+
...(traceparent ? { [Header.Traceparent]: { values: [traceparent] } } : undefined),
|
|
77
|
+
}).map(([key, { values }]) => [key, values.join()]));
|
|
71
78
|
};
|
|
72
79
|
//# sourceMappingURL=remote-app.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote-app.js","sourceRoot":"","sources":["../../../library/src/client/dispatcher/remote-app.ts"],"names":[],"mappings":";;;;;;;;;;;;AAOA,OAAO,EACL,uBAAuB,EACvB,oBAAoB,EAMpB,wBAAwB,GAGzB,MAAM,gBAAgB,CAAC;AAGxB,OAAO,EAAE,MAAM,EAAE,MAAM,gCAAgC,CAAC;AACxD,OAAO,EAEL,aAAa,EACb,YAAY,EACZ,cAAc,EACd,QAAQ,IAAI,QAAQ,GACrB,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"remote-app.js","sourceRoot":"","sources":["../../../library/src/client/dispatcher/remote-app.ts"],"names":[],"mappings":"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"}
|
|
@@ -7537,7 +7537,7 @@
|
|
|
7537
7537
|
"format": "esm"
|
|
7538
7538
|
},
|
|
7539
7539
|
"../shared-types/dist/Header.js": {
|
|
7540
|
-
"bytes":
|
|
7540
|
+
"bytes": 2299,
|
|
7541
7541
|
"imports": [],
|
|
7542
7542
|
"format": "esm"
|
|
7543
7543
|
},
|
|
@@ -7937,7 +7937,7 @@
|
|
|
7937
7937
|
"format": "esm"
|
|
7938
7938
|
},
|
|
7939
7939
|
"library/src/client/dispatcher/performance.ts": {
|
|
7940
|
-
"bytes":
|
|
7940
|
+
"bytes": 1139,
|
|
7941
7941
|
"imports": [
|
|
7942
7942
|
{
|
|
7943
7943
|
"path": "<runtime>",
|
|
@@ -8997,7 +8997,7 @@
|
|
|
8997
8997
|
"imports": [],
|
|
8998
8998
|
"exports": [],
|
|
8999
8999
|
"inputs": {},
|
|
9000
|
-
"bytes":
|
|
9000
|
+
"bytes": 6512625
|
|
9001
9001
|
},
|
|
9002
9002
|
"dist/devvit-custom-post.min.js": {
|
|
9003
9003
|
"imports": [
|
|
@@ -9456,7 +9456,7 @@
|
|
|
9456
9456
|
"bytesInOutput": 186
|
|
9457
9457
|
},
|
|
9458
9458
|
"../shared-types/dist/Header.js": {
|
|
9459
|
-
"bytesInOutput":
|
|
9459
|
+
"bytesInOutput": 1147
|
|
9460
9460
|
},
|
|
9461
9461
|
"../shared-types/dist/throttle.js": {
|
|
9462
9462
|
"bytesInOutput": 221
|
|
@@ -9693,7 +9693,7 @@
|
|
|
9693
9693
|
"bytesInOutput": 5694
|
|
9694
9694
|
}
|
|
9695
9695
|
},
|
|
9696
|
-
"bytes":
|
|
9696
|
+
"bytes": 1970341
|
|
9697
9697
|
}
|
|
9698
9698
|
}
|
|
9699
9699
|
}
|